Jump to content

zappa

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by zappa

  1. How can I use this simple script: _Main() Func _Main() GUICreate("Standard use of a ProgressBar()", 240, 50, -1, -1) Local $Progress = GUICtrlCreateProgress(10, 10, 220, 20) GUISetState(@SW_SHOW) For $A = 1 To 100 GUICtrlSetData($Progress, $A) Sleep(50) If GUIGetMsg() = -3 Then ExitLoop Next While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd EndFunc ;==>_Main in a way that closes it self when the bar reach 100% ? also is there a way to set it to advance let's say based on how many applications were installed or how many files were copied etc?
  2. lol sorry I missed it. don't know how. I was looking at some weird code..
  3. I don't understand how to use it. I try to compile the script but I get this error: StringSize.au3' I'm using the latest version of AutoIt. any suggestion? i'm new to all this..
  4. Hey guys, I'm new to all this. I'm trying to create a script that will move files from a folders to another (windows, and system32) folders overwriting the destination folders files. I really don't know where to start. I looked at the online documentation but I didn't find something understandable to me. Thanks in advance for any input.
×
×
  • Create New...