home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Modify Windows Program Manager"
- ClientHeight = 5940
- ClientLeft = 2940
- ClientTop = 1560
- ClientWidth = 6690
- Height = 6345
- Left = 2880
- LinkTopic = "Form1"
- ScaleHeight = 5940
- ScaleWidth = 6690
- Top = 1215
- Width = 6810
- Begin VB.CommandButton Command2
- Caption = "&Add Item"
- Height = 495
- Left = 3480
- TabIndex = 3
- Top = 1440
- Width = 1335
- End
- Begin VB.TextBox Text2
- Height = 495
- Left = 720
- TabIndex = 2
- Text = "PROJECT1"
- Top = 1440
- Width = 2535
- End
- Begin VB.CommandButton Command1
- Caption = "&Create Group"
- Height = 495
- Left = 3480
- TabIndex = 1
- Top = 480
- Width = 1335
- End
- Begin VB.TextBox Text1
- Height = 495
- Left = 720
- TabIndex = 0
- Text = "SAMPLE"
- Top = 480
- Width = 2535
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
-
- CreateWinProgGroup Text1.Text
- End Sub
- Private Sub Command2_Click()
- ShowWinProgGroup Text1.Text
- CreateWinGroupItem Text1.Text, App.Path & "\Project1.exe", Text2.Text
- End Sub
-