This is a multi-part message in MIME format.
------=_NextPart_000_0017_01C1F6E8.8A58B740
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
i have an MDI form that has some code at the Form_Load method, but it does
not execute.
I load the form using a module
here is a snip of the code in the module :
Option Explicit
Dim frmMain As New frmMainForm
Sub Main()
Load frmMain
frmMain.Show
End Sub
and here is a snip of the form code
Private Sub Form_Load()
MsgBox "I am here"
End Sub
Ramil G. Sagum
ramil.sagum@u...
There are two ways to write error free programs, only the third one works.
-Linus Torvalds