Jump to content

LHCompter

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by LHCompter

  1. Thanks bro,it's great example Thanks,it's a great post they got much more explanation
  2. Hi,is there any way to get a button from a webpage by classname not just id or name ? ex : _IEGetObjByClassName Or anything like that ?
  3. God damn....is there any other method for other browsers ?
  4. Does anyone got any idea why I get this error ? --> IE.au3 T3.0-2 Error from function _IECreate, (Browser Object Creation Failed) Code : #Include <IE.au3> Global $oIE = _IECreate ("http://www.google.com") Browser : Maxthon
  5. I am such noob...nevermind guys thanks for your methods I found I way to do what I want using your code lines,thanks again
  6. Well for example I want that the program make this thing first he reads the line so in values that will be $line1 $file = "file.txt" after he reads that line I want that he make a msgbox and say "hi the line 1 : this is line one" after that I want he ingrese the lines so that will be $line1 = $line + 1 $file = "file.txt" msgbox ( "hi this is line 2 : this is line two) and I want that he loops this procese :/
  7. Aweomse methods but is there any way to call the value from that read line ? For example to call first line and after it finishes his job with that line to autoincrement and call the next line from the same file
  8. Yes I am,thanks again,now it's a faster way to see all the lines from that file
  9. God damn,thanks bro,you just saved my life
  10. Any idea why it does not read next line on EGL.LIST file ? :/ Ex : #include <file.au3> ;Local For Looper Increment Function $lineset = 1 $n = 1 ;Locals for email list $LEGL = "EGL.LIST" ;EGL ( EMAIL GENERATOR LIST | LEGL LOCATION EMAIL GENERATOR LIST) ;Open File And Read It Local $hLEGL = FileOpen ($LEGL, $FO_READ) ;hLEGL variable to setup external file reading ;Read File Local $EGLL = FileReadLine($hLEGL,$lineset) Call("increment") func increment() While $n = 1 $lineset = $lineset + 1 ;Debuger MsgBox($MB_SYSTEMMODAL, "", "EGL LINE : " & @CRLF & $EGLL) ; EGL1 EMAIL GENERATOR LIST LINE MsgBox($MB_SYSTEMMODAL, "", "Line: " & @CRLF & $lineset) ; Line Set = value of line reader WEnd
  11. Hello does anyone got any idea or a demo code of how is posibile to read sql data and send it to a php page,so i can't explain it so good,but i will give a try with a example it can be easier to understand what i want to say. SQL DATABASE COLLUM ID | USERNAME | PASSWORD | EMAIL 1 | mumu | mumu22 | mumu@autoitscript.com 2 | acow | acow33 | acow@autoitscript.com So this is the example of the database Let's say that i want this script self complete a formular in php with the data from sql ex: Running script 1 will self use the collum ID 1 What's collum id ? (this will be already seted up in script ) What's the username of that collum id? (Script gets the data from sql) What's the password of that collum id? (Script gets the data from sql) Verifying if the data is correct,a document.txt is created and show up the inserted data and the php & html code collum that has been completed using sql data,he will show just "yes", "no" IF Data is correct then the option to send the data will be "YES" Else if Data is incorrect then he will just say a error message "incorrect data,or anything like this" by pressing no button I don't want a personal "CODE ARMY" with all the respect to the people that know a lot much more then me,i just need a bit of help with this little project,thanks for your attention. Have a great time
×
×
  • Create New...