vbAccelerator - Contents of code file: mMain.bas

Attribute VB_Name = "mMain"
Option Explicit

Public Sub Main()
   Load frmEvents
   frmEvents.Show
   frmEvents.Refresh
   
   Dim f As New frmTestTreeView
   f.Show
   
End Sub