home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form3
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Communications Input"
- ClientHeight = 795
- ClientLeft = 1095
- ClientTop = 4545
- ClientWidth = 4215
- ControlBox = 0 'False
- Height = 1320
- Left = 1035
- LinkMode = 1 'Source
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 795
- ScaleWidth = 4215
- Top = 4080
- Width = 4335
- Begin CommandButton Command2
- Cancel = -1 'True
- Caption = "Close"
- Height = 375
- Left = 2100
- TabIndex = 2
- Top = 420
- Width = 2115
- End
- Begin CommandButton Command1
- Caption = "Send"
- Default = -1 'True
- Height = 375
- Left = 0
- TabIndex = 1
- Top = 420
- Width = 2115
- End
- Begin Label3D Label3D1
- AlignHor = 0 'Left
- AlignVert = 1 'Center
- BackColor = &H00C0C0C0&
- Border = -1 'True
- BorderWidth = 1
- Caption = "Input:"
- Height = 29
- Left = 0
- Raised = 0 'False
- TextShadow = 0 'False
- TextShadowCol = &H00000000&
- Top = 0
- WaveEnabled = 0 'False
- WaveFile = ""
- WaveLoop = 0 'False
- WaveStyle = 0 'Synchronous
- Width = 281
- Begin TextBox Text1
- BackColor = &H0000FFFF&
- Height = 315
- Left = 540
- TabIndex = 0
- Top = 60
- Width = 3615
- End
- End
- Sub Command1_Click ()
- Form1.Picture1.Cls ' Send text + CR/LF out the port
- Form1.Comm1.DataStr = Text1.Text + Chr$(10) + Chr$(13)
- Text1.Text = ""
- End Sub
- Sub Command2_Click ()
- Form1.Comm1.Enable = 0
- Form1.Command2.Enabled = 0
- Form1.Command1.Enabled = 0
- Form1.Command3.Enabled = 1
- Form1.Command4.Enabled = 1
- Form3.Hide
- End Sub
-