Jump to content

Triton

Active Members
  • Posts

    88
  • Joined

  • Last visited

Triton's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Check this article out on technet http://technet.microsoft.com/en-us/library/bb663743.aspx. I do allot of software type deployments and I script everything with autoit to accomplish all my goals.
  2. What parts are done or don't exist yet? I would love to convert some of my includes to OBJs. Specially with the gui routines!
  3. Today we received a sdat that still detected it as a trogan but did not delete it. I am told that we Should have a good working sdat by tomorrow and I will update all as I am updated
  4. *UPDATE* McAfee has autoit3wrapper.exe and is addressing the Issue. If you have McAfee via enterprise network, it will need to be excluded at the server level. Also vnc is suffering from the same fate. I will update as I am updated!
  5. The Organization I work for has talked with McAfee and they are working on it. For now just exclude it.
  6. If I understand correctly, you want to have if one box is checked then other predefined boxes unchecked if checked. $GUI = GUICreate("Test", 364, 600) $Box1 = GuiCtrlCreateCheckbox("", 0, 400, 80, 20) GuiCtrlSetState(-1, $GUI_CHECKED) $Box2 = GUICtrlCreateCheckbox("", 0, 430, 100, 20) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Switch $msg Case $box1 If $Box2 = $GUI_CHECKED Then GUISetState($Box2, $GUI_UNCHECKED) Else GUISetState($Box2, $GUI_CHECKED) EndIf Case $Box2 If $Box1 = $GUI_CHECKED Then GUISetState($Box1, $GUI_UNCHECKED) Else GUISetState($Box1, $GUI_CHECKED) EndIf EndSwitch WEnd
  7. $LVS_SORTASCENDING OR $LVS_SORTDESCENDING
  8. Thanks That was too easy! Int vs String
  9. Is there a way to find out the type of gui control from its variable? I have an array of gui controls and I want to be able to discover which ones are checkboxes vs inputs. Any suggestions would be appreciated!
  10. GUICtrlCreateEdit("", 64, 32, 185, 89, BitOR($ES_AUTOVSCROLL,$ES_AUTOHSCROLL,$ES_WANTRETURN))
  11. probably some kind of loop that counts or subtracts keystrokes or amount of characters entered.
  12. here is the string = C:\xxxxxxx\xxxxxxxx.xxx and it returns a pos of 11 $s_pos = StringInStr($show_path, "\", 0, -1) What is left after i strip the end off a $s_pos is this: C:\xxxxxxx\x Am I doing something wrong?
  13. What is the proper syntax to change the state of a TreeViewItem?
  14. Yes thanks I forgot I had that piece of code. I got side tracked and had to work on another project and just forgot. :"> Thanks again
  15. I'm not sure it falls into eithor lazy or none logic! If I create a multi-dimentional array that contains a set of controls for different functions being accessed by a treeview and when I don't want any other functions to be checked I disable the other function on all other treeview items but i don't want to disable the lables associated with the check boxes of the functions. I run a loop to disable everything except the lables and the control that has been checked which are all stored in the array. I guess it's like changing views. I hope that makes sense!
×
×
  • Create New...