Question on my 1st Windows Application in C#
I wrote a simple tool in VB6 many moons ago. And decided to get my feet wet in C# .NET by recreating said tool. Only, 5 min in i'm stuck.... I simply am trying to fire an event when someone clicks a textbox on my form.
private void textBox1_Click(object sender, EventArgs e) { MessageBox.Show("test"); }
This event wont fire for some reason.
0 comments:
Post a Comment