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 Chris Miller 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. NEODARK

    WHS - clicking a button within a frame & onclick code

    Awesome tsuji, that did it!!! I had to use objIE.document.frames("nameofframe").document.all.StampForm.Item("go").click() Thanks so much man for sticking with me Sends *e-beer* cheers!!
  2. NEODARK

    WHS - clicking a button within a frame & onclick code

    Thanks for your suggestions. I've tried the objIE.Document.All.StampForm.Item("go").Click() approach, and still have no results. It's the same error (object does not support this, etc) I've tried a WScript.Sleep 30000, which gives the page plenty of time to load, but there is still nothing...
  3. NEODARK

    WHS - clicking a button within a frame & onclick code

    Hey guys, Need some help, I've been having a hard time targeting, then clicking a form button to submit a form with my script. The button is in a frame, and it also has onclick code attached to it like so: <input value="Refresh" name="go" onclick="document.skipCheck=true...
  4. NEODARK

    Need help with automating task in broser

    I don't have access to actually change the code on the form itself, but "click" worked perfectly :) Once the form is submitted (I'm logged in) I then need to click another button "ok" on a new page/form. How can I put a pause to wait until the new page is loaded instead of just doing a...
  5. NEODARK

    Need help with automating task in broser

    Thanks, I tried as you suggested, which is definitely better, however I keep getting an error on this line: objIE.Document.All.logonForm.submit I assume it's because the name of the submit button is also submit, like so: <INPUT type="submit" name="submit" value="Log On"> This is the code...
  6. NEODARK

    Need help with automating task in broser

    Thanks, and sorry for all the typos above. I'm used to always going back and editing my posts :p Anyway, I managed to do what I wanted (sort of) by using this: Set objIE=WScript.createobject("internetexplorer.application","objIE") objIE.visible = True objIE.TheaterMode = False...
  7. NEODARK

    Need help with automating task in broser

    Sry cant find the edit button on this forum.. I mean I can send the keystrokes with shl.SendKeys "" but since I dont know how to focut the cursor on said field above, it just sends the keys where the default cursor location is (the address bad) I guess I could send TAB 6 times which places...
  8. NEODARK

    Need help with automating task in broser

    They do. I just don't know what the sendkey command is :) Their form field ID/names are: ussername password respectively, and the login button is submit :)
  9. NEODARK

    Need help with automating task in broser

    Hey guys, Just found your forum. I'm still a beginner when it comes to .js or .vbs and need some help. I need to create a scrip which when clicked will help me do the following: - Upon being clicked from desktop, wait predetermined amount of time (ex, 30 min) - The script would need to open...

Part and Inventory Search

Back
Top