Jump to content

frankito

Members
  • Posts

    17
  • Joined

  • Last visited

frankito's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. OMG, i left autoit for 6 month to work with php and i forget all the syntax. thanks
  2. I try this code (helpfile code) and the result of the msgbox is empty... What's the crap ????? thanks for your help $days = StringSplit("Sun,Mon,Tue,Wed,Thu,Fri,Sat", ",") ;$days[1] contains "Sun" ... $days[7] contains "Sat" $text = "This\nline\ncontains\nC-style breaks." $array = StringSplit($text, '\n', 1) msgbox("0","arr",$array)
  3. like this ? http://www.autoitscript.com/forum/index.php?showtopic=39262 my purpose is quite simple i just want to encrypt a large string in a DLL and deserve it to my autoit exe. Like this : My DLL : GetMyString() { return string } My EXE : Call ("mydll","getMyString") I know it's not as simple as i could write, but i'm litlle bit lost... thanks
  4. Hi everyone, i want to create a C# (or VB.net) DLL and use it in autoit. I just want my DLL return a large string to my autoit EXE. I didn't find any tuto about it, is that possible ? Thanks
  5. hi again I just want to create a tab disable, but i feel this property doesn't exist ? $tab = GUICtrlCreateTab(1, 1, 540, 400) $tab1 = GUICtrlCreateTabItem("TEST") GUICtrlSetState(-1, $GUI_DISABLE) $tab2 = GUICtrlCreateTabItem("TEST2") then i want to enable it, but i feel too i can't
  6. thanks you very much for your answer, it works. And now i got same question with another function "_INetSmtpMailCom" I send a large file in the background using this function, but until it's not finished i can't do anything. Basicaly i'll have the same problem with a couple of function, like a slow sqlite query, is there a way to start this function in a different thread to not freeze the window?
  7. Hi My problem is quite simple i guess. I have just 1 form. First action after form laucnhing is to download a large file. But when script is downloading this files all other control are unreachable on my form (other button) till download is not finished. How could i fix it ? (different thread for download ?) Thanks
  8. sorry about that tought no one seen my message and i was worried cause i'm really annoyed by this bug. i will never do it again
  9. like in php the @ before call function
  10. Hi, I've just this code line Local $objEmail = ObjCreate("CDO.Message") which return this message This application has failed because MSOERT2.DLL was not found ... normal cause i don't get the DLL. I just want to bypass message, i don't want to display it How could i do that ? Thanks
  11. so i guess it doesn't exists .. ?
  12. yes i know but i want an editor with a function to identify and delete useless variable and function...and i don't think auoit editor do it ...
×
×
  • Create New...