Type Is Not Defined Error

  • Thread starter Thread starter Michael Erlewine
  • Start date Start date
M

Michael Erlewine

I am getting BUILD ERRORS like"Type 'Introduction' is not Defined."

'Introduction is the name of a form I am using.

I am trying to load this form from the main form.

The code looks like this:

Dim f3 As New Introduction()
F3.ShowDialog()
f3.dispose()


I am getting BUILD ERRORS like"Type 'Introduction' is not Defined."
How to I define the type.... for the FORM "Introduction"

Thanks,

Michael Erlewine
 
Michael,

Michael Erlewine said:
I am getting BUILD ERRORS like"Type 'Introduction' is not Defined."

'Introduction is the name of a form I am using.

I am trying to load this form from the main form.

The code looks like this:

Dim f3 As New Introduction()
F3.ShowDialog()
f3.dispose()


I am getting BUILD ERRORS like"Type 'Introduction' is not Defined."
How to I define the type.... for the FORM "Introduction"

Set the form's '(Name)' property to 'Introduction' in its properties window
at design time.
 
Back
Top