home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form test
- Caption = "Debug Server"
- ClientHeight = 4665
- ClientLeft = 825
- ClientTop = 1515
- ClientWidth = 6540
- Height = 5070
- Left = 765
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 4665
- ScaleWidth = 6540
- Top = 1170
- Visible = 0 'False
- Width = 6660
- Begin VB.CommandButton exec
- Caption = "Execute"
- Height = 735
- Left = 1320
- TabIndex = 1
- Top = 3480
- Width = 3855
- End
- Begin VB.TextBox window
- Height = 2895
- Left = 360
- MultiLine = -1 'True
- TabIndex = 0
- Top = 240
- Width = 5895
- End
- Attribute VB_Name = "test"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub exec_Click()
- Dim testCall As New vbserver.routines
- Dim incoming As String
- Dim outgoing As String
- testCall.DoPost incoming, outgoing
- window = outgoing
- End Sub
-