Jump to content

Jonatas

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Jonatas

  1. @rmckay I understand, I usually do some operations in the stock market and use a software called Rico - MetaTrader 5, I have no problem with it, maybe it can be useful to you @Earthshine Sorry for not being as smart as you
  2. Hello TwentyOne, Could you show your code so we can try to help you?
  3. Hello rmckay, I don't know if I understand what you're trying to do, but it seems to me that you're trying to automate your brokerage operations, if so did you know that there are specific bots for this purpose some offered by the Broker itself
  4. Sorry to relive the topic, but it seems that the doubt has not been resolved and this may be the doubt of others. Here's a solution: #include <MsgBoxConstants.au3> #include <Misc.au3> Local $n = 0 ;When you press "END" key the process ends HotKeySet("{END}", "_Terminate") Func _Terminate() Exit EndFunc ;When pressing "q" key displays count quantity HotKeySet("q", "_InfoBox") Func _InfoBox() MsgBox(0,"",$n) EndFunc ;While holding down the left mouse button add up While 1 While _IsPressed(1) $n = $n + 1 Sleep(500) WEnd Sleep(100) WEnd
  5. About _SendMessage, I found this perfect example of Oasis375 #include <SendMessage.au3> #include <WindowsConstants.au3> Run("notepad.exe") $hWnd = WinWait("[CLASS:Notepad]", "", 10) $hControl = ControlGetHandle($hWnd, "", "Edit1") $text = "this is a line" $struct_string = DllStructCreate("char[" & StringLen($text) + 1 & "]") DllStructSetData($struct_string, 1, $text) _SendMessageA($hControl, $WM_SETTEXT, 0, DllStructGetPtr($struct_string))
  6. Thanks for the quick reply Nine! Isn't there a way to use the specific "keybd_event" for a window? Could you demonstrate an example of using with _SendMessage with notepad? I researched it but didn't understand it very well
  7. This works fine, but how can I direct to a specific window?
  8. I worked so hard to solve this problem ... And it was so simple
  9. I worked so hard to solve this problem ... And it was so simple
  10. Hello guys, sorry to revive this topic but not the best place. I went through this same problem and found an alternative to replace the "Return" which is the Function Call. I have helped
  11. No, the silent mode is welcome but would like the installation GUI also worked as before. I am currently researching possible conflicts of AutoIT to understand why it works in Safe Mode, another thing to add is that it has worked very slowly and then there goes the left of the second command, this only happens now with AutoIT. I'm trying to run Combofix but displays the error NSIS_Error
  12. Computergroove Hello, thank you in advance for your support. Actually the problem is not because of administrative rights, converted into EXE and ran as administrator and not resolved.
  13. Ok the following code, remembering that worked perfectly, now only in Safe Mode.
  14. Good evening everyone! I apologize for my English I am Brazilian and I am using Google Translate, I have a problem that I believe is virus but not sure while my AutoIT latest version does not continue execution of the recorded Au3Record automation, and the same file works on another computer with AutoIT, however going into safe mode files function normally. What can this happening? I've used Malwarebytes Anti-Malware and did not detect any virus.
×
×
  • Create New...