Jump to content

laosoi

Members
  • Posts

    7
  • Joined

  • Last visited

laosoi's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. 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,
  2. Sorry! How can i read or get URL from address bar? Thanks in advance!
  3. 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?
  4. 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!
  5. 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
  6. This is my string in Scite: MsgBox(0, "My text","Cộng hòa xã hội chủ nghĩa Việt Nam" ) But when i run this script, in message box show "Cá»ng hòa xã há»i chủ nghÄ©a Viá»t Nam" Please tell me how to solve this problem! Thank so much! Any comment are always welcome!!! Thanks again!
×
×
  • Create New...