473,387 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Q: visual studio .net

Hello,
I am using visual studio .net 2003 and I am trying to debug the application,
it does not seem that it hits the break point. I added a simple button and a
on click procedure but break point does not stop, any idea what might be the
problem? Is there a group for visual studio?
Thanks,
Jim.

Nov 19 '05 #1
8 915
microsoft.public.vstudio.general.

However, I'll take the liberty of giving you an answer right away:

First, are you sure that your configuration is set to Debug rather than
Release?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
Hello,
I am using visual studio .net 2003 and I am trying to debug the
application,
it does not seem that it hits the break point. I added a simple button and
a
on click procedure but break point does not stop, any idea what might be
the
problem? Is there a group for visual studio?
Thanks,
Jim.

Nov 19 '05 #2
I was able to debug until I added a login page and another aspx page. I did
not release it yet.

"Kevin Spencer" wrote:
microsoft.public.vstudio.general.

However, I'll take the liberty of giving you an answer right away:

First, are you sure that your configuration is set to Debug rather than
Release?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
Hello,
I am using visual studio .net 2003 and I am trying to debug the
application,
it does not seem that it hits the break point. I added a simple button and
a
on click procedure but break point does not stop, any idea what might be
the
problem? Is there a group for visual studio?
Thanks,
Jim.


Nov 19 '05 #3
Hi Jim,

I was referring to the Build Configuration. There should be a combo box at
the top which says either "Release" or "Debug."

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:7A**********************************@microsof t.com...
I was able to debug until I added a login page and another aspx page. I did
not release it yet.

"Kevin Spencer" wrote:
microsoft.public.vstudio.general.

However, I'll take the liberty of giving you an answer right away:

First, are you sure that your configuration is set to Debug rather than
Release?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
> Hello,
> I am using visual studio .net 2003 and I am trying to debug the
> application,
> it does not seem that it hits the break point. I added a simple button
> and
> a
> on click procedure but break point does not stop, any idea what might
> be
> the
> problem? Is there a group for visual studio?
> Thanks,
> Jim.
>


Nov 19 '05 #4
Kevin, thanks for the reply.
Break point in page_load works fine, and I see at the top, I am in Debug mode.

I added a button to my application and double click on it and created this
function.
Now I am putting break point at a=a+1 and clicking button1, it does not stop
there.

private void Button1_Click(object sender, System.EventArgs e)
{
int a=1;
a=a+1;
}
What else should I check?
Thanks,
Jim.
"Kevin Spencer" wrote:
Hi Jim,

I was referring to the Build Configuration. There should be a combo box at
the top which says either "Release" or "Debug."

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:7A**********************************@microsof t.com...
I was able to debug until I added a login page and another aspx page. I did
not release it yet.

"Kevin Spencer" wrote:
microsoft.public.vstudio.general.

However, I'll take the liberty of giving you an answer right away:

First, are you sure that your configuration is set to Debug rather than
Release?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
> Hello,
> I am using visual studio .net 2003 and I am trying to debug the
> application,
> it does not seem that it hits the break point. I added a simple button
> and
> a
> on click procedure but break point does not stop, any idea what might
> be
> the
> problem? Is there a group for visual studio?
> Thanks,
> Jim.
>


Nov 19 '05 #5
Hello,
It des not seem that it is a debug issue, my click event is not working
because the following does not print.

private void Button1_Click(object sender, System.EventArgs e)
{
Response.Write( "Button1_Click" );
}
I created this event by double clicking on button1, what is wrong?
Thanks,
Jim.
"Kevin Spencer" wrote:
Hi Jim,

I was referring to the Build Configuration. There should be a combo box at
the top which says either "Release" or "Debug."

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:7A**********************************@microsof t.com...
I was able to debug until I added a login page and another aspx page. I did
not release it yet.

"Kevin Spencer" wrote:
microsoft.public.vstudio.general.

However, I'll take the liberty of giving you an answer right away:

First, are you sure that your configuration is set to Debug rather than
Release?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
> Hello,
> I am using visual studio .net 2003 and I am trying to debug the
> application,
> it does not seem that it hits the break point. I added a simple button
> and
> a
> on click procedure but break point does not stop, any idea what might
> be
> the
> problem? Is there a group for visual studio?
> Thanks,
> Jim.
>


Nov 19 '05 #6
Make sure your event handler is wirred up to the button.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
Kevin, thanks for the reply.
Break point in page_load works fine, and I see at the top, I am in Debug
mode.

I added a button to my application and double click on it and created this
function.
Now I am putting break point at a=a+1 and clicking button1, it does not
stop
there.

private void Button1_Click(object sender, System.EventArgs e)
{
int a=1;
a=a+1;
}
What else should I check?
Thanks,
Jim.
"Kevin Spencer" wrote:
Hi Jim,

I was referring to the Build Configuration. There should be a combo box
at
the top which says either "Release" or "Debug."

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:7A**********************************@microsof t.com...
>I was able to debug until I added a login page and another aspx page. I
>did
> not release it yet.
>
> "Kevin Spencer" wrote:
>
>> microsoft.public.vstudio.general.
>>
>> However, I'll take the liberty of giving you an answer right away:
>>
>> First, are you sure that your configuration is set to Debug rather
>> than
>> Release?
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> What You Seek Is What You Get.
>>
>> "JIM.H." <JI**@discussions.microsoft.com> wrote in message
>> news:CE**********************************@microsof t.com...
>> > Hello,
>> > I am using visual studio .net 2003 and I am trying to debug the
>> > application,
>> > it does not seem that it hits the break point. I added a simple
>> > button
>> > and
>> > a
>> > on click procedure but break point does not stop, any idea what
>> > might
>> > be
>> > the
>> > problem? Is there a group for visual studio?
>> > Thanks,
>> > Jim.
>> >
>>
>>
>>


Nov 19 '05 #7
Thanks. I did not have definitions in #region Web Form Designer. working fine
now.
Thanks,
jim.
"Kevin Spencer" wrote:
Make sure your event handler is wirred up to the button.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
Kevin, thanks for the reply.
Break point in page_load works fine, and I see at the top, I am in Debug
mode.

I added a button to my application and double click on it and created this
function.
Now I am putting break point at a=a+1 and clicking button1, it does not
stop
there.

private void Button1_Click(object sender, System.EventArgs e)
{
int a=1;
a=a+1;
}
What else should I check?
Thanks,
Jim.
"Kevin Spencer" wrote:
Hi Jim,

I was referring to the Build Configuration. There should be a combo box
at
the top which says either "Release" or "Debug."

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:7A**********************************@microsof t.com...
>I was able to debug until I added a login page and another aspx page. I
>did
> not release it yet.
>
> "Kevin Spencer" wrote:
>
>> microsoft.public.vstudio.general.
>>
>> However, I'll take the liberty of giving you an answer right away:
>>
>> First, are you sure that your configuration is set to Debug rather
>> than
>> Release?
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> What You Seek Is What You Get.
>>
>> "JIM.H." <JI**@discussions.microsoft.com> wrote in message
>> news:CE**********************************@microsof t.com...
>> > Hello,
>> > I am using visual studio .net 2003 and I am trying to debug the
>> > application,
>> > it does not seem that it hits the break point. I added a simple
>> > button
>> > and
>> > a
>> > on click procedure but break point does not stop, any idea what
>> > might
>> > be
>> > the
>> > problem? Is there a group for visual studio?
>> > Thanks,
>> > Jim.
>> >
>>
>>
>>


Nov 19 '05 #8
Aha! Glad to hear it.

--

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:E9**********************************@microsof t.com...
Thanks. I did not have definitions in #region Web Form Designer. working
fine
now.
Thanks,
jim.
"Kevin Spencer" wrote:
Make sure your event handler is wirred up to the button.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"JIM.H." <JI**@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
> Kevin, thanks for the reply.
> Break point in page_load works fine, and I see at the top, I am in
> Debug
> mode.
>
> I added a button to my application and double click on it and created
> this
> function.
> Now I am putting break point at a=a+1 and clicking button1, it does not
> stop
> there.
>
> private void Button1_Click(object sender, System.EventArgs e)
> {
> int a=1;
> a=a+1;
> }
> What else should I check?
> Thanks,
> Jim.
>
>
> "Kevin Spencer" wrote:
>
>> Hi Jim,
>>
>> I was referring to the Build Configuration. There should be a combo
>> box
>> at
>> the top which says either "Release" or "Debug."
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> What You Seek Is What You Get.
>>
>> "JIM.H." <JI**@discussions.microsoft.com> wrote in message
>> news:7A**********************************@microsof t.com...
>> >I was able to debug until I added a login page and another aspx page.
>> >I
>> >did
>> > not release it yet.
>> >
>> > "Kevin Spencer" wrote:
>> >
>> >> microsoft.public.vstudio.general.
>> >>
>> >> However, I'll take the liberty of giving you an answer right away:
>> >>
>> >> First, are you sure that your configuration is set to Debug rather
>> >> than
>> >> Release?
>> >>
>> >> --
>> >> HTH,
>> >>
>> >> Kevin Spencer
>> >> Microsoft MVP
>> >> ..Net Developer
>> >> What You Seek Is What You Get.
>> >>
>> >> "JIM.H." <JI**@discussions.microsoft.com> wrote in message
>> >> news:CE**********************************@microsof t.com...
>> >> > Hello,
>> >> > I am using visual studio .net 2003 and I am trying to debug the
>> >> > application,
>> >> > it does not seem that it hits the break point. I added a simple
>> >> > button
>> >> > and
>> >> > a
>> >> > on click procedure but break point does not stop, any idea what
>> >> > might
>> >> > be
>> >> > the
>> >> > problem? Is there a group for visual studio?
>> >> > Thanks,
>> >> > Jim.
>> >> >
>> >>
>> >>
>> >>
>>
>>
>>


Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: angelag | last post by:
I am currently taking a college course in Visual Basic.Net and I am a beginner. I bought Visual Studio.Net 2003 to do my homework at home. I built my first project and e-mailed it to myself at...
0
by: Tom Lee | last post by:
Hi, I'm new to .NET 2003 compiler. When I tried to compile my program using DEBUG mode, I got the following errors in the C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7 \include\xdebug...
0
by: gerd | last post by:
Hello, I want to port an MFC Application from Visual Studio 6 MFC application to Visual C++ 2005 express edition beta. While building i get following error: ------ Build started: Project:...
0
by: gerd | last post by:
Hello, I want to port an MFC Application from Visual Studio 6 MFC application to Visual C++ 2005 express edition beta. While building i get following error: ------ Build started: Project:...
1
by: Daniel A. Thomas | last post by:
License required Maybe you don't have this but have one of the products that qualifies for the upgrade such as ... Visual Studio .NET 2003 Professional Visual Studio .NET 2003 Professional...
1
by: johnlim20088 | last post by:
Hi, Currently I have 6 web projects located in Visual Source Safe 6.0, as usual, everytime I will open solution file located in my local computer, connected to source safe, then check out/check in...
0
by: marathoner | last post by:
I am currently migrating my Visual C++ 6.0 applications to Visual Studio 2005. I am getting compiler errors involving the VS2005's platform SDK. When I removed directory references to that SDK,...
2
by: Cramer | last post by:
So, what is the relationship between Visual Studio and Visual Web Developer. I find a lot of documentation on MSDN that presents Visual Web Developer as it's own stand-alone product (which I'd...
0
jwwicks
by: jwwicks | last post by:
Introduction This tutorial describes how to use Visual Studio to create a new C++ program, compile/run a program, resume work on an existing program and debug a program. It is aimed at the...
3
by: Johnson | last post by:
I'm not sure if this is an IIS 5.1 issue or ASP.NET issue, or Visual Studio 2008 issue -- thus posting to 3 groups. Please don't be offended. The problem I'm encountering is that Visual Studio...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.