Click here to Skip to main content
15,890,438 members
Home / Discussions / C#
   

C#

 
AnswerRe: Getting the selected tree node's text? Pin
Mazdak9-Jan-04 9:45
Mazdak9-Jan-04 9:45 
GeneralRe: Getting the selected tree node's text? Pin
Manster9-Jan-04 10:00
Manster9-Jan-04 10:00 
GeneralRe: Getting the selected tree node's text? Pin
Mazdak9-Jan-04 10:17
Mazdak9-Jan-04 10:17 
GeneralDataGrid Insert Row Pin
dubor9-Jan-04 9:31
dubor9-Jan-04 9:31 
GeneralRe: DataGrid Insert Row Pin
Mazdak9-Jan-04 9:41
Mazdak9-Jan-04 9:41 
GeneralFiles and Sockets Pin
Guinness4Strength9-Jan-04 7:51
Guinness4Strength9-Jan-04 7:51 
GeneralRe: Files and Sockets Pin
Kentamanos9-Jan-04 8:08
Kentamanos9-Jan-04 8:08 
GeneralEmbedding referenced DLLs Pin
Den2Fly9-Jan-04 7:27
Den2Fly9-Jan-04 7:27 
GeneralRe: Embedding referenced DLLs Pin
Guillermo Rivero9-Jan-04 7:37
Guillermo Rivero9-Jan-04 7:37 
GeneralRe: Embedding referenced DLLs Pin
Den2Fly9-Jan-04 8:16
Den2Fly9-Jan-04 8:16 
GeneralRe: Embedding referenced DLLs Pin
Guillermo Rivero9-Jan-04 8:33
Guillermo Rivero9-Jan-04 8:33 
GeneralRe: Embedding referenced DLLs Pin
Den2Fly9-Jan-04 9:02
Den2Fly9-Jan-04 9:02 
GeneralRe: Embedding referenced DLLs Pin
Guillermo Rivero9-Jan-04 9:31
Guillermo Rivero9-Jan-04 9:31 
GeneralRe: Embedding referenced DLLs Pin
Den2Fly9-Jan-04 19:32
Den2Fly9-Jan-04 19:32 
GeneralRe: Embedding referenced DLLs Pin
Guillermo Rivero10-Jan-04 7:38
Guillermo Rivero10-Jan-04 7:38 
GeneralRe: Embedding referenced DLLs Pin
Heath Stewart9-Jan-04 12:00
protectorHeath Stewart9-Jan-04 12:00 
This is not practical. The CLR loads Types based on their assembly name (filename, version, culture, and public key token) and loads the Type from the namespace and class name. If you set it as an embedded resource, the CLR can't do its job and JIT'ing your application will fail!

There's nothing wrong with an app that has references to DLLs. Fusion - the part of the Framework that binds assemblies - either pulls DLLs from the application directory or another configured private path (see <probing> in the .NET Framework SDK documentation), or from the global assembly cache (GAC). If the application is deployed from the Internet/intranet using a touchless installation, it will just as easily download the assemblies in the same manner to the temporary assembly cache and load the executable just by clicking a link (or for an embedded user control).

No install is needed (besides the .NET Framework) and you can simply copy files, hence "touchless deployment".

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralThanks for your comment -nt Pin
Den2Fly9-Jan-04 19:32
Den2Fly9-Jan-04 19:32 
GeneralRe: Embedding referenced DLLs Pin
leppie9-Jan-04 13:14
leppie9-Jan-04 13:14 
GeneralRe: Embedding referenced DLLs Pin
Den2Fly9-Jan-04 19:38
Den2Fly9-Jan-04 19:38 
GeneralRe: Embedding referenced DLLs Pin
leppie10-Jan-04 2:34
leppie10-Jan-04 2:34 
GeneralMain Form Pin
Gary Kirkham9-Jan-04 7:21
Gary Kirkham9-Jan-04 7:21 
GeneralRe: Main Form Pin
Alex Korchemniy9-Jan-04 9:16
Alex Korchemniy9-Jan-04 9:16 
GeneralComparing dates Pin
jnngill9-Jan-04 5:57
jnngill9-Jan-04 5:57 
GeneralRe: Comparing dates Pin
TigerNinja_9-Jan-04 6:39
TigerNinja_9-Jan-04 6:39 
GeneralRe: Comparing dates Pin
Richard Deeming9-Jan-04 6:40
mveRichard Deeming9-Jan-04 6:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.