Click here to Skip to main content
15,901,001 members
Home / Discussions / C#
   

C#

 
GeneralRe: Asynchornous error Pin
Luc Pattyn7-Jul-07 4:08
sitebuilderLuc Pattyn7-Jul-07 4:08 
Questionffmpeg and asp.net Pin
mfmaneef6-Jul-07 8:31
mfmaneef6-Jul-07 8:31 
QuestionTrying this again... (Import method from DLL) Pin
Azad Giordano Ratzki6-Jul-07 8:23
professionalAzad Giordano Ratzki6-Jul-07 8:23 
GeneralRe: Trying this again... (Import method from DLL) Pin
Guffa6-Jul-07 9:00
Guffa6-Jul-07 9:00 
AnswerRe: Trying this again... (Import method from DLL) Pin
Leslie Sanford6-Jul-07 9:24
Leslie Sanford6-Jul-07 9:24 
AnswerRe: Trying this again... (Import method from DLL) Pin
Not Active6-Jul-07 9:29
mentorNot Active6-Jul-07 9:29 
GeneralRe: Trying this again... (Import method from DLL) Pin
Azad Giordano Ratzki6-Jul-07 12:42
professionalAzad Giordano Ratzki6-Jul-07 12:42 
GeneralRe: Trying this again... (Import method from DLL) Pin
Luc Pattyn6-Jul-07 16:20
sitebuilderLuc Pattyn6-Jul-07 16:20 
Hi,

some info, not a full solution tho:
- you need DllImport to call unmanaged (i.e. native) code (that resides in a dll)
from managed code (say C# that resides in an exe or another dll), and nowhere else;
if everything is managed, then NO DllImport.
- you can distribute managed code over as many DLL files you want, it does not
really matter; if it needs to bind at run-time (as with reflection), then your
code must find the right DLL; finding the class and member/method inside it
is independent of the EXE/DLL where they reside.

SO my suggestion is: first try to have an EXE perform reflection on itself;
only when you get that working, move the reflecting code to another DLL and
make it work again.

Smile | :)


QuestionDelegates in c# Pin
Malayil alex6-Jul-07 8:00
Malayil alex6-Jul-07 8:00 
AnswerRe: Delegates in c# Pin
led mike6-Jul-07 8:03
led mike6-Jul-07 8:03 
AnswerRe: Delegates in c# Pin
Martin#6-Jul-07 8:04
Martin#6-Jul-07 8:04 
AnswerRe: Delegates in c# Pin
Luc Pattyn6-Jul-07 16:26
sitebuilderLuc Pattyn6-Jul-07 16:26 
AnswerRe: Delegates in c# Pin
Sathesh Sakthivel6-Jul-07 16:59
Sathesh Sakthivel6-Jul-07 16:59 
GeneralRe: Delegates in c# Pin
Not Active7-Jul-07 2:40
mentorNot Active7-Jul-07 2:40 
QuestionHelllp!!! :-) About using a method from a Dll... Pin
Azad Giordano Ratzki6-Jul-07 6:37
professionalAzad Giordano Ratzki6-Jul-07 6:37 
AnswerRe: Helllp!!! :-) About using a method from a Dll... Pin
led mike6-Jul-07 6:46
led mike6-Jul-07 6:46 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Azad Giordano Ratzki6-Jul-07 6:53
professionalAzad Giordano Ratzki6-Jul-07 6:53 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Not Active6-Jul-07 7:45
mentorNot Active6-Jul-07 7:45 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
led mike6-Jul-07 7:45
led mike6-Jul-07 7:45 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Azad Giordano Ratzki6-Jul-07 8:09
professionalAzad Giordano Ratzki6-Jul-07 8:09 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
led mike6-Jul-07 8:21
led mike6-Jul-07 8:21 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Azad Giordano Ratzki6-Jul-07 8:27
professionalAzad Giordano Ratzki6-Jul-07 8:27 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
led mike6-Jul-07 8:36
led mike6-Jul-07 8:36 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Not Active6-Jul-07 9:24
mentorNot Active6-Jul-07 9:24 
GeneralRe: Helllp!!! :-) About using a method from a Dll... Pin
Martin#6-Jul-07 20:57
Martin#6-Jul-07 20:57 

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.