Jump to content

skijve

Active Members
  • Posts

    20
  • Joined

  • Last visited

Everything posted by skijve

  1. Indeed, isdeclared works on "mcontrols" It wil be enought for my needs 🙂 Thx for the help
  2. Hello guys, It seems that expression like IsDeclared("mControls.Combo") Always return false even if the variable is created and initialized. Is there some trick to test the existance of such variables ? Regards, Eva
  3. 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
  4. yes but it seems that it's difficult to etect the current keyboard layout... im in french-belgium an if I change to DEU (deutch alemand), il continues to give me french belgium :
  5. My probram interract if an ofice soft and require a specific touch to be presst what ever the keybord local is.... For example '&' on french keyboard but '1' on us keyboard (th ekey is at the same position on the keyboard. MANAGING KEYBORD LOCAL SEEMS OMPLICATED...
  6. Helo, Keybord does not have character placed in the same place following locale, language,... I would like to simutate a push on certain place whathever the configuration is : On azerty : So : & a é - , and on dutch So : 1 q 2 6 , Is here a way to allow that in autoit ? Thanks a lot !
  7. 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
  8. 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 🙂
  9. Well... it continues to just crash. Is there any way to debug such annoying crash ?
  10. Hello, Didn't know that. Thx for the hint. I also found an interresting tutorial Working on that 🙂 Thx again for the help guys
  11. 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 🙂
  12. Thx guys, I'll check. I keep you posted
  13. 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
  14. 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
  15. 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 ?
  16. 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 😉
  17. Thx for the work. At first sight, it seems soooo complicated to install :-)
  18. 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
×
×
  • Create New...