Jump to content

x2norm

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by x2norm

  1. This code does not work. It does not download the file. As i understand it, the file should be downloaded to the Public Download dir. it does not. I have confimred that the Url is correct. #include <InetConstants.au3> Local $sFilePath = "C:\Users\Public\Downloads\alteadccm.zip" InetGet("https://support.airline-choice.com\downloads\Altea\AlteaDCCM.zip", $sFilePath) Any ideas how to capture an error or something that would give me a clue as to why the file does not download? thanks,
  2. I have done some more testing and i have found the GUICtrlSetState work when i am setting the checkbox to checked.
  3. Thanks for the quick replies. Yes i have created the control earlier in the script. Sorry i cannot get ConsoleWrite('DebugInfo: ' & ControlGetText('You Guititle', '', $GUICtrlarr[$i][0] 6@TAB & 'CtrlID: ' & $GUICtrlarr[$i][0]) to work. When i run consoleWrite($GUICtrlarr[$i][0]) i get a value of 1, which is right at that point in the script . When i run the same statement after GUICtrlSetState($GUICtrlarr[$i][0],4) It still shows the value of 1. Any ideas?
  4. I am running the following code to uncheck a checkbox after an operation is done. It does not change the checkbox state. Can any one help? Func _caseCLS($i) SplashOff() GUICtrlSetState($GUICtrlarr[$i][0],4) EndFunc Please note the variable $i is getting passed to the function.
  5. I would appreciate some help. When i try to use _ComListPorts() to get a list of com ports in an array it always comes up blank. What am i doing wrong? In fact the Array display does not even open up a window. The script end without an error. #include <Array.au3> #include <comUDF.au3> Local $ports = _ComListPorts() _ArrayDisplay($ports) Can anyone help?
×
×
  • Create New...