Is there something I am doing wrong here? I am all confused. #include <GUIConstants.au3> $SS_Cntrl = GUICreate("SS Controller", 129, 81, 192, 125) $Radio1 =...
It will work if you comment three lines. Second and third lines are not safe for user: ;GUICtrlSetOnEvent (7, "clicked") ; GUICtrlSetState (6, $GUI_Hide) ;...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the AutoItList group. File :...
AutoItList@yahoogroup...
May 2, 2006 8:19 am
29621
Hi, Telco script is renamed into ATable. ATable can change foreground/background colors and fonts from context menu. Section ATable is to write description of...
Hi JJD, This is the right place to ask, but i have to tell you that I originally ignored your post all together because you didnt ask a question. You posted...
This is the first time I have ever tried using this version of AutoIt. I have no clue how to get that stupid button to work. I know ver2 I just wanted to see...
Hi JJD, I see youre getting frustrated. That is a shame. We dont want you to get frustrated. We want to help you figure this out. And we REALLY REALLY...
... I have never used Ver 2 but Ver. 3 does not have a clicked() function that I can find anyway. I think the program below is close to what you wanted...
Hi Group Is there an easy way to detect and delete only blank lines from a text file or has anyone got some code I can use to get started on this? Thanks Gert ...
Hi, Tip to ATable: To skip the header table you can add line ProcessListAndTreeViewItems($TreeItemRootItem_1) after line: GUISetState() the result code: ...
Hi Gert, There are topics with examples about FileReadLine & FileWriteLine (read and write lines of text file). Test of empty line: if $line <> "" then ; skip...
... Here is a program you can use as a starting point. #include <GuiConstants.au3> Opt("GUICoordMode", 1) $MyGui = GuiCreate("No Blank Lines", 800, ...
Hello Can anyone tell me how to send a $string variable inside a loop? For example $i = 0 While $i <= 10 Send("$i") <----this doesn't work $i = $i + 1 ...
Ooops! Change: Send($i) To: Send($MyArray[$i]) Walter ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has...
... You are welcome. Let me know how it works. I didn't test it but believe that it will. Walter __________________________________________________ Do You...
I might be reading one of these wrong, but I think his problem is actually Syntax... Linuxprograming24's code: $i = 0 While $i <= 10 Send("$i") <----this...
I finally figured out the whole button problem I was having and now I know what I was doing wrong. Sorry for the frustration but I rarely require help for...
... Using Run(rundll32.exe user32.dll,LockWorkStation") will prevent that ugly DOS box from appearing. ... I suspect this event is not closing the window. Use ...
... He said in both the subject and the body he was trying to send a $string variable so I don't think he was trying to send 0-9. There is a much easier way to...
... Well you experts check in every once in a while to see that I haven't given out any bad information or help with the ones I am not even willing to touch! ...
Umm dude you rock. So simple and yet I got a migrane over it today. Thank you so much, you deserve a cookie. Heck I will even throw in a glass of milk. ...
Thanks Richard You solved my problem. I also found another way to state the string. $i = 0 While $i <= 10 Send("{" & $i &" }") $i = $i + 1 WEnd This also...
... You are welcome. Glad I could help. I took another look at it this morning and see that clicking the lock button would turn off the screen saver. I don't...