home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form FrmFavorites
- BackColor = &H00000000&
- Caption = "Favorites"
- ClientHeight = 3225
- ClientLeft = 60
- ClientTop = 405
- ClientWidth = 4680
- Icon = "FrmFavorites.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 3225
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton cmdCancel
- Caption = "Cancel"
- Height = 375
- Left = 2400
- TabIndex = 2
- Top = 2640
- Width = 1815
- End
- Begin VB.CommandButton cmdGotoFavorite
- Caption = "Goto Favorite"
- Height = 375
- Left = 360
- TabIndex = 1
- Top = 2640
- Width = 1695
- End
- Begin VB.ListBox List1
- Height = 2400
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 4335
- End
- Attribute VB_Name = "FrmFavorites"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdGotoFavorite_Click()
- rownumber = List1.ListIndex
- frmDoorToTheNet.txtAddress.Text = List1.List(rownumber)
- frmDoorToTheNet.WebBrowser1.Navigate frmDoorToTheNet.txtAddress.Text
- FrmFavorites.Hide
- End Sub
- Private Sub List1_Click()
- cmdGotoFavorite.Enabled = True
- End Sub
-