Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chriss87

    Refering to IE document form elements

    Awesome :-D thx a lot - it's just what i needed
  2. chriss87

    Refering to IE document form elements

    Hello I have a little problem writing a script that fills web formular fields. I'm using IE.application object, and I know how to refere to a from which doesn't have a name: objIE.document.Forms(i) it is easy to submit such a form, but sometimes it has a few fields like <input type="text"...
  3. chriss87

    how to refer to a 'noname' form in a web document

    dm4ever you were right :-D i didn't try refering to the form in general through document.forms(0) thanks for the hint ^^
  4. chriss87

    how to refer to a 'noname' form in a web document

    well that was a slightly different problem, i had 2 objects with a same name, but now i have none... and i dunno how to refer to the form... if it is for button text box's i can use 'getelementbyid', 'getelementbyvalue'[i guess] but i can't get a form by 'GetElementByAction'(or something like...
  5. chriss87

    how to refer to a 'noname' form in a web document

    Hi I have this problem, i want to refer to some form elements on a web document but i can't - because the form has no name <form action="login.php" method="POST"> Any ideas how can i do it?
  6. chriss87

    handling 2 forms with the same name on 1 document

    I know that putting two forms with the same name in one document or using <input type="submit"> are very nasty habbits - but i wanted to have my script work even on those Tried putting indeces before but i guess i made some errors Works perfectly now :-) Thanks
  7. chriss87

    handling 2 forms with the same name on 1 document

    hi all i have a little problem with operating on a web document - it has got two forms with the same name: something like: (...) <form name="form1" method="post" action=[action1]> <input type="submit" name="submit" value="button1" id="button"> </form> (...) <form name="form1"...
  8. chriss87

    getting page source using IE

    Thanks, that's just what i needed :-D
  9. chriss87

    getting page source using IE

    Hello guys I have a kind of an easy question - i'm not very much into writing scripts and thougth i could get some help. I tried seeking the forum, but i guess i haven't found anything about it: My script is used to navigate on websites, login in to accounts ect... but there is a little...
  10. chriss87

    submiting data on a website using vb

    Hello all i want to write an application using vb6 that could do some online stuff for me. It's easy to download the source of the website and navigate using hyperlinks, but there are still form elements on websites. Does anybody know how to submit some data of my choice using vb? for example...
  11. chriss87

    How to 'Get' form elements on a WebBrowser control

    Hi I've got a problem and thought you guys could help me :-) The main thing is that i would like to somehow 'get' form elements (properties, count, type, etc) that are loaded on a page to the webbrowser control? Are there any methods that support it? How do they work? Thx in advance

Part and Inventory Search

Back
Top