Things you will need:
- Visual Basic
- 5-10 mins spare time
1. Open VB
2. Go to, Project>Components
3. Find 'Microsoft Internet Controls' its in alphabetical order.
4. Open up your form to the size you think is enough to fit in a browser and some buttons.
5. On the left hand side, your will see loads of tools, and one of them just looks like a planet. Thats the Microsoft Internet Controls, or in short terms, webbrowser. Click it.
6. Open it so it fills your form, but leaving enough space at the side for some buttons.
7. On the left hand side again, the will be a icon that is a rectange shape, click it. That is the command buttons. Make a button but make sure its not over your webbrowser (the big white square.)
8. Click your command button, and on the right you will see the properties of that item. Find 'Caption' on the list and type 'Neopets' in there.
9. Double click your command button, and a place where you can write your code in should show, you will see this code.
Code:
Private Sub Command1_Click()
End Sub
10. Place this text in between the two lines.
Code:
WebBrowser1.Navigate ("http://www.neopets.com/") 11. Press F5 and click your button and your webbrowser will go to the Neopets page. Now make the rest of your buttons with links to the dailys and you will be set.
IF YOU HAVE ANY PROBLEMS PM ME.