GFLRC/Sender/Testfrm.frm

VERSION 5.00
Begin VB.Form Testfrm
   Caption         =   "GFLRC Test"
   ClientHeight    =   3075
   ClientLeft      =   60
   ClientTop       =   465
   ClientWidth     =   4695
   LinkTopic       =   "Form1"
   ScaleHeight     =   3075
   ScaleWidth      =   4695
   StartUpPosition =   3 'Windows‑Standard
   Begin VB.CommandButton Command1
      Caption         =   "Yeah, send this right now!"
      Height          =   315
      Left            =   2520
      TabIndex        =   1
      Top             =   2700
      Width           =   2115
   End
   Begin VB.TextBox Text1
      Height          =   285
      Left            =   120
      TabIndex        =   0
      Top             =   2700
      Width           =   2295
   End
End
Attribute VB_Name = "Testfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
    'on error resume next
    Call GFLRC_Senderfrm.GFLRC_SendMessage(Text1.Text, "GFLRC Test Port")
End Sub


[END OF FILE]