MadBoy Posted June 7, 2007 Posted June 7, 2007 analizer.dll doesn't work with 3.2.4.xElaborate this a bit more please. Then maybe someone will be able to help you. I think i remember Dll handling change in some beta and that's why it probably doesn't work. But i'm sure there is someone with more inside info on this if only you would ask a bit more specific question. My little company: Evotec (PL version: Evotec)
Wanja Posted July 24, 2007 Posted July 24, 2007 Elaborate this a bit more please. Then maybe someone will be able to help you. I think i remember Dll handling change in some beta and that's why it probably doesn't work. But i'm sure there is someone with more inside info on this if only you would ask a bit more specific question.I have the same problem I have an old script that once run perfectly now it doesn't work anymore. I got an error executing this line:$result = DllCall($AZDLLName, "int", "image_in_clipscreen_rects", "str", $findFile, "int", $first, "int", $trans, "str", $color, "str", $rect, "str", $rects)anyone got a solution?
ChrisL Posted July 24, 2007 Posted July 24, 2007 Do you need to use Cdecl?By default, AutoIt uses the 'stdcall' calling method. To use the 'cdecl' method place ':cdecl' after the return type.DllCall("SQLite.dll", "int:cdecl", "sqlite3_open", "str", $sDatabase_Filename , "long_ptr", 0). [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire
mrbond007 Posted July 24, 2007 Posted July 24, 2007 (edited) I have the same problem I have an old script that once run perfectly now it doesn't work anymore. I got an error executing this line: $result = DllCall($AZDLLName, "int", "image_in_clipscreen_rects", "str", $findFile, "int", $first, "int", $trans, "str", $color, "str", $rect, "str", $rects) anyone got a solution? what kind of error do you get. If AutoIt complaines about stack corruption, convert it using the cdecl option. check the returned @error flag and refer to the help file $result = DllCall($AZDLLName, "int", "image_in_clipscreen_rects", "str", $findFile, "int", $first, "int", $trans, "str", $color, "str", $rect, "str", $rects) MsgBox(0, "", @error) Edited July 24, 2007 by mrbond007 Projects : Space Regain - Memory Fusion - PWGT - Chip-ITGames : BrainPain - BrainPain Director's Cut - ProSpeed Games Pack (New)Vista vs XP : the forbidden fight
Wanja Posted July 24, 2007 Posted July 24, 2007 (edited) Do you need to use Cdecl?I get a stack corruption error$result = DllCall($AZDLLName, "int:cdecl", "image_in_clipscreen_rects", "str", $findFile, "int", $first, "int", $trans, "str", $color, "str", $rect, "str", $rects)MsgBox(0, "", @error)same error ... and it crashes before @error msgbox Edited July 24, 2007 by Wanja
mrbond007 Posted July 24, 2007 Posted July 24, 2007 I get a stack corruption error$result = DllCall($AZDLLName, "int:cdecl", "image_in_clipscreen_rects", "str", $findFile, "int", $first, "int", $trans, "str", $color, "str", $rect, "str", $rects)MsgBox(0, "", @error)same error ... and it crashes before @error msgboxif you can post the entire script, i might be able to help. Projects : Space Regain - Memory Fusion - PWGT - Chip-ITGames : BrainPain - BrainPain Director's Cut - ProSpeed Games Pack (New)Vista vs XP : the forbidden fight
Wanja Posted July 24, 2007 Posted July 24, 2007 if you can post the entire script, i might be able to help.right from this forum http://www.autoitscript.com/forum/index.ph...amp;hl=analizer
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