Hi,

In my winform application, when I try to launch any form first time,
it takes long time, but for the next time it gets launched in a very
less time.

One reason I know is MSIl is converted into m/c code(JIT compilation).
I cannot use ngen(it requires admin rights on the client m/c), so is
there is any way by which I can skip this MSIL -> m/c code
compilation?

(VB compiles application specific to processor(e.g. Pentium), in .Net
JIT compiles specific to processor type(e.g. Pentium1, Pentium 2
etc..) But it comes at the cost of first time loading. For my
application, option provided by VB is fine(compile application
targeting a processor).

Is this option available in .Net?

Pls help.

Thanx and Regards,
Atul

Re: How to speed-up winform for the first time launch by jdmartinez

jdmartinez
Wed Nov 24 13:49:41 CST 2004

Check out this linker from remotesoft

http://www.remotesoft.com/linker/

Joel Martinez
http://www.onetug.org - Orlando .NET User Group
http://www.codecube.net - blog

atul.chivate@itb-india.com (Atul) wrote in message news:<f5733e70.0411240607.46c09fb@posting.google.com>...
> Hi,
>
> In my winform application, when I try to launch any form first time,
> it takes long time, but for the next time it gets launched in a very
> less time.
>
> One reason I know is MSIl is converted into m/c code(JIT compilation).
> I cannot use ngen(it requires admin rights on the client m/c), so is
> there is any way by which I can skip this MSIL -> m/c code
> compilation?
>
> (VB compiles application specific to processor(e.g. Pentium), in .Net
> JIT compiles specific to processor type(e.g. Pentium1, Pentium 2
> etc..) But it comes at the cost of first time loading. For my
> application, option provided by VB is fine(compile application
> targeting a processor).
>
> Is this option available in .Net?
>
> Pls help.
>
> Thanx and Regards,
> Atul