home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / WIN / Programa / VBINTRNT.ZIP / VBINTRNT.EXE / TEST.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-05-31  |  1.2 KB  |  43 lines

  1. VERSION 4.00
  2. Begin VB.Form test 
  3.    Caption         =   "Debug Server"
  4.    ClientHeight    =   4665
  5.    ClientLeft      =   825
  6.    ClientTop       =   1515
  7.    ClientWidth     =   6540
  8.    Height          =   5070
  9.    Left            =   765
  10.    LinkTopic       =   "Form1"
  11.    LockControls    =   -1  'True
  12.    ScaleHeight     =   4665
  13.    ScaleWidth      =   6540
  14.    Top             =   1170
  15.    Visible         =   0   'False
  16.    Width           =   6660
  17.    Begin VB.CommandButton exec 
  18.       Caption         =   "Execute"
  19.       Height          =   735
  20.       Left            =   1320
  21.       TabIndex        =   1
  22.       Top             =   3480
  23.       Width           =   3855
  24.    End
  25.    Begin VB.TextBox window 
  26.       Height          =   2895
  27.       Left            =   360
  28.       MultiLine       =   -1  'True
  29.       TabIndex        =   0
  30.       Top             =   240
  31.       Width           =   5895
  32.    End
  33. Attribute VB_Name = "test"
  34. Attribute VB_Creatable = False
  35. Attribute VB_Exposed = False
  36. Private Sub exec_Click()
  37. Dim testCall As New vbserver.routines
  38. Dim incoming As String
  39. Dim outgoing As String
  40. testCall.DoPost incoming, outgoing
  41. window = outgoing
  42. End Sub
  43.