vbAccelerator - Contents of code file: frmTest.frm

VERSION 5.00
Begin VB.Form frmTraceSample 
   Caption         =   "Tracing Sample"
   ClientHeight    =   4485
   ClientLeft      =   3345
   ClientTop       =   2130
   ClientWidth     =   6480
   BeginProperty Font 
      Name            =   "Tahoma"
      Size            =   8.25
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "frmTest.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   4485
   ScaleWidth      =   6480
   Begin VB.CommandButton cmdNew 
      Caption         =   "&New..."
      Height          =   555
      Left            =   4980
      TabIndex        =   3
      Top             =   840
      Width           =   1275
   End
   Begin VB.CommandButton cmdAssert 
      Caption         =   "&Assert..."
      Height          =   555
      Left            =   4980
      TabIndex        =   0
      Top             =   180
      Width           =   1275
   End
   Begin VB.Label lblInfo 
      Caption         =   $"frmTest.frx":1272
      Height          =   975
      Index           =   2
      Left            =   240
      TabIndex        =   4
      Top             =   3000
      Width           =   4515
   End
   Begin VB.Label lblInfo 
      Caption         =   $"frmTest.frx":133A
      Height          =   795
      Index           =   1
      Left            =   240
      TabIndex        =   2
      Top             =   1680
      Width           =   4515
   End
   Begin VB.Label lblInfo 
      Caption         =   $"frmTest.frx":13D9
      Height          =   1335
      Index           =   0
      Left            =   240
      TabIndex        =   1
      Top             =   180
      Width           =   4515
   End
End
Attribute VB_Name = "frmTraceSample"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub cmdAssert_Click()
   Assert False, "Command1 Clicked", ObjPtr(Me)
End Sub

Private Sub cmdNew_Click()
   Dim f As New frmTraceSample
   f.Show
End Sub

Private Sub Form_Initialize()
   Trace "Form1_Initialize", ObjPtr(Me)
End Sub

Private Sub Form_Load()
   Trace "Form1_Load", ObjPtr(Me)
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y
 As Single)
   Trace "Form1_MouseMove", Button, Shift, X, Y, ObjPtr(Me)
End Sub

Private Sub Form_Terminate()
   Trace "Form1_Terminate", ObjPtr(Me)
End Sub

Private Sub Form_Unload(Cancel As Integer)
   Trace "Form1_Unload", ObjPtr(Me)
End Sub