Slowness when calling forms.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dears,

I am developing an application Pocket.2003 with VS.2005 CF2.
I have a form that contains many components and when I call this form, he is
being long a lot to be presented.
Does some exist trick to reduce the time of presentation of this form?

I am calling this form like this:

fmComercial fComercial = new fmComercial();
fComercial.ShowDialog();
fComercial.Dispose();

Thanks,
[]s,
Alessandro.
 
Thanks,

Alessandro.

Peter Foot said:
There are some general guidelines here:-
http://msdn.microsoft.com/library/d...s/dnnetcomp/html/netcfimproveformloadperf.asp

Without knowing the details of how many controls you have and what you are
using them for, it's difficult to give specific advise.

Peter

--
Peter Foot
Windows Embedded MVP
www.peterfoot.net | www.inthehand.com

Alessandro said:
Dears,

I am developing an application Pocket.2003 with VS.2005 CF2.
I have a form that contains many components and when I call this form, he
is
being long a lot to be presented.
Does some exist trick to reduce the time of presentation of this form?

I am calling this form like this:

fmComercial fComercial = new fmComercial();
fComercial.ShowDialog();
fComercial.Dispose();

Thanks,
[]s,
Alessandro.
 
Wow... that is a significant performance boost. Being too lazy to test for
myself, do you know if this same holds true for PPC2003 and VS2005? If so,
has any ambitous soul written a little add-in to make these changes at the
push of a button?

Thanks for the link!
 
Back
Top