limit to objects on froms?

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I am porting an app that I wrote in Evb to .net compact,
and am in the final planning stage. The app asks the
user over 200 clinical specific questions. My plan was
to use panels, but remember hearing somewher that the
compact framework limits the amount of items on one form
to around 100? Anyone shed some light? thanks
md
 
The limit is based largely on available memory. In this case, though, I
wonde why you need controls for every question, rather than some type of
resource file and simply change the text of a single control.
 
Chris Tacke said:
The limit is based largely on available memory.

i ran into the 64k/module limit first

if you want that many components on one form you'll probably have to split
InitializeComponent into pieces. Of course this might make the form designer
unhappy.
 
Back
Top