Type Is Not Defined Error

  • Thread starter Michael Erlewine
  • 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
 
H

Herfried K. Wagner [MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top