.NET questions??

  • Thread starter Thread starter al
  • Start date Start date
A

al

Greetings,

What are the file included with in the packaging and delployment, as
far as the framework concerns,i.e., are there CLR files included in
the p&dm, if yes, what are they?

What does the .RESX file do, is it the one that includes raw
controls(no code)??
MTIA,
Grawsha
 
Hi Al,
What are the file included with in the packaging and delployment, as
far as the framework concerns,i.e., are there CLR files included in
the p&dm, if yes, what are they?

the CLR is part of the .NET Framework, which must be installed on the target
platform _before_ you install your application. You can not include the
framework directly in your installation, but there's a bootstrapper example
in the MSDN.
What does the .RESX file do, is it the one that includes raw
controls(no code)??

the RESX-Files contain all resources, meaning strings, positions of the
controls, size of the controls and so on. Don't change them, if they're
automatically generated since Visual Studio will overwrite those anyway. You
can also generate your own resx-files.


Regards,
 
* (e-mail address removed) (al) scripsit:
What are the file included with in the packaging and delployment, as
far as the framework concerns,i.e., are there CLR files included in
the p&dm, if yes, what are they?

The CLR is part of the .NET Framework. You can include the .NET
Framework into the setup package. More info:

What does the .RESX file do, is it the one that includes raw
controls(no code)??

<http://msdn.microsoft.com/library/en-us/cpguide/html/cpconcreatingusingresources.asp>
 
Back
Top