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...

Re: Problem Debugging by Tim

Tim
Wed Aug 17 10:49:55 CDT 2005

What is your build configuration? Make sure that you're set on "Debug".

--
Tim Wilson
.Net Compact Framework MVP

"dotnettester" <dotnettester@discussions.microsoft.com> wrote in message
news:1B94D6FC-AB85-41C9-8D1B-FE2245577855@microsoft.com...
> 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...
>