Computer Science Canada

I need help with making my web browser

Author:  Darkmantis [ Wed Apr 19, 2006 2:26 pm ]
Post subject:  I need help with making my web browser

I need help with making my web browser auto size to fit the screen when u change the window from lets say 800 x 600 to 1024 x 768.
And how do I i get my web browser/program to recognise that i've clicked a link in it?

Author:  tupac [ Thu Apr 20, 2006 10:52 am ]
Post subject: 

ok, to resize your browser, u need to put this code in:
code:

Private Sub Form_Resize()
wweb.Height = Me.Height
wweb.Width = Me.Width
End Sub

for the clicking the link... i don't rele know wat u mean... can u expand on wat u want the program to do?

Author:  tupac [ Thu Apr 20, 2006 10:52 am ]
Post subject: 

ok, to resize your browser, u need to put this code in:
code:

Private Sub Form_Resize() 'I renamed "WebBrowser1" to "wweb"
wweb.Height = Me.Height
wweb.Width = Me.Width
End Sub

for the clicking the link... i don't rele know wat u mean... can u expand on wat u want the program to do?

Author:  Darkmantis [ Thu Apr 20, 2006 11:05 am ]
Post subject: 

ok Tupac u helped me with my back button, how do I get the back button code u told me to basically add 1 to total pages when I click a link on a web page?


: