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)
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
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
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
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?
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
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