These are just functions that are called. On their own, they do nothing. Either you'd paste them verbatim into your main script, or you'd save them off to another file and #include said file in your main script.
Teaching you how to program in AutoIt is beyond the scope of my help, unfortunately. I would advise you to start learning with smaller, bite-sized examples and work your way up. In the meantime, if you need this script right away, I'd suggest you post your request in the General Help and Support area with an offer to make a small donation to AutoIt. Likely someone will be happy to work with you.
-S
Thanks for the help..
I m working on Autoit from past some time..
and i figured out the reason why it was not working also.
Nothing wrong with the code but my ADODB.connection
...
I m gonna ask a help last time form you.http
I am not able to conneect to my SQL server,it fails when i m trying to connect..
basically
$sqlCon = ObjCreate("ADODB.Connection")
$sqlCon.Open("ONEFLOWQA-08","qaFieryapps","Autoit","autoit")
if @error Then
MsgBox(0, "ERROR", "Failed to connect to the database")
Exit
Else
MsgBox(0, "Success!", "Connection to database successful!")
EndIf
Any help will be great ,if i can come to know how to figure out whats wrong?
Thnaks Sandi
Edited by sandeep, 18 June 2007 - 05:14 AM.