Internet Explorer Inside Ms-Access forms?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mumbaimacro
    New Member
    • Sep 2006
    • 25

    Internet Explorer Inside Ms-Access forms?

    hi

    please suggest me whether We can view internet explorer in the ms-access forms

    i have searched lot in google,, cannot get exact solution,,

    we have to use Active X or any other solution s there?


    Regards
    macro
  • PEB
    Recognized Expert Top Contributor
    • Aug 2006
    • 1418

    #2
    Oh my God you are genious!!! :) Before it was Acrobat reader and now it's a lot more interesting!

    Why do not simply open the respective hyperlink in a separate window?

    But in form it seems that you need ActiveX Control, the next goel is it the Windows Explorer??? Maybe here this is not a client application this is like a system object...

    Really I don't know... :)

    Have a big chance!

    :)

    Originally posted by mumbaimacro
    hi

    please suggest me whether We can view internet explorer in the ms-access forms

    i have searched lot in google,, cannot get exact solution,,

    we have to use Active X or any other solution s there?


    Regards
    macro

    Comment

    • mumbaimacro
      New Member
      • Sep 2006
      • 25

      #3
      Originally posted by PEB
      Oh my God you are genious!!! :) Before it was Acrobat reader and now it's a lot more interesting!

      Why do not simply open the respective hyperlink in a separate window?

      But in form it seems that you need ActiveX Control, the next goel is it the Windows Explorer??? Maybe here this is not a client application this is like a system object...

      Really I don't know... :)

      Have a big chance!

      :)

      hi

      please dont kid me,,

      as in our office we have a Well structured MRP application running in access..we are trying to add some functionalities there,
      so that i am trying those things in a seq...

      regards
      Macro

      Comment

      • pgirl
        New Member
        • Oct 2006
        • 13

        #4
        You can use WebBrowser activex object available in controls.

        Comment

        • Tanis
          New Member
          • Mar 2006
          • 143

          #5
          Depends if you want to go to a specific URL in which case this code will do.

          Private Sub Command0_Click( )
          Dim strUrl As String
          strUrl = "http://www.google.com"
          Call Shell("explorer .exe " & strUrl, vbMaximizedFocu s)
          End Sub

          If you want to bring up the full IE window,it requires a lot of code. A visit to the Dev Ashish site might help. Not sure what it comes under so you will have to search.

          http://www.mvps.org/access/index.html

          Comment

          • mumbaimacro
            New Member
            • Sep 2006
            • 25

            #6
            thnks for all ur replies.

            Comment

            Working...