Copied form class doesn't work

  • Thread starter Thread starter Larry
  • Start date Start date
L

Larry

I have made a form class, it is an about box.
the form (the form class) resides in a project where I call it from a
test form.
Everything works ok.

But, When I copy the form class (frmabout.vb file) into another
project, and attempt to use it, it doesn't work, the project hangs when
I run it.

I opened up the form (frmabout.vb), the new copy in the new project,
it doesn't have the image in the picture box, that was in the original.

Thanks in Advance,

Laurence Nuttall
Programmer Analyst III
UCLA - Division of Continuing Education
 
I found out what it was,

The main form had its TopMost property set to true,
I changed the TopMost property of the mainform to False,
and it worked ok.
 
Back
Top