Click here to Skip to main content
15,916,280 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralInvokeMember "Member Not Found" when attempting to set a property Pin
Senkwe Chanda14-Jun-04 23:10
Senkwe Chanda14-Jun-04 23:10 
GeneralRe: InvokeMember "Member Not Found" when attempting to set a property Pin
Serge Lobko-Lobanovsky15-Jun-04 1:27
Serge Lobko-Lobanovsky15-Jun-04 1:27 
GeneralRe: InvokeMember "Member Not Found" when attempting to set a property Pin
Senkwe Chanda15-Jun-04 1:36
Senkwe Chanda15-Jun-04 1:36 
GeneralRe: InvokeMember "Member Not Found" when attempting to set a property Pin
Serge Lobko-Lobanovsky15-Jun-04 1:47
Serge Lobko-Lobanovsky15-Jun-04 1:47 
GeneralRe: InvokeMember "Member Not Found" when attempting to set a property Pin
Senkwe Chanda15-Jun-04 2:19
Senkwe Chanda15-Jun-04 2:19 
GeneralRe: InvokeMember "Member Not Found" when attempting to set a property Pin
Serge Lobko-Lobanovsky15-Jun-04 3:44
Serge Lobko-Lobanovsky15-Jun-04 3:44 
General"Cannot control <service name> service on computer '.' " using ServiceController... Pin
CherezZaboro14-Jun-04 8:35
CherezZaboro14-Jun-04 8:35 
Generalabout CF .net Pin
ting66813-Jun-04 23:54
ting66813-Jun-04 23:54 
I would like to use Reflection to retreve the method in the dll.
Is the compact framework support it?
Because it throw an exception of with this message:

"An unhandled exception of type 'System.NotSupportedException' occurred in mscorlib.dll
Additional information: NotSupportedException"

with executing this code:
// loading a assembly
Assembly assembly = Assembly.LoadFrom("\\Program Files\\addintest\\calculate.dll");

// Invoking a method which is called "sum"
"foreach (Type type in assembly.GetTypes ())
{
object ibaseObject = Activator.CreateInstance (type);
object[] arguments = new object [] {10, 17.11};
object result = type.InvokeMember ("sum",
BindingFlags.Default,
null,
ibaseObject,
arguments);
this.textBox1.Text = result.ToString();
}"

Generalsetup project Pin
Dpriya13-Jun-04 20:46
Dpriya13-Jun-04 20:46 
GeneralRe: setup project Pin
Heath Stewart14-Jun-04 9:22
protectorHeath Stewart14-Jun-04 9:22 
GeneralQuestion about .NET's Setup Project Pin
Rafferty Uy13-Jun-04 15:12
Rafferty Uy13-Jun-04 15:12 
GeneralRe: Question about .NET's Setup Project Pin
Heath Stewart13-Jun-04 19:15
protectorHeath Stewart13-Jun-04 19:15 
GeneralRe: Question about .NET's Setup Project Pin
Rafferty Uy16-Jun-04 13:41
Rafferty Uy16-Jun-04 13:41 
GeneralRe: Question about .NET's Setup Project Pin
Heath Stewart16-Jun-04 13:44
protectorHeath Stewart16-Jun-04 13:44 
GeneralRemoting and security exceptions Pin
Tom Archer13-Jun-04 13:21
Tom Archer13-Jun-04 13:21 
GeneralRe: Remoting and security exceptions Pin
Heath Stewart13-Jun-04 19:19
protectorHeath Stewart13-Jun-04 19:19 
GeneralError looping through Collection Pin
rfox511-Jun-04 8:47
rfox511-Jun-04 8:47 
Generalincremental installation of C# application Pin
ting66810-Jun-04 15:52
ting66810-Jun-04 15:52 
GeneralRe: incremental installation of C# application Pin
O Ismail13-Jun-04 14:52
O Ismail13-Jun-04 14:52 
GeneralRe: incremental installation of C# application Pin
ting66814-Jun-04 15:52
ting66814-Jun-04 15:52 
QuestionStoring Trace/Debug Entries in Memory? Pin
llyal200010-Jun-04 13:48
llyal200010-Jun-04 13:48 
AnswerRe: Storing Trace/Debug Entries in Memory? Pin
Heath Stewart13-Jun-04 19:26
protectorHeath Stewart13-Jun-04 19:26 
GeneralRe: Storing Trace/Debug Entries in Memory? Pin
llyal200013-Jun-04 22:16
llyal200013-Jun-04 22:16 
Generalnewbie trying to register TLB, COM DLL and .NET DLL for Interop Pin
sabushadi10-Jun-04 7:25
sabushadi10-Jun-04 7:25 
GeneralRe: newbie trying to register TLB, COM DLL and .NET DLL for Interop Pin
Heath Stewart13-Jun-04 19:31
protectorHeath Stewart13-Jun-04 19:31 

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.