Problem Debugging

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have these lines in a button click

string string1 = textBox3.Text;
string string2 = textBox4.Text;
MessageBox.Show("here now");

at the first line I have set up a break point. When I run the application,
it does show the message box but it does not stop at the break point (set on
the first line).

I have no clue whats going on...
 
Back
Top