home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Example Of An AimScroller"
- ClientHeight = 735
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 1320
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 735
- ScaleWidth = 1320
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command2
- Caption = "E&xit"
- Height = 375
- Left = 0
- TabIndex = 1
- Top = 360
- Width = 1335
- End
- Begin VB.CommandButton Command1
- Caption = "Send"
- Height = 375
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 1335
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Call Chat_MacroKill
- End Sub
- Private Sub Command2_Click()
- Call Chat_Send("I Exited The Example")
- End Sub
- Private Sub Form_Load()
- Call Chat_Send("Example for you loaded")
- End Sub
-