Thank you so much for your UDF!
Can you add one more feature: Add marker every time I click on the map!
I can't check LAT/LONG under mouse cursor using this UDF(to add marker), and IE too! Only Firefox work fine, but i hope you help me do this for your UDF.
Best regards,
mrbond007, as your reply:
$dll_handle = DLLCall($dll,"str","BioBus")
For $i = 1 To Ubound($dll_handle) - 1
MsgBox(0, "", $dll_handle[$i])
Next
But it returned an empty value! Anyway, thank you!
Any ideas?
The first C++ code: extern "C" __declspec(dllexport) int * BioBus(void) { int*getlo=new int[3]; getlo[0]=1000; getlo[1]=2000; getlo[2]=3000; return getlo; } Please teach me, how to get "getlo"? The second C++ code: extern "C" __declspec(dllexport) const char * BioBus(void) { const char * yo="Hello world!"; return yo; } Autoit code: DLLCall($dll,"str","BioBus") run OK! But: extern "C" __declspec(dllexport) const char * BioBus(void) { string message="Hello world!"; const char * yo=message.c_str(); return yo; } When i use DLLCall($dll,"str","BioBus") it return wrong string. Please tell me how to solve these problem! Thank you!
Thanks for your reply, jpm. My OS is Win XP Pro SP2 English version, QWERTY keyboard, language and location,regional are default setting! View my uploaded file please