home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form4
- Caption = "Delete Icon"
- ClientHeight = 2175
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form4"
- ScaleHeight = 2175
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text1
- Height = 285
- Left = 720
- TabIndex = 4
- Top = 840
- Width = 495
- End
- Begin VB.CommandButton Command1
- Caption = "&OK"
- Height = 615
- Left = 120
- TabIndex = 3
- Top = 1440
- Width = 1335
- End
- Begin VB.CommandButton Command2
- Caption = "&Cancel"
- Height = 615
- Left = 1560
- TabIndex = 2
- Top = 1440
- Width = 1455
- End
- Begin VB.CommandButton Command3
- Caption = "&About"
- Height = 615
- Left = 3120
- TabIndex = 1
- Top = 1440
- Width = 1455
- End
- Begin VB.Label Label2
- Caption = "ID:"
- Height = 255
- Left = 240
- TabIndex = 5
- Top = 840
- Width = 375
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = "Delete Icon"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 24
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 4575
- End
- Attribute VB_Name = "Form4"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Form1.YoconTray1.DeleteIcon CInt(Text1.Text)
- Unload Form4
- End Sub
- Private Sub Command2_Click()
- Unload Form4
- End Sub
- Private Sub Command3_Click()
- Form1.YoconTray1.AboutBox
- End Sub
-