IndianSage Posted February 5, 2020 Share Posted February 5, 2020 I created dll with one function _add(no1 as integer, no2 as integer) as Integer in FreeBasic, vb.net and c#.net. Used the same to get the return values but instead i get back only blank(With FreeBasic dll) or zero (Vb.net and C#). Code is as follows: (Run environment is Windows 7 SP1 -dot net framework - above 4.5) #include <MsgBoxConstants.au3> ;Local $hDLL = DllOpen("E\CV-Dell-1\autoit3\clsAddMul.dll") ;Local $hDLL = DllOpen(@ScriptDir & "\clsAddMul.dll") ;Local $hDLL = DllOpen(@ScriptDir & "\clsClass2.dll") Local $hDLL = DllOpen(@ScriptDir & "\Math1.dll") Local $aResult = 555 ;$aResult = DllCall(@ScriptDir & "\Math1.dll", "int", "_add", "int", 7, "int", 😎 $aResult = DllCall($hDLL, "Int", "_add", "Int", 7, "Int", 😎 $aResult = DllCall($hDLL, "int", "_add", "int", 7, "int", 😎 DllClose($hDLL) MsgBox (0, "Result", "Total = " & $aResult) ;MsgBox (0, "Result2", "Total2 = " & DllCall($hDLL, "Int", "_add", "Int", 7, "Int", 8)) Whats wrong here? I am not sure I can ask such help here or not. If not allowed, forgive me. I am first time participating and new to this. Thanks Link to comment Share on other sites More sharing options...
IndianSage Posted February 5, 2020 Author Share Posted February 5, 2020 Sorry the call line is showing wrong -It should be read as: $aResult = DllCall($hDLL, "Int", "_add", "Int", 7, "Int", 8 Also note I have tried with examples given for kernel32.dll, user32.dll - they work fine. Link to comment Share on other sites More sharing options...
jchd Posted February 5, 2020 Share Posted February 5, 2020 $aResult is an array. Please read help. IndianSage 1 This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted February 5, 2020 Moderators Share Posted February 5, 2020 Moved to the appropriate forum, as the Developer General Discussion forum very clearly states: Quote General development and scripting discussions. If it's super geeky and you don't know where to put it - it's probably here. Do not create AutoIt-related topics here, use the AutoIt General Help and Support or AutoIt Technical Discussion forums. Moderation Team Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now