Jump to content

datskat

Active Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by datskat

  1. the problem is with VirusScan software, see http://www.autoitscript.com/forum/index.php?showtopic=17313 or http://www.autoitscript.com/forum/index.php?showtopic=17315
  2. McAfee VirusScan 8.0i enterprise (DAT 6411) is able to run testvirusbeta.exe no problems
  3. unable to compile scripts using autoit BETA v3.1.1.84 or v3.1.1.83 or v3.1.1.80. McAfee even detects and then deletes already compiled scripts using these version. I have no problems compiling scripts using autoit PROD v3.1.1 or with BETA v3.1.1.70. Is there a fix/work around for this problem
  4. Thanks gafrost..
  5. just install v 3.1.1.74, Getting "ERROR: error parsing function call" message when any function has an _ . example: language_db_update(0,_ "err",_ "en",_ "English language database error.")
  6. are you trying to listen to your server (LAN) ip or internet (WAN) ip. ? do you have a gateway ?
  7. would be a great addition to the toolbox. having both MYSQL and odbc would be cool
  8. you can store the variables in an ini file and read in the variables at runtime, using a function like this Func Constants1() $trap_sections = IniReadSectionNames("c:\boot.ini") For $i = 1 To $trap_sections[0] $trap_keys = IniReadSection("c:\boot.ini", $trap_sections[$i]) For $j = 1 To $trap_keys[0][0] Assign($trap_keys[$j][0],$trap_keys[$j][1],2) Next Next EndFunc
  9. when i run the script the $parent window closes when using the x. This line of code handles that event. ElseIf $msg[1] == $parent And $msg[0] = $GUI_EVENT_CLOSE Then ExitLoop
  10. Are using the example that i posted?
  11. hope the below helps... #include <GUIConstants.au3> $child = "x" $parent = GUICreate("Parinte",400,400) $button = GUICtrlCreateButton ("OK", 10, 30, 50) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg(1) If $msg[0] = 0 Then ContinueLoop ElseIf $msg[1] = $child And $msg[0] = $GUI_EVENT_CLOSE Then GUIDelete($child) ElseIf $msg[1] == $parent And $msg[0] = $GUI_EVENT_CLOSE Then ExitLoop ElseIf $msg[0] == $button Then $child = GUICreate("Copil",200,200,-1,-1,-1,-1,$parent) GUISetState(@SW_SHOW,$child) Else ContinueLoop EndIf Wend Exit
  12. Great job ! ... Autoit just keeps getting better & better
  13. hope the example helps #include <GUIConstants.au3> $main_gui = GUICreate("testing script", 200, 100) GUICtrlCreateLabel("Save as:", 5,20,55) $duplicate_report = GUICtrlCreateInput("Please Enter Name", 60, 20, 130) $button_create = GUICtrlCreateButton("Duplicate",60,45,60) $button_close = GUICtrlCreateButton("Close",120,45,60) GUISetState(@SW_SHOW) Do $gui_msg = GUIGetMsg() Select Case $gui_msg == 0 ContinueLoop Case $gui_msg == $button_create $duplicate_report_name = GUICtrlRead($duplicate_report) MsgBox(0,"testing script","Inputted Value: " & $duplicate_report_name) Case Else ContinueLoop EndSelect Until $gui_msg == $GUI_EVENT_CLOSE Exit
  14. RegRead() function works great on win2k - SP4 using autoit version 3.1.1.27. Much thanks to jpm
  15. Running on win2k, have checked that reg key/value is defined. If i run this script using prod version of autoit (v3.1.1.0) works ok, if i run using autoit beta (v3.1.1.26) it fails
  16. get error 1 when trying to read registry values (worked ok using version 3.1.1.0) $reg_value = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run","MSMSGS") MsgBox (0,"Tester","Error: " & @Error & @CRLF & "Reg value: " & $reg_value )
×
×
  • Create New...