Jump to content

tsvety

Members
  • Posts

    9
  • Joined

  • Last visited

tsvety's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi guys! I'm having troubles with this UDF... Just getting the following error: ERROR: can't open include file <_XMLDomWrapper.au3> #include <_XMLDomWrapper.au3> while trying to run this example: #include <_XMLDomWrapper.au3> #include <File.au3> Global $oXML = ObjCreate("Microsoft.XMLHTTP") $oXML.Open("GET", "http://www.wowarmory.com/character-sheet.xml?r=Anub%27arak&n=Lovepenguin", 0) $oXML.Send Global $sFile = _TempFile(@TempDir, '~', '.xml') FileWrite($sFile, $oXML.responseText) If _XMLFileOpen($sFile) Then Local $sLvl = _XMLGetAttrib('./characterInfo/character', 'level') ConsoleWrite($sLvl & @LF) EndIf FileDelete($sFile)
  2. Problem solved! Many thanks!
  3. Yes, I did. And there were no errors. I created another very simple DLL. And something really strange has happened! The following code works: (C++) __declspec(dllexport) int DLLfunction() { return 5; } (Autoit3) $res = DllCall("MyDLL.dll", "int", "DLLfunction") MsgBox(0, "", $res[0]) And this one does not (C++) __declspec(dllexport) int DLLfunction(int a) { return a; } (Autoit3) $res = DllCall("MyDLL.dll", "int", "DLLfunction", "int", 5) I'm getting again "An unhandled win32 exception occurred in Autoit3.exe [6104]." So it's like autoit3 does not want to accept any parameters.
  4. Hello again! Thanks for the answers! Changed char <parameters>[80] to char* <parameters>. And "int" to "none". However still getting the same exception...
  5. Hi guys! Short description of my problem. 1) Created a DLL. It is supposed to make a MYSQL connection and to get some values. They are just displayed in MsgBox-es. Database name: "menagerie". Table name: "pet". Here's the code: #include <stdio.h> #include <Windows.h> #include <mysql.h> #include <atlstr.h> #include <string.h> extern "C" { __declspec(dllexport) void DisplayHelloFromDLL(char SERVER_NAME[80], char DB_USER[80], char DB_USERPASS[80], char DB_NAME[80]) { MYSQL mysql; MYSQL_RES *res; MYSQL_ROW row; MYSQL *connection; mysql_init(&mysql); connection = mysql_real_connect(&mysql, SERVER_NAME, DB_USER, DB_USERPASS, DB_NAME, 0, 0, 0); if (connection == NULL) { int msgboxID = MessageBox(NULL, (LPCWSTR)L"Error connecting MySQL!", (LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2); } else { int msgboxID = MessageBox(NULL, (LPCWSTR)L"Connection successful!", (LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2); if (!(mysql_query(connection, "SELECT name FROM menagerie.pet p;"))) { res = mysql_use_result(connection); while ((row = mysql_fetch_row(res))) { int msgboxID = MessageBox(NULL, (CString)(row[0]), (LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2); } mysql_free_result(res); } else { int msgboxID = MessageBox(NULL, (CString)(mysql_error(&mysql)), (LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2); } } mysql_close(&mysql); int msgboxID3 = MessageBox(NULL, (LPCWSTR)L"Connection closed", (LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2); } } 2) And this is the Autoit program: #include <GuiConstantsEx.au3> ; GUI GuiCreate("Sample GUI", 290, 250) ; Button $buton = GUICtrlCreateButton("Connect to DB!", 30, 75) GUISetState() Func test() $resultDll = DllCall("MyDll.dll", "int", "DisplayHelloFromDLL", "str", "localhost", "str", "user", "str", "passwd", "str", "menagerie") If @error Then SetError(1) MsgBox(0, "", "Error opening dll") Else MsgBox(0, "", "Success!") EndIf EndFunc ; WHILE PROGRAM IS RUNNING While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $buton test() EndSelect WEnd THE PROBLEM: It works fine, it displays all the values, but at the end, after showing "Connection closed", I get (Visual Studio Just-In-Time Debugger message) An unhandled win32 exception occurred in Autoit3.exe [3904]. I'm asked to choose between debuggers. After selecting one and clicking on Yes, I get: Unhandled exception at 0x00373034 in Autoit3.exe. Access violation reading location 0x00373034. So for some reasons I can not pass to the next line after Dllcall: If @error Then SetError(1) MsgBox(0, "", "Error opening dll") etc. Do you have any idea what's wrong?
×
×
  • Create New...