Search the web
Sign In
New User? Sign Up
AutoItList · AutoIt Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 29618 - 29648 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29618
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 =...
JJD
walker2198
Offline Send Email
May 1, 2006
4:50 pm
29619
It will work if you comment three lines. Second and third lines are not safe for user: ;GUICtrlSetOnEvent (7, "clicked") ; GUICtrlSetState (6, $GUI_Hide) ;...
valery_vi
Offline Send Email
May 2, 2006
8:09 am
29620
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...
Send Email
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...
valery_vi
Offline Send Email
May 2, 2006
8:26 am
29622
Just one hotfix: After line Global $Table_Column_count = 2 You have to add this definition: Global $TreeTableName Valery...
valery_vi
Offline Send Email
May 2, 2006
9:37 am
29623
Well I kinda need that button to make this whole thing work. If this is the wrong place to find out how to do this I am sorry....
JJD
walker2198
Offline Send Email
May 2, 2006
12:42 pm
29624
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...
Michael Curley
xdctech_mike
Offline Send Email
May 2, 2006
12:53 pm
29625
... Your program won't even compile without the clicked() function. Did you just forget to include it? Walter ...
Walter Cox
w_fred_cox
Offline Send Email
May 2, 2006
2:07 pm
29626
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...
JJD
walker2198
Offline Send Email
May 2, 2006
7:43 pm
29627
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...
Michael Curley
xdctech_mike
Offline Send Email
May 2, 2006
8:16 pm
29628
... 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...
Walter Cox
w_fred_cox
Offline Send Email
May 2, 2006
9:11 pm
29629
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 ...
Gert Scheepers
gertscheeper...
Offline Send Email
May 3, 2006
2:27 pm
29630
Hi, Tip to ATable: To skip the header table you can add line ProcessListAndTreeViewItems($TreeItemRootItem_1) after line: GUISetState() the result code: ...
valery_vi
Offline Send Email
May 3, 2006
2:47 pm
29631
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...
valery_vi
Offline Send Email
May 3, 2006
2:57 pm
29632
... Here is a program you can use as a starting point. #include <GuiConstants.au3> Opt("GUICoordMode", 1) $MyGui = GuiCreate("No Blank Lines", 800, ...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
3:53 pm
29633
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 ...
linuxprogramming24
linuxprogram...
Offline Send Email
May 3, 2006
4:02 pm
29634
... Try using StringSplit to make an array out of it: $MyArray = StringSplit("mystring", "") For $i - 1 to $MyArray[0] Send($i) Next Walter ...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
4:14 pm
29635
Ooops! Change: Send($i) To: Send($MyArray[$i]) Walter ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
4:19 pm
29636
Walter Thank you so much! linuxp...
linuxprogramming24
linuxprogram...
Offline Send Email
May 3, 2006
4:50 pm
29638
... You are welcome. Let me know how it works. I didn't test it but believe that it will. Walter __________________________________________________ Do You...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
5:18 pm
29639
Hi Walter! You are really ready for AutoDuty. I'll been busy this and next week and Michael will be too, I think. ... Thanx, Valery...
valery_vi
Offline Send Email
May 3, 2006
5:45 pm
29640
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...
HOGAN, RICHARD E.
therickbert
Offline Send Email
May 3, 2006
6:49 pm
29641
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...
JJD
walker2198
Offline Send Email
May 3, 2006
8:11 pm
29642
... 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 ...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
8:32 pm
29643
... 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...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
8:36 pm
29644
... 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! ...
Walter Cox
w_fred_cox
Offline Send Email
May 3, 2006
8:42 pm
29645
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. ...
JJD
walker2198
Offline Send Email
May 3, 2006
9:54 pm
29646
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...
linuxprogramming24
linuxprogram...
Offline Send Email
May 3, 2006
11:35 pm
29647
I would go so far as to stingstripws the line before comparing it to "". $FileLine = StringStripWS(FileReadLine($hFile), 3) IF $FileLine <> "" Then...
Michael Curley
xdctech_mike
Offline Send Email
May 4, 2006
4:07 am
29648
... 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...
Walter Cox
w_fred_cox
Offline Send Email
May 4, 2006
12:16 pm
Messages 29618 - 29648 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help