R
Randy
Hi All,
In a C# Windows project, My clicked event code did not
fire. First I had to actaully declare the method rather
than just adding the code and then in the
InitializeComponent I had to add:
this.button1.Click += new System.EventHandler
(button1_Click);
So that the event would run.
In vb.net this seems to be generated automatically. Do I
have a setting turned off somewhere in Visual Studio?
tia
Randy
In a C# Windows project, My clicked event code did not
fire. First I had to actaully declare the method rather
than just adding the code and then in the
InitializeComponent I had to add:
this.button1.Click += new System.EventHandler
(button1_Click);
So that the event would run.
In vb.net this seems to be generated automatically. Do I
have a setting turned off somewhere in Visual Studio?
tia
Randy