webbrowser control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Danny

    webbrowser control

    The webbrowser tool is nice.
    BUT, does anybody know a way to resize it in such a format that shows the
    user a smaller version of the webpages? Right now it just shows them a
    portion or a corner and you have to scroll to see it all.

    I need to scale it down.

    Thanks


  • Lyle Fairfield

    #2
    Re: webbrowser control

    "Danny" <dannywork5@hot mail.com> wrote in news:4J8fc.3752 4$467.8922724
    @news4.srv.hcvl ny.cv.net:
    [color=blue]
    > The webbrowser tool is nice.
    > BUT, does anybody know a way to resize it in such a format that shows the
    > user a smaller version of the webpages? Right now it just shows them a
    > portion or a corner and you have to scroll to see it all.[/color]

    Private Sub Form_Open(Cance l As Integer)
    With wbHDSBHelp
    .Height = 640
    .Width = 480
    End With
    End Sub

    wbHDSBHelp is the name of the web browser control.

    --
    Lyle
    (for e-mail refer to http://ffdba.com/contacts.htm)

    Comment

    • Danny

      #3
      Re: webbrowser control


      "Lyle Fairfield" <MissingAddress @Invalid.Com> wrote in message
      news:Xns94CB5FC 1E89E0FFDBA@130 .133.1.4...[color=blue]
      > "Danny" <dannywork5@hot mail.com> wrote in news:4J8fc.3752 4$467.8922724
      > @news4.srv.hcvl ny.cv.net:
      >[color=green]
      > > The webbrowser tool is nice.
      > > BUT, does anybody know a way to resize it in such a format that shows[/color][/color]
      the[color=blue][color=green]
      > > user a smaller version of the webpages? Right now it just shows them a
      > > portion or a corner and you have to scroll to see it all.[/color]
      >
      > Private Sub Form_Open(Cance l As Integer)
      > With wbHDSBHelp
      > .Height = 640
      > .Width = 480
      > End With
      > End Sub
      >
      > wbHDSBHelp is the name of the web browser control.
      >
      > --
      > Lyle
      > (for e-mail refer to http://ffdba.com/contacts.htm)[/color]

      This doeesnt seem to work, I still see the upper left portion of the web
      page.
      What else can I try?

      Thanks


      Comment

      Working...