Search:

Type: Posts; User: msgjp7

Search: Search took 0.07 seconds.

  1. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)


    With WebBrowser1
    .Document.Forms(0).All("txtResID").focus
    .Document.Forms(0).All("txtResID").Value =...
  2. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    If I were using 2003 I wouldn't have any problems. Welcome to the World of 2007. If I figure it out I will post back..
  3. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    I got that far but I can't actually add the component to the form. Were you able to actually add the component to your form? Are you using Access 2007?
  4. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Well..I'm new to Access 2007 (sometimes hard to figure where things are in a new version) and I don't see the internet control component and I've tried a few things but I can't seem to add it. So I...
  5. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Sorry about the ieframe thing. You're right, it's shdocvw.dll.
  6. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Let me try a few things in Access..
  7. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Ahhhh..Ok. Let me think about this because my code works fine in VB. I tested it.

    Do you have access to the "microsoft internet control", ieframe.dll? If so, just add it to your project and that...
  8. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Private Sub Form_Load()
    WebBrowser1.Navigate "http://www.ncl.com/edocs"
    End Sub

    Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)

    With WebBrowser1
    ...
  9. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    .Document.all("txtResID").focus
    .Document.all("txtResID").Value = "blah blah"

    Try making the following changes....
  10. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Figured it out. Just in case anyone is interested, this works.


    WebBrowser1.Document.All("q").focus
    WebBrowser1.Document.All("q").Value = "blah blah"
    WebBrowser1.Document.All("btng").focus...
  11. Replies
    134
    Views
    610,961

    Re: Webbrowser Control Tip and Examples

    Hello,
    I'm using this code from a previous example in thread.

    Private Sub Command1_Click()
    WebBrowser1.Document.All("q").focus
    End Sub

    Private Sub Form_Load()
    WebBrowser1.Navigate...
Results 1 to 11 of 11



Click Here to Expand Forum to Full Width