Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I have a HeaderFile MyProject_Datas.h
C++
//MyProject_Datas.h 
public ref class MyUsefulDatas 
{ 
	blah...blah...blah... 
	public: static System::Void Item_Name( System::Object^ Sender, System::Windows::Forms::KeyEventArgs^ e) { 
	blah...blah...blah... 
	} 
	public: static System::Void Party_Name( System::Object^ Sender, System::Windows::Forms::KeyEventArgs^ e) { 
	blah...blah...blah... 
	} 
}; 


And now from my Form2 - textBox2 I would like to declare

C#
textBox2->KeyDown += gcnew KeyEventHandler(MyUsefulDatas, &MyUsefulDatas::Party_Name); ???????? 


Iam not getting the above line........

Also I would like to learn same statement, how to use in "delegate" statement like the below.....????

C++
textBox2->KeyDown += delegate { .....???????? }


Thanks...

Edited by Ash (16/04/2012): Changed tags as it looks like the code is not written in standard C++ but one of MS's extensions
Posted
Updated 15-Apr-12 23:36pm
v3

1 solution

After spending my whole day I found the crazier worth of the word, what is "static" ...

Also after removeing the word "static" from the above declaration it works well..
Let it be useful to the searchers....

Thanks...
 
Share this answer
 
Comments
Nelek 16-Apr-12 17:44pm    
Thanks for telling your own solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900