Raising Events in .Net
-
Hai , I am Ravindra at present I am learning .net. When I am working with .net controls ,I am not getting all the events loaded . (ie) for suppose if i used button control,i am not getting all the events of that respective control loaded in code page. Please help.... thanx in advance.
-
Hai , I am Ravindra at present I am learning .net. When I am working with .net controls ,I am not getting all the events loaded . (ie) for suppose if i used button control,i am not getting all the events of that respective control loaded in code page. Please help.... thanx in advance.
-
Hai , I am Ravindra at present I am learning .net. When I am working with .net controls ,I am not getting all the events loaded . (ie) for suppose if i used button control,i am not getting all the events of that respective control loaded in code page. Please help.... thanx in advance.
Are you saying that you're overloading events and they are not firing as yuo'd expect ? Which events ? In what circumstances ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Hai , I am Ravindra at present I am learning .net. When I am working with .net controls ,I am not getting all the events loaded . (ie) for suppose if i used button control,i am not getting all the events of that respective control loaded in code page. Please help.... thanx in advance.
ravindradonkada wrote:
When I am working with .net controls ,I am not getting all the events loaded .
If I read you correcly you are expecting all the event handler code to be made in advance? You either need to override the event or dbl-click the event in Visual Studio and it will regester a delegate. If can speak your native language I could translate it using the internet to better understand your problem.
static int Sqrt(int x) { if (x<0) throw new ArgumentOutOfRangeException(); int temp, y=0, b=0x8000, bshft=15, v=x; do { if (v>=(temp=(y<<1)+b<>=1)>0); return y; :omg: