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...
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...
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...
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...
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...
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]] )...
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...
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...
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...
... 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...
... 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...
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...
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...
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...
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",...
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...
... 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...
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? ...
... 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...
... 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...
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...
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...
... 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...
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...
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...
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...
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...