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 to share photos of your group with the world? 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 27607 - 27636 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27607
Hi, I would like to know if anyone has an AutoIt3 script that will read a file and put fields from the file into variables? What I would like to do is write a...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 1, 2005
4:10 pm
27608
I will be out of the office starting 01.08.2005 and will not return until 10.08.2005. I will respond to your message when I return. I will check my e-mails...
M.Bachl@...
martin_fsh
Offline Send Email
Aug 1, 2005
4:13 pm
27609
AutoIt can read name/value pairs from an INI file. Look into the IniRead function in the help file. _____ From: AutoItList@yahoogroups.com...
Dang Nguyen
haidangwa
Online Now Send Email
Aug 1, 2005
5:31 pm
27610
im soooo close! My prob is that ive been making a script to archive online comics on my computer (download them onto my comp) the prob is that theres this one...
Cru Lemon
sequence_zero
Offline Send Email
Aug 1, 2005
8:02 pm
27611
I wish I could afford to take 9 months off. Hehe... If only the whole world would pick a date format... LIKE THE ISO DATE FORMAT... YOU KNOW, SORTABLE LIKE...
Michael Curley
xdctech_mike
Offline Send Email
Aug 1, 2005
11:17 pm
27612
1. In older versions of AutoIt, I could use a period as a separator (similar to a space) but find that in Au3 it interprets the period as a delimiter of some...
Van Renier
van_renier
Offline Send Email
Aug 1, 2005
11:56 pm
27613
Hi Jon & AutoIt Team, I remember old (since v.2) convention about zero value of "timeout" in waiting functions: i.e. WinWait ( "title" [, "text" [, timeout]] )...
valery_vi
Offline Send Email
Aug 3, 2005
9:13 am
27614
Hi Van, AutoIt seems to be direction toward MS VBScript syntax. Difference is many $ more then MS. ;-) Symbol "period" is to delimite the object instance from...
valery_vi
Offline Send Email
Aug 3, 2005
9:43 am
27615
Bonjour tout le monde, je débute sur AutoIt v3 et lorsque je lance certains scripts on ne peut plus basique histoire de me faire la main, la plupart du temps...
tsgripower
Offline Send Email
Aug 3, 2005
10:32 am
27616
Hello - I'm new to using AutoIT, and I've checked the helpfile, but I'm still having trouble understanding how this function works. I have a script that I'm...
lconover@...
laura_conover
Offline Send Email
Aug 3, 2005
2:50 pm
27617
... it ... Not unless you provide the most important piece of code which is the function definition for InstallReport(). You've not provided enough script or...
Valik
vampirevalik
Online Now Send Email
Aug 3, 2005
3:32 pm
27618
... you. ... Thank you for taking the time to take a peek. You've already answered the bulk of my question - if my code for passing the *.exe name from the...
Laura Conover
laura_conover
Offline Send Email
Aug 3, 2005
4:31 pm
27619
Jon has been busy and support@... could get a little full. Also his spam filter may have tossed your e-mail. Try sending to JPM on the ...
David Nuttall
danuttall.rm
Offline Send Email
Aug 3, 2005
4:39 pm
27620
Hi all, I'm writing some code that needs to generate an md5 hash of a string (so that I can generate an authorisation code for a webform) However, I'm a bit...
Paul Seward
sewardpm
Offline Send Email
Aug 3, 2005
4:47 pm
27621
I am having issues with trying to create a simple script. Details for the script is to allow a user with only poweruser rights who's computer is on a domain...
sweat_t
Offline Send Email
Aug 3, 2005
8:49 pm
27622
Hello, Has anyone given thought to this again? I have a great need for this at work for updating over 1,000+ win CE devices. I would be willing to chip in as...
jcorr1339
Offline Send Email
Aug 4, 2005
1:48 am
27623
Hi, I'd like to find out how to test a var if it is blank. The If statement below Tests positive when I have $first = Gary $first = IniRead("C:\Temp\User.ini",...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 4, 2005
3:58 am
27624
Your code is actually testing for a positive when the string is either, literally, NotFound or a space. The correct way to test for a blank is to use two...
Dang H. Nguyen
haidangwa
Online Now Send Email
Aug 4, 2005
4:50 am
27625
... You still did not explain what errors you are getting so I can only guess that the syntax error I see in the code is real and not a product of the email...
Valik
vampirevalik
Online Now Send Email
Aug 4, 2005
4:50 am
27626
Hi Dang, Thank you answering my question. I tried that first. It doesn't work. If the field is blank the If statement doesn't catch it. Any other solutions? ...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 4, 2005
5:23 am
27627
... But that's the way it works $var = iniread("mypath\ricks.ini","section","key","Blank") if $var = "Blank" or $var = "" then NEW DVD Step by Step Learn...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Aug 4, 2005
5:56 am
27628
... But that's the way it works $var = iniread("mypath\ricks.ini","section","key","Blank") if $var = "Blank" or $var = "" then Grrrrrrr sorry do this endif YOu...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Aug 4, 2005
5:57 am
27629
One more thing: If $first = "NotFound" or $first = "" Then MsgBox(32, "First Name", $first) Exit This should display the MsgBox if the key was not found in...
Dang H. Nguyen
haidangwa
Online Now Send Email
Aug 4, 2005
5:58 am
27630
... I dream about the day does that count? Rick NEW DVD Step by Step Learn Internal Energy Strikes Increase Your Punching Power 50% to 100% ...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Aug 4, 2005
5:59 am
27631
Let me revise this answer since I didn't read through it carefully the first time... $first = IniRead("C:\Temp\User.ini", "Name", "First", "NotFound") If...
Dang H. Nguyen
haidangwa
Online Now Send Email
Aug 4, 2005
6:11 am
27632
... What about useing md5sum.exe & piping the output to "clip.exe"? Clip.exe is a small utility that takes the standard out of a proggy & puts it into the...
brian_keene@...
brian_keene
Offline Send Email
Aug 4, 2005
1:12 pm
27633
Just do this: If IniRead("C:\Temp\User.ini", "Name","First", "") == "" Then... ... <http://groups.yahoo.com/gads?t=ms&k=Shareware&w1=Shareware&w2=Freeware&w3=C...
Cru Lemon
sequence_zero
Offline Send Email
Aug 4, 2005
2:21 pm
27634
Hi Dang, Thank you very much for the reply. I didn't mean for you to go through that much trouble. I do appreciate it though. Comments below.... ... When the...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 4, 2005
2:38 pm
27635
Hi Sensei, Thank you for the replay. ... When I add the endif it gives me an error saying Error: "Endif" statement with no matching "If" statement. I have an...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 4, 2005
2:49 pm
27636
Hi Cru, Thanks for the reply. ... This doesn't work either. It doesn't catch it when: First= Everything after the Then is not executed. Thanks, Gary...
Gary Kuznitz
Docfxit
Offline Send Email
Aug 4, 2005
3:15 pm
Messages 27607 - 27636 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