
skijve
Active Members-
Posts
20 -
Joined
-
Last visited
Everything posted by skijve
-
IsDeclared does not work with tables variables ?
skijve replied to skijve's topic in AutoIt General Help and Support
Indeed, isdeclared works on "mcontrols" It wil be enought for my needs 🙂 Thx for the help -
Hello guys, Is it possible to send() a specific key on the keyboard whatever the keyboard layout is. To be clear I don't want to send "A" because I know that, following locale, autoit will send the corect character. I want to send a key for example in azertry : but for qwertz : Possible ? Thx in advance guys, Eva
-
Thx, it workd !
-
Same error with : #include-once Global Const $HTTP_STATUS_OK = 200 Func HttpPost($sURL, $sData = "") #MsgBox(1, 'Post to server:',"1") Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") #MsgBox(1, 'Post to server:',"2") $oHTTP.Open("POST", $sURL, False) If (@error) Then Return SetError(1, 0, 0) #MsgBox(1, 'Post to server:',"3") $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") #MsgBox(1, 'Post to server:',"4") If IsObj($oHTTP) Then $oHTTP.Send($sData) #MsgBox(1, 'Post to server:',"5") If (@error) Then Return SetError(2, 0, 0) If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0) #MsgBox(1, 'Post to server:',"6") Return SetError(0, 0, $oHTTP.ResponseText) Else MsgBox($MB_SYSTEMMODAL, "No connected to Internet", "Please ensure that the bot is allowed to connect to Internet!") btnExit() EndIf EndFunc Func HttpGet($sURL, $sData = "") Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") $oHTTP.Open("GET", $sURL & "?" & $sData, False) If (@error) Then Return SetError(1, 0, 0) $oHTTP.Send() If (@error) Then Return SetError(2, 0, 0) If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0) Return SetError(0, 0, $oHTTP.ResponseText) EndFunc
-
IsObj I suppose ?
-
Hello, I use WinHttp.au3 to connect to a website and gater information. Here is the code : #include-once Global Const $HTTP_STATUS_OK = 200 Func HttpPost($sURL, $sData = "") #MsgBox(1, 'Post to server:',"1") Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") #MsgBox(1, 'Post to server:',"2") $oHTTP.Open("POST", $sURL, False) If (@error) Then Return SetError(1, 0, 0) #MsgBox(1, 'Post to server:',"3") $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") #MsgBox(1, 'Post to server:',"4") $oHTTP.Send($sData) #MsgBox(1, 'Post to server:',"5") If (@error) Then Return SetError(2, 0, 0) If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0) #MsgBox(1, 'Post to server:',"6") Return SetError(0, 0, $oHTTP.ResponseText) EndFunc Func HttpGet($sURL, $sData = "") Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") $oHTTP.Open("GET", $sURL & "?" & $sData, False) If (@error) Then Return SetError(1, 0, 0) $oHTTP.Send() If (@error) Then Return SetError(2, 0, 0) If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0) Return SetError(0, 0, $oHTTP.ResponseText) EndFunc My problem is that I have a ugly error if the computer is not connected to the web : Is there a way to simply raise a message box saying "You are an asshole, please connect your computer to internet" ? Thx in advance 🙂
-
Switching from DLLCall X86 to X64
skijve replied to skijve's topic in AutoIt General Help and Support
Well... it continues to just crash. Is there any way to debug such annoying crash ? -
Switching from DLLCall X86 to X64
skijve replied to skijve's topic in AutoIt General Help and Support
Hello, Didn't know that. Thx for the hint. I also found an interresting tutorial Working on that 🙂 Thx again for the help guys -
Switching from DLLCall X86 to X64
skijve replied to skijve's topic in AutoIt General Help and Support
It comes from the following line that make crash the code : Local $_aResult = DllCall($_opencv_core, "int64:cdecl", "cvGetSize", "ptr", $pimage) But no idea why 🙂 -
Switching from DLLCall X86 to X64
skijve replied to skijve's topic in AutoIt General Help and Support
Thx guys, I'll check. I keep you posted -
Hello all, I'm trying to use the x64 version of the OpenCV UDF ( ) And, without surprise, it does not work if I just replace the X86 dll by the X64 I downloaded 🙂 I think I, at least, have to adapt in/out variables types but it seems to not be enought (still problem calling DLL) Can anyone give me some clue or checklist for a correct conversion from x86 to x64 ? Thx guys, Eva
-
Simple automation using OpenCVs match feature
skijve replied to BBs19's topic in AutoIt Example Scripts
I downloaded the latest VC for the version (https://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.4.13/) and now it's working. Whouhou -
Simple automation using OpenCVs match feature
skijve replied to BBs19's topic in AutoIt Example Scripts
I'm a bit more far in my investigation. On 2 of my 3 PC, it works fine. On the 3rd one, the OPENDLL always return me "-1" as result. I was wondering if it was not link to any Visual studio install (got that from other forum) but, asexcpected, this does not solve the problem. I checked the file location, everything is okay (even if I change the dll and put it in the same locaton as the script) but DllOpen("opencv_core2413.dll") always return me -1. Any idea ? -
Simple automation using OpenCVs match feature
skijve replied to BBs19's topic in AutoIt Example Scripts
Hi all, Would it be possible that this function needs a GPU to works fine ? It seems that on old PC or on VM without GPU, we encounter 'Failed to load DLL' error. I'm trying to figure out by checking the open CV website but maybe one of you already knows the answer 🙂 Thx in advance 😉 -
Thx for the work. At first sight, it seems soooo complicated to install :-)
-
Hi guys, I make a small application in autoit that automatise so software installation. I compiled it and add it to one web site. But when user try to download it, edge refuse dut to generic IDP or other stuff like that. I suppose it's because de script take controle of the mouse, ... Any idea to allow my user to downloadit ? FYI, avast does not detect any malware... Regardsn Skijve