Jump to content

ghareeb

Active Members
  • Posts

    27
  • Joined

  • Last visited

ghareeb's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. thanks Dale i know IE function , but my main problem is how can i catch the new (result) page
  2. i have code that automatically open page and write some info then submit button the result open in different page my question is how can i collect data from 2nd page that result when i submit data here is some example this code open google write data then bring out the result Const $URL = "http://google.com" $ObjIE=ObjCreate("InternetExplorer.Application") With $ObjIE .Visible = 1 .Navigate($URL) Do Sleep(50) Until .ReadyState = 4 EndWith With $ObjIE.document.forms(0) .q.value = "autoit" .submit.click() EndWith how can i read 1st search result for example???
  3. Hi this is great code and database is really wonderful but my question if i made my database and suppose i search some data (such as food) but i write in search box as foods with extra s ..... in your code it return first element in database allways.. how can i find result near of my search word??? thanks == sorry my poor English ==
  4. Thank you Kurt yes this bracket -- solve my problem thanks a lot
  5. Hi all i have some problem in my script i want to open multi web pages in series with simple loop statement as follow #include <IE.au3> $Total=2 Dim $oIE[$Total] Dim $site[$Total] $site0 = "http://www.google.com" $site1 = "http://www.yahoo.com" For $x=0 to $Total-1 $oIE[$x] = _IECreate ($site[$x]) Next but it didnt match the site number i need in loop only can you help me
  6. thank u for ur answer but i need to make DLL files can any one give me answer
  7. Hi all i make basic script and i will convert to .exe and this script include some picture so i need to put picture in DLL files befor i convert it. my question is how can i make DLL files that contain my picture. i find programe that named Resource Builder 2.3.1.6, but i can't find (crack) so, i need other programe. Thanx Ghareeb
  8. thank you ((scriptkitty))
  9. yes to have something popup and say what GMT time it is?
  10. how can i convert local time to GMT time by using small script code? i know it is easy to make it but i can't do it!!!!!! thanks
  11. Hi All i used this code to access and automate my object: With $ObjIE.document.forms(1) .elements(0).value = "*****" .elements(1).value = "*****" .submit.click() my question is : if i have more than one submit Button how can i access one of them or how can i choose specific button to click? Thank you!
  12. thanx mother9987 THIS SOLVE MY PROBLEM
  13. no no i mean CURSOR like in edit or input box but my Q is how can move CURSOR from one edit box to another edit box in html page with out using TAB send key. ********************************** may be by using name of that box!!!!!!!????????
  14. any body can answer!!!!!!!
  15. i know that but i need console go to input that named (user name) for example. i need console go ,not fill the value. plz help me thanx
×
×
  • Create New...