
royco
Members-
Posts
15 -
Joined
-
Last visited
Everything posted by royco
-
hi ppl i want to print with my sticker printer , its should be 5cm on 6cm 1. i want to add title 2. start day = select from guictrlcreatedate 3. expiration date = also select from guictrlcreatedate 4. opend by = input 5. print = select printer any help be appreciated also i need explanation on how it works #include <ButtonConstants.au3> #include <DateTimeConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <File.au3> #Region ### START Koda GUI section ### Form=C:\Scriptim\working on\Form1.kxf $Form1 = GUICreate("Form1", 390, 318, 192, 114) $Button1 = GUICtrlCreateButton("exit", 8, 272, 113, 33, $WS_GROUP) $Button2 = GUICtrlCreateButton("print", 128, 272, 113, 33, $WS_GROUP) $Button3 = GUICtrlCreateButton("reset", 256, 272, 113, 33, $WS_GROUP) ;$file = GUICtrlRead BitAND($Date1, $Date2) $Date1 = GUICtrlCreateDate("2009/11/10 09:53:51", 8, 88, 129, 25) $Date2 = GUICtrlCreateDate("2009/11/10 09:54:53", 160, 88, 121, 25) $Input1 = GUICtrlCreateInput("Input1", 8, 32, 121, 21) $Group1 = GUICtrlCreateGroup("Opened", 0, 8, 137, 57) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group2 = GUICtrlCreateGroup("Entry", 0, 72, 145, 49) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group3 = GUICtrlCreateGroup("exp day", 152, 72, 137, 49) GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Exit ;Case $Button2 ; print() EndSwitch WEnd
-
i have this problem when i try to run the script C:\Program Files\AutoIt3\Include\PrintWinAPI.au3(124,80) : ERROR: _WinAPI_CreatePen() already defined. Func _WinAPI_CreatePen($iPenStyle = $PS_SOLID, $iWidth = 0, $iColor = 0x000000) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\PrintWinAPI.au3(155,42) : ERROR: _WinAPI_LineTo() already defined. Func _WinAPI_LineTo($hDC, $iXEnd, $iYEnd) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\PrintWinAPI.au3 - 2 error(s), 0 warning(s)
-
any other suggestion?
-
still learning i combine this clicker with list view i found in this forum (thanks to Moonshadow312 and AdmiralAlkex) heres the link this is clicker to game called silkroad online is supposed to find the windows from the game, in case i open more then 1 client and then choose 1 client rename it then Control_Send to the specified window (client) few changes i want to made is : 1. want to change the counting down to second instead of milisecond 2. the Control_Send not working properly realy appreciate any help here is my code ; made by royco thanks to melba23 for editing my script and make a lot better ; to Moonshadow312 and AdmiralAlkex for the winlist #include <ListViewConstants.au3> #include <GUIConstantsEx.au3> #Include <GuiListView.au3> ;#include <Marquee.au3> Global $Client[1][1], $Array[1], $fStop_Flag = False, $fTimer_Flag = False, $iTimer $Form1 = GUICreate("Silkroad Buffer - Ver 1, royco", 280, 440, 193, 90) GUISetBkColor(0xE0F0FE) $listview = GUICtrlCreateListView("Client Name", 5, 40, 270, 155, BitOR($LVS_SORTDESCENDING, $LVS_LIST, $LVS_SHOWSELALWAYS));The right way to have multiple styles is with BitOr() $inputNewName = GUICtrlCreateInput("Sro_1",5,8,60,25) $Button7 = GUICtrlCreateButton("Rename", 75, 8, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button6 = GUICtrlCreateButton("Refresh", 145, 8, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $get = GUICtrlCreateButton("Title (F7)", 215, 8, 60,25) GUICtrlSetTip(-1 ,"to see if the window got the changes made") GUICtrlSetBkColor(-1,0x44bbcc) $countdown = GUICtrlCreateInput("Time_Left?", 5, 200, 60, 25) $go = GUICtrlCreateButton("Set", 75, 200, 60,25) GUICtrlSetTip(-1 ,"set the time, press this button, then Buff") GUICtrlSetBkColor(-1,0Xff9900) $Buff = GUICtrlCreateButton("Buff (F8)",145,200,60, 25) ;"{F8}", "Buff" GUICtrlSetTip(-1 ,"Choose keys to press and start Buff") GUICtrlSetBkColor(-1,0X00dd00) $Stop = GUICtrlCreateButton("Stop (F11)",215 ,200,60,25) ;"{F11}", "HK_STOP" GUICtrlSetTip(-1 ,"Stop all action") GUICtrlSetBkColor(-1,0Xff1177) GUICtrlCreateGroup("",130, 390,145,47) GUICtrlSetBkColor(-1,0X44bbcc) GUICtrlCreateLabel("Made by Royco" & @CRLF & "Thanks to Melba23",155,400) GUICtrlCreateGroup("", -99, -99, 1, 1) ;close group ;moving text ;_GUICtrlMarquee_SetScroll(0, Default, "up", 1) ;_GUICtrlMarquee_SetDisplay(2, "red", Default, 14, "comic sans ms") ;_GUICtrlMarquee_Create("Made by Royco Thanks to Melba23 AdmiralAlkex From Autoit Forum", 130,395, 145, 30, "Vertical Scroll Up") GUICtrlCreateGroup("Choose",130, 230, 145, 60) GUICtrlCreateLabel("* Start Buff = F8" & @CRLF & "* Stop All actions = F11", 140, 249);, 85) GUICtrlCreateGroup("", -99, -99, 1, 1) ;close group GUICtrlCreateGroup("",130, 290, 145, 100) $font = GUICtrlCreateLabel("choose character then" & @CRLF & "change is name press rename" & @CRLF & "select key to press" & @CRLF & "select time press set" & @CRLF & "then BUFF",140,300,125,80) GUICtrlSetFont($font,8,"","") GUICtrlCreateGroup("", -99, -99, 1, 1) ;close group ; check box to select what key to press $item0 = GUICtrlCreateCheckbox("0", 5, 410, 40, 20) $item1 = GUICtrlCreateCheckbox("1", 5, 230, 40, 20) $item2 = GUICtrlCreateCheckbox("2", 5, 250, 40, 20) $item3 = GUICtrlCreateCheckbox("3", 5, 270, 40, 20) $item4 = GUICtrlCreateCheckbox("4", 5, 290, 40, 20) $item5 = GUICtrlCreateCheckbox("5", 5, 310, 40, 20) $item6 = GUICtrlCreateCheckbox("6", 5, 330, 40, 20) $item7 = GUICtrlCreateCheckbox("7", 5, 350, 40, 20) $item8 = GUICtrlCreateCheckbox("8", 5, 370, 40, 20) $item9 = GUICtrlCreateCheckbox("9", 5, 390, 40, 20) $input0 = GUICtrlCreateInput("1000", 45, 410, 40, 20) $input1 = GUICtrlCreateInput("1000", 45, 230, 40, 20) $input2 = GUICtrlCreateInput("1000", 45, 250, 40, 20) $input3 = GUICtrlCreateInput("1000", 45, 270, 40, 20) $input4 = GUICtrlCreateInput("1000", 45, 290, 40, 20) $input5 = GUICtrlCreateInput("1000", 45, 310, 40, 20) $input6 = GUICtrlCreateInput("1000", 45, 330, 40, 20) $input7 = GUICtrlCreateInput("1000", 45, 350, 40, 20) $input8 = GUICtrlCreateInput("1000", 45, 370, 40, 20) $input9 = GUICtrlCreateInput("1000", 45, 390, 40, 20) GUICtrlCreateLabel("mSec", 90, 410, 40, 20) GUICtrlCreateLabel("mSec", 90, 230, 40, 20) GUICtrlCreateLabel("mSec", 90, 250, 40, 20) GUICtrlCreateLabel("mSec", 90, 270, 40, 20) GUICtrlCreateLabel("mSec", 90, 290, 40, 20) GUICtrlCreateLabel("mSec", 90, 310, 40, 20) GUICtrlCreateLabel("mSec", 90, 330, 40, 20) GUICtrlCreateLabel("mSec", 90, 350, 40, 20) GUICtrlCreateLabel("mSec", 90, 370, 40, 20) GUICtrlCreateLabel("mSec", 90, 390, 40, 20) _Refresh() GUISetState(@SW_SHOW) ;hotkeys HotKeySet("{F8}","Buff") HotKeySet("{F11}","HK_STOP") HotKeySet("{F7}","GetTitle") HotKeySet("{F6}","GetHandle") While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button6 _Refresh() Case $Button7 Rename() Case $Stop HK_STOP() Case $buff Buff() Case $go on_go() Case $get GetTitle() EndSwitch WEnd Func _SetState($State) $Array = _GUICtrlListView_GetSelectedIndices($listview, True) For $Y = 1 To $Array[0] WinSetState($Client[$Array[$Y]][1], "", $State) Next EndFunc Func _Refresh() _GUICtrlListView_BeginUpdate($listview) _GUICtrlListView_DeleteAllItems($listview) $Client = WinList("[CLASS:CLIENT]") If $Client[0][0] > 0 Then For $X = 1 To $Client[0][0] GUICtrlCreateListViewItem($Client[$X][0], $listview) Next Else GUICtrlCreateListViewItem("No Clients Found", $listview) EndIf _GUICtrlListView_EndUpdate($listview) EndFunc ;==>_Refresh Func Rename() If GUICtrlRead("[CLASS:CLIENT]") = "Default Name" Then WinSetTitle("[CLASS:CLIENT]","",GUICtrlRead($inputNewName)) WinGetHandle($inputNewName) ;GUICtrlSetState($inputNewName, "") _Refresh() ;Else ; WinSetTitle(GUICtrlRead("[CLASS:CLIENT]"), "", GUICtrlRead($inputNewName)) EndIf EndFunc Func Buff() ; Create array to hold key/timer data Local $aKeys[10][3] ; Check required keys and delays For $i = 0 To 9 If BitAND(GUICtrlRead($i + $item0), $GUI_CHECKED) = $GUI_CHECKED Then $aKeys[$i][0] = True $aKeys[$i][1] = GUICtrlRead($i + $input0) EndIf Next ; Set start time $iBegin = TimerInit() For $i = 0 To 9 $aKeys[$i][2] = $iBegin Next ; Set timer countdown value $iCurr_Left = 0 While 1 ; Check if key press to be sent For $i = 0 To 9 ; Send this key? If $aKeys[$i][0] = True Then ; Is it time to send this key? If TimerDiff($aKeys[$i][2]) > $aKeys[$i][1] Then ;WinGetHandle(GUICtrlRead($inputNewName)) ; Send key ;_WinAPI_LoadString($inputNewName,$i) ;Do ControlSend(GUICtrlRead($inputNewName), "", "Edit1",$i) ; need to add value of what window to ControlSend ;ControlSend("", "", "Edit1",$i) ; need to add value of what window to ControlSend ; Reset timer for this key $aKeys[$i][2] = TimerInit() ;Until $Stop = True EndIf EndIf Next ; Check if Stop flag set If $fStop_Flag = True Then ; reset flag and exit loop $fStop_Flag = False ExitLoop EndIf ; Check if timer flag set If $fTimer_Flag = True Then ; have we timed out? If TimerDiff($iBegin) > $iTimer Then ; Reset timer, window title and tooltip and exit loop $fTimer_Flag = False WinSetTitle($Form1, "", "Silkroad Client Manager") ToolTip("") ExitLoop Else ; calculate time left $iLeft = Int(($iTimer - TimerDiff($iBegin)) / 1000) ; do we need to change title and tooltip (if we change every time they flicker!) If $iLeft <> $iCurr_Left Then ; So change them WinSetTitle($Form1, "", $iLeft & " seconds left") ToolTip($iLeft, 800, 0, "seconds left") $iCurr_Left = $iLeft EndIf EndIf EndIf WEnd EndFunc ;==>Buff Func on_go() ;Set timer and timer flag $iTimer = GUICtrlRead($countdown) $fTimer_Flag = True EndFunc ; Stops the program Func HK_STOP() ; Set the stop flag $fStop_Flag = True EndFunc ;==>HK_STOP ;win get title Func GetTitle() $WGT = WinGetTitle("") MsgBox( 0, "The Title is" , $WGT ) EndFunc ;just to check what control ID , dont know how it work Func GetHandle() $WGH = WinGetHandle("") MsgBox( 0, "The Handle is" , $WGH ) EndFunc
-
thanks a lot could you help me do it in seconds instead of miliseconds
-
the script is readyi just need to make it work with minimized window with control send or somthing else in my script in buff function there is controlsend but i cant make it to send to game called silkroad online (no game guard) thanks
-
i combining my prog with program i find in this forum this program should show me few windows of game i play (silkroad online) and the clicker i made need to send key to the window i choosed the problem is that after i renamed the window i want to start looping the key on the selected window * i want to continue what im doing while the key is sent here is the script #include <GUIConstantsEx.au3> #Include <GuiListView.au3> ;Opt("GUIOnEventMode", 1) ; Change to OnEvent mode Global $Client[1][1], $Array[1], $fStop_Flag = False, $fTimer_Flag = False, $iTimer $Form1 = GUICreate("Silkroad Client Manager", 280, 440, 193, 90) GUISetBkColor(0xE0F0FE) $listview = GUICtrlCreateListView("Client Name", 5, 75, 270, 150, BitOR($LVS_SORTDESCENDING, $LVS_LIST, $LVS_SHOWSELALWAYS));The right way to have multiple styles is with BitOr() $Button1 = GUICtrlCreateButton("Min", 5, 8, 60, 25);setting the style to 0 doesn't do anything so removed all of them GUICtrlSetBkColor(-1,0X88dddd) $Button2 = GUICtrlCreateButton("Max", 75, 8, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button3 = GUICtrlCreateButton("Hide", 145, 8, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button4 = GUICtrlCreateButton("Show", 215, 8, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button5 = GUICtrlCreateButton("Exit", 215, 40, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button6 = GUICtrlCreateButton("Refresh", 145, 40, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $Button7 = GUICtrlCreateButton("Rename", 75, 40, 60, 25) GUICtrlSetBkColor(-1,0X88dddd) $inputNewName = GUICtrlCreateInput("Sro_1",5,40,60,25) $countdown = GUICtrlCreateInput("Time_Left?", 130, 310, 60, 25) $go = GUICtrlCreateButton("Set", 215, 310, 60,25) GUICtrlSetTip(-1 ,"set the time, press this button, then Buff") GUICtrlSetBkColor(-1,0Xff9900) $Buff = GUICtrlCreateButton("Buff (F8)",130,345,60, 25) ;"{F8}", "Buff" GUICtrlSetTip(-1 ,"Choose keys to press and start Buff") GUICtrlSetBkColor(-1,0X00dd00) $Stop = GUICtrlCreateButton("Stop (F11)",215 ,345,60,25) ;"{F11}", "HK_STOP" GUICtrlSetTip(-1 ,"Stop all action") GUICtrlSetBkColor(-1,0Xff1177) GUICtrlCreateLabel("Made by Royco" & @CRLF & "Thanks to M23",195,410,150, 25) GUICtrlSetBkColor(-1,0X44bbcc) GUICtrlCreateGroup("Choose",130, 230, 140, 70) GUICtrlCreateLabel("* Start Buff = F8", 140, 252, 85) GUICtrlCreateLabel("* Stop All actions = F11", 140, 272) GUICtrlCreateGroup("", -99, -99, 1, 1) ;close group ; check box to select what key to press $item0 = GUICtrlCreateCheckbox("0", 5, 410, 40, 20) $item1 = GUICtrlCreateCheckbox("1", 5, 230, 40, 20) $item2 = GUICtrlCreateCheckbox("2", 5, 250, 40, 20) $item3 = GUICtrlCreateCheckbox("3", 5, 270, 40, 20) $item4 = GUICtrlCreateCheckbox("4", 5, 290, 40, 20) $item5 = GUICtrlCreateCheckbox("5", 5, 310, 40, 20) $item6 = GUICtrlCreateCheckbox("6", 5, 330, 40, 20) $item7 = GUICtrlCreateCheckbox("7", 5, 350, 40, 20) $item8 = GUICtrlCreateCheckbox("8", 5, 370, 40, 20) $item9 = GUICtrlCreateCheckbox("9", 5, 390, 40, 20) $input0 = GUICtrlCreateInput("1000", 45, 410, 40, 20) $input1 = GUICtrlCreateInput("1000", 45, 230, 40, 20) $input2 = GUICtrlCreateInput("1000", 45, 250, 40, 20) $input3 = GUICtrlCreateInput("1000", 45, 270, 40, 20) $input4 = GUICtrlCreateInput("1000", 45, 290, 40, 20) $input5 = GUICtrlCreateInput("1000", 45, 310, 40, 20) $input6 = GUICtrlCreateInput("1000", 45, 330, 40, 20) $input7 = GUICtrlCreateInput("1000", 45, 350, 40, 20) $input8 = GUICtrlCreateInput("1000", 45, 370, 40, 20) $input9 = GUICtrlCreateInput("1000", 45, 390, 40, 20) GUICtrlCreateLabel("mSec", 90, 410, 40, 20) GUICtrlCreateLabel("mSec", 90, 230, 40, 20) GUICtrlCreateLabel("mSec", 90, 250, 40, 20) GUICtrlCreateLabel("mSec", 90, 270, 40, 20) GUICtrlCreateLabel("mSec", 90, 290, 40, 20) GUICtrlCreateLabel("mSec", 90, 310, 40, 20) GUICtrlCreateLabel("mSec", 90, 330, 40, 20) GUICtrlCreateLabel("mSec", 90, 350, 40, 20) GUICtrlCreateLabel("mSec", 90, 370, 40, 20) GUICtrlCreateLabel("mSec", 90, 390, 40, 20) HotKeySet("{f8}","Buff") HotKeySet("{f11}","HK_STOP") _Refresh() GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button5 Exit Case $Button1 _SetState(@SW_MINIMIZE) Case $Button2 _SetState(@SW_MAXIMIZE) Case $Button3 _SetState(@SW_HIDE) Case $Button4 _SetState(@SW_SHOW) Case $Button6 _Refresh() Case $Button7 Rename() Case $Stop HK_STOP() Case $buff Buff() Case $go on_go() EndSwitch WEnd Func _SetState($State) $Array = _GUICtrlListView_GetSelectedIndices($listview, True) For $Y = 1 To $Array[0] WinSetState($Client[$Array[$Y]][1], "", $State) Next EndFunc Func _Refresh() _GUICtrlListView_BeginUpdate($listview) _GUICtrlListView_DeleteAllItems($listview) $Client = WinList("[CLASS:CLIENT]") If $Client[0][0] > 0 Then For $X = 1 To $Client[0][0] GUICtrlCreateListViewItem($Client[$X][0], $listview) Next Else GUICtrlCreateListViewItem("No Clients Found", $listview) EndIf _GUICtrlListView_EndUpdate($listview) EndFunc ;==>_Refresh Func Rename() If GUICtrlRead("[CLASS:CLIENT]") = "Default Name" Then WinSetTitle("[CLASS:CLIENT]","",GUICtrlRead($inputNewName)) ;GUICtrlSetData($inputNewName, WinGetTitle($inputNewName)) _Refresh() ;Else ; WinSetTitle(GUICtrlRead("[CLASS:CLIENT]"), "", GUICtrlRead($inputNewName)) EndIf EndFunc Func Buff() ; Create array to hold key/timer data Local $aKeys[10][3] ; Check required keys and delays For $i = 0 To 9 If BitAND(GUICtrlRead($i + $item0), $GUI_CHECKED) = $GUI_CHECKED Then $aKeys[$i][0] = True $aKeys[$i][1] = GUICtrlRead($i + $input0) EndIf Next ; Set start time $iBegin = TimerInit() For $i = 0 To 9 $aKeys[$i][2] = $iBegin Next ; Set timer countdown value $iCurr_Left = 0 While 1 ; Check if key press to be sent For $i = 0 To 9 ; Send this key? If $aKeys[$i][0] = True Then ; Is it time to send this key? If TimerDiff($aKeys[$i][2]) > $aKeys[$i][1] Then ; Send key ControlSend("","","",$i) ; need to add value of what window to ControlSend ; Reset timer for this key $aKeys[$i][2] = TimerInit() EndIf EndIf Next ; Check if Stop flag set If $fStop_Flag = True Then ; reset flag and exit loop $fStop_Flag = False ExitLoop EndIf ; Check if timer flag set If $fTimer_Flag = True Then ; have we timed out? If TimerDiff($iBegin) > $iTimer Then ; Reset timer, window title and tooltip and exit loop $fTimer_Flag = False WinSetTitle($Form1, "", "Silkroad Client Manager") ToolTip("") ExitLoop Else ; calculate time left $iLeft = Int(($iTimer - TimerDiff($iBegin)) / 1000) ; do we need to change title and tooltip (if we change every time they flicker!) If $iLeft <> $iCurr_Left Then ; So change them WinSetTitle($Form1, "", $iLeft & " seconds left") ToolTip($iLeft, 800, 0, "seconds left") $iCurr_Left = $iLeft EndIf EndIf EndIf WEnd EndFunc ;==>Buff Func on_go() ;Set timer and timer flag $iTimer = GUICtrlRead($countdown) $fTimer_Flag = True EndFunc Func CLOSEClicked() Exit EndFunc ;==>CLOSEClicked ; Stops the program Func HK_STOP() ; Set the stop flag $fStop_Flag = True EndFunc ;==>HK_STOP
-
I have a problem with WinList
royco replied to Moonshadow312's topic in AutoIt General Help and Support
the _setstate not workin properly the main window disapear instead of the notepad window here its more easy to show i changed the class to notepad #include <GUIConstantsEx.au3> #Include <GuiListView.au3> Global $Client[1][1], $Array[1] $Form1 = GUICreate("Silkroad Client Manager", 595, 170, 193, 125) $listview = GUICtrlCreateListView("Client Name", 8, 8, 250, 150, BitOR($LVS_SORTDESCENDING, $LVS_LIST, $LVS_SHOWSELALWAYS));The right way to have multiple styles is with BitOr() $Button1 = GUICtrlCreateButton("Min", 272, 8, 75, 25);setting the style to 0 doesn't do anything so removed all of them $Button2 = GUICtrlCreateButton("Max", 352, 8, 75, 25) $Button3 = GUICtrlCreateButton("Hide", 432, 8, 75, 25) $Button4 = GUICtrlCreateButton("Show", 512, 8, 75, 25) $Button5 = GUICtrlCreateButton("Exit", 392, 136, 75, 25) $Button6 = GUICtrlCreateButton("Refresh", 272, 75, 72, 25) _Refresh() GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button5 Exit Case $Button1 _SetState(@SW_MINIMIZE) Case $Button2 _SetState(@SW_MAXIMIZE) Case $Button3 _SetState(@SW_HIDE) Case $Button4 _SetState(@SW_SHOW) Case $Button6 _Refresh() EndSwitch WEnd Func _SetState($State) $Array = _GUICtrlListView_GetSelectedIndices($listview, True) For $Y = 1 To $Array[0] WinSetState($Client[$Array[$Y]][1], "", $State) Next EndFunc Func _Refresh() _GUICtrlListView_BeginUpdate($listview) _GUICtrlListView_DeleteAllItems($listview) $Client = WinList("[CLASS:Notepad]") If $Client[0][0] > 0 Then For $X = 1 To $Client[0][0] GUICtrlCreateListViewItem($Client[$X][0], $listview) Next Else GUICtrlCreateListViewItem("No Clients Found", $listview) EndIf _GUICtrlListView_EndUpdate($listview) EndFunc ;==>_Refresh -
you are correct im using standard 3.3.0.0
-
some one can guide me where to look
-
thanks its realy great i need to remember a lot of password any way the delete option not working (del pass)
-
almost done the only problem i m having is when i changing name ((title name)) and trying to change name for another window its changeing the name of the first window any idea thanks
-
new topic http://www.autoitscript.com/forum/index.php?showtopic=103438&view=&hl=&fromsearch=1
-
maybe you can take it further when i press 1 it start loop pressing 1 2 pressing 2 in loop and make it 1 2 3 to 0 all the number on keyboard also lets say i wanted to stop after hour or so thanks
-
new topic http://www.autoitscript.com/forum/index.php?showtopic=103438&view=&hl=&fromsearch=1