Forgot Password / Register
Site Statistics
Total Members: 520
Total Tutorials: 242
Newsest User: 8884244477
Todays Unique Hits: 753
0 Users 5 Guests Online

Web browser quick add on

Hey this was requested by Dean its just a little bit of code so you can set a homepage!
Code
Private Sub Form_Load()
web.Navigate "http://yoursite.com" 'Navigates into your web browser
cburl.Text = "http://yoursite.com" 'Types in your website address into the address bar so people know where they are
End Sub

add that into your form anywhere!
MOD-Dan
Author:
Views:
2212
Rating:
Posted on Sunday 15th July 2007 at 10:57 AM
MOD-Dan
MOD-Dan
INI is quite easy actually but it means if you gave your browser to a m8 they have to have the ini too. I dont personally like inis i just use hidden forms and so on. But i do use them for address books and so on.
Posted on Saturday 14th July 2007 at 07:09 PM
ShadowMage
ShadowMage
i might write a tutorial :D
Posted on Saturday 14th July 2007 at 05:02 PM
FtH8er
FtH8er
idk how to use INI files, I "heard" they were kinda difficult, but i cant say I have ever really tried lol.
Posted on Saturday 14th July 2007 at 02:54 PM
ShadowMage
ShadowMage
Another way to set up a homepage and some favorites is with an INI file..
Posted on Saturday 14th July 2007 at 01:11 PM
MOD-Dan
MOD-Dan
urm well you could add another form called "homepage" with a text box tell them to type in the address have a fake button otherwise it looks fake :P
Then basically change the code to this:
Code

Private Sub Form_Load()
web.Navigate newform.text1
cburl.Text = newform.text1
End Sub

Should work...reply if not :D
Posted on Thursday 12th July 2007 at 10:04 PM
FtH8er
FtH8er
im still trying to find out how to do this as well, so if anyone knows how please help :)
Posted on Thursday 12th July 2007 at 09:59 PM
vb_king
vb_king
yeh and it works but I have a question, is it possible for the user that has my browser to choose his own homepage?
Posted on Thursday 12th July 2007 at 07:08 PM
FtH8er
FtH8er
Wow thx man, i have been lookin for this, but no1 knew how to do it lol. Thanks again.