User Control

  • Thread starter Thread starter phil hunt
  • Start date Start date
P

phil hunt

Just looking for some pointers here.

When I drag a Usercontrol to a form, the IDE crash. What are the things I
can do to track down what the problem is. I have all the source codes and
the usercontrol read from a an xml to create form control on the fly.

TIA

Sorry about cross posting
 
Just looking for some pointers here.

When I drag a Usercontrol to a form, the IDE crash. What are the things I
can do to track down what the problem is. I have all the source codes and
the usercontrol read from a an xml to create form control on the fly.

TIA

Sorry about cross posting

In my experience rule 1 is that the user control must have a public
constructor with no parameters.
Other problems I have encountered are when it looks up data in a database
and can't find it (I now put my own refresh function in and call it once
the program is running) or it relies on another control where there is a
problem.
 
Back
Top