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 SkipVought 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. Thenolos

    InternetExplorer ReadyState_Complete

    Only posted here because I've found that those in this forum tend to have a more familiar understanding of the InternetExplorer object. Sorry.
  2. Thenolos

    InternetExporer Object READYSTATE_COMPLETE woes

    Howdy, I have an Access 97 application that I use to fill out information on various webforms. This database accesses several sites that are almost exactly the same. After IE navigates to a new page I am using the following code to wait for the page to finish loading before moving on...
  3. Thenolos

    InternetExplorer ReadyState_Complete

    Howdy, I have an Access 97 application that I use to fill out information on various webforms. This database accesses several sites that are almost exactly the same. After IE navigates to a new page I am using the following code to wait for the page to finish loading before moving on: Public...
  4. Thenolos

    Code stops at dialog box

    Don't really see how it could help... or how I could implement it in a way to allow the code to continue running. With obIE.Document.Frames("main").Document .Forms(0).Item("button1").Click End With As soon as the button is clicked, Access seems to wait for a response from IE before moving...
  5. Thenolos

    code hung up at dialog box

    Howdy, I'm creating a Microsoft Access 97 application that browses through a website and gathers information. When going from page to page it encounters a dialog box asking for some basic information. I have an API function that deals with the dialog box beautifully. The problem I'm having...
  6. Thenolos

    Code stops at dialog box

    Howdy, I'm creating an application that browses through a website and gathers information. When going from page to page it encounters a dialog box asking for some basic information. I have an API function that deals with the dialog box beautifully. The problem I'm having is that when the...
  7. Thenolos

    Sub-Sub-Sub-Form Issue?

    Thanks for the response Eupher. Not much to clarify really... according to what you are saying It should be working... odd... I've got a stray variable somewhere or an incorrect reference in a query or something. I'm going to investigate further and see what I can dig up. This just boggles...
  8. Thenolos

    Sub-Sub-Sub-Form Issue?

    Hello guys. I seem to have a problem implementing a subform within a subform, within a subform... you get the idea. Anyways. The subform works great when the main form it is in is opened on its own. It also works when the subform it is in is opened as a subform. However when the form it...
  9. Thenolos

    Fill In File Input Field with VBscript

    For anyone who may need to do this in the future that searches and finds this thread... the SendKeys workaround is simple... I just have a natural bias against it. I just stuck this in after the code that navigated me to the proper page. The file field was the first on the page... you may need...
  10. Thenolos

    Fill In File Input Field with VBscript

    Link Finally found someone asking the same question on Google... doesn't look good for me. Makes sense thought... Looks like I get to break my rule of no SendKeys. Yay. Thanks for the help though. :) Sorry to waste your time.
  11. Thenolos

    Fill In File Input Field with VBscript

    Thanks for your reply, Mark, but It's not quite what I am looking for. I do not control the website that I am uploading to, I am merely creating an application that runs throught the filing process on a website we subscribe to. Near the end of the filing process, I need to upload a PDF...
  12. Thenolos

    Fill In File Input Field with VBscript

    Hello, I'm creating an application that logs on to a website and files paperwork with that website automatically. Everything is going peachy with the exception of uploading my PDF documents to the site (one of the final stages). I know the direct file location to the PDFs and want to have that...
  13. Thenolos

    Is there anyway to display text no matter how the user enters it?

    Sorry... last post had a dumb TGML error on my part, should have read: -- Sub Command1_AfterUpdate End Sub Change that to include the code formatted to match the details of your textbox. Sub Command1_AfterUpdate Me.YourTextboxName.Value = StrConv([YourTextboxName.Value], vbProperCase)...
  14. Thenolos

    Is there anyway to display text no matter how the user enters it?

    Try the AfterUpdate property of the textbox. Go to the events tab of the properties window and click the "..." next to the AfterUpdate combo box. Select the option to code your own procedure. A window will pop up that says something like: Sub Command1_AfterUpdate End Sub [code] Change...
  15. Thenolos

    Is there anyway to display text no matter how the user enters it?

    The search and FAQ options are your friends. :) FAQ Hope this helps. Have Fun!
  16. Thenolos

    Updating Several Tables from form field

    The only way I know of to do this is to use VBA... but then again I use VBA for all data entry purposes on forms--it gives you more control over what is going on... Basically you would have a bunch of unbound textboxes with names that match the names of fields on your tables... put a command...
  17. Thenolos

    Auto Notification

    No trouble at all... There is only one way to learn :)
  18. Thenolos

    Auto Notification

    Take a look at the FAQ or do a Search... there are tons of threads that detail this sort of thing. Heres the FAQ link to get you started. FAQ
  19. Thenolos

    Bypass Startup Form - VBA method

    Maybe I don't understand what you're asking... but could you not just go to the startup options and remove the switchboard as the form to display at start up? Or is this out of the question for some reason?

Part and Inventory Search

Back
Top