vbAccelerator - Contents of code file: mMain.basAttribute VB_Name = "mMain"
Option Explicit
Private Declare Sub InitCommonControls Lib "comctl32.dll" ()
Public Sub Main()
' we need to call InitCommonControls before we
' can use the alpha support in the ImageList.
' Note this will only work when the control is
' being used as an OCX
InitCommonControls
' now start the application
On Error GoTo 0
frmIlsTest.Show
End Sub
|