CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
web_forms
getting_started
data_presentation_controls
dotnetnuke
data_access-sql_server_sql_server_express_and_sqldatasource_control
security
client_side_web_development
novell-support-groupwise-6x-clients
data_access-data_access_and_objectdatasource_control
asp-net_ajax-asp-net_ajax_control_toolkit
novell-support-netware-6x-install-upgrade
asp-net_ajax-asp-net_ajax_discussion_and_suggestions
novell-support-netware-6x-administration-tools
master_pages_themes_and_navigation_controls
configuration_and_deployment
novell-support-netware-client-winnt-2x-xp
novell-support-groupwise-7x-clients
asp-net_ajax-asp-net_ajax_ui
novell-support-edirectory-netware
community-free_for_all
visual_studio_2005
novell-support-groupwise-6x-install-setup
data_access-xml_and_xmldatasource_control
control-cancel
novell-support-iprint
advanced_asp-net-crystal_reports
data_access-xml_web_services
microsoft-public-access
novell-community-chat
state_management
novell-support-netware-6x-abends-hangs
dotnetnuke-getting_started
novell-support-groupwise-6x-gwia
-net_languages-c
novell-support-identity-manager-engine-drivers
novell-support-groupwise-discontinued
advanced_asp-net-architecture
opensuse-org-suse-linux-support-install-configure-administration
dotnetnuke-custom_modules
novell-support-groupwise-7x-install-setup-admin
novell-support-netware-6x-storage-media
novell-support-groupwise-6x-agents
installation_and_setup
data_access-access_databases_and_accessdatasource_control
windows-hosting_open_forum
visual_web_developer_2005_express
novell-support-groupwise-6x-web-access
novell-support-netware-6x-server-backup
macromedia-dreamweaver
novell-support-netware-5x-administration-tools
novell-support-ifolder
novell-support-bordermanager-install-setup
novell-support-imanager
microsoft-public-dotnet-framework-aspnet
novell-support-netware-5x-install-upgrade
novell-support-cluster-services
novell-support-bordermanager-proxies
novell-support-newsflash
advanced_asp-net-sql_server_reporting_services
microsoft-public-dotnet-languages-csharp
web_parts_and_personalization
about_this_site-feedback_on_this_website
ibm-software-websphere-portal-server
novell-support-netware-dns-dhcp
novell-support-zenworks-desktops-4x-app-launcher
-net_languages-visual_basic_-net
advanced_asp-net-custom_server_controls
novell-support-bordermanager-vpn
novell-support-ndps-neps
microsoft-public-sqlserver-programming
novell-support-netware-webserver
community-jobs
novell-support-netware-4x
advanced_asp-net-mobile_and_handheld_devices
internet_explorer_web_controls
novell-support-zenworks-desktops-4x-install-setup
novell-support-edirectory-linux
novell-support-groupwise-7x-gwia
development_tools-web_matrix_general_discussions
microsoft-public-access-formscoding
macromedia-flash
community-announcements
portal_starter_kit
novell-support-zenworks-desktops-4x-management-agent
novell-support-zenworks-patch-management
novell-support-native-file-access
microsoft-public-access-queries
microsoft-public-access-forms
novell-support-groupwise-7x-web-access
novell-support-netware-small-business-6x
data_access-active_directory_and_ldap
novell-support-edirectory-windows
novell-support-groupwise-7x-agents
novell-support-ichain
data_access-oracle
novell-support-zenworks-desktop-management-6x-imaging
novell-support-groupwise-7x-wireless
novell-support-netware-5x-abends-hangs
advanced_asp-net-localization
novell-support-zenworks-desktop-management-7x-imaging-server-nw-win




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > visual_studio.vs_2005_web_application_projects Tags:
Item Type: Date Entered: 9/18/2007 7:57:30 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 5 Views: 33 Favorited: 0 Favorite
6 Items, 1 Pages 1 |< << Go >> >|
"timtom" <>
NewsGroup User
Project has stopped debugging :o)9/18/2007 7:57:30 AM

0

Hi all :o)

I've been happily developing a medium sized ajax enabled web project which has been going great.

This morning I started up my machine to carry on and I have noticed that my debugging has stopped working. It isn't limited to this one project as my other projects are acting the same.

I am running VS2005 on vista

 

 Many thanks

Tim :o)

"lbriner" <>
NewsGroup User
Re: Project has stopped debugging :o)9/18/2007 1:54:49 PM

0

 You need to describe the problem in a bit more detail. What do you mean "my debugging has stopped working"?

The button is disabled? The button is pressed and nothing comes up? The button is pressed but nothing happens in VS? You cannot hit any breakpoints?

 There are a few possibilities (as you can see Wink )

 

Luke
 


Senior Software Developer

*Please mark the thread as Resolved if this answers your question*
"timtom" <>
NewsGroup User
Re: Project has stopped debugging :o)9/19/2007 12:47:04 PM

0

Hi Luke

The problem is that VS doesn't hit breakpoints any more.

It started out just missing out the code within an AJAX update panel - when you set a break point the marker was hollow and it said "This breakpoint will not currently be hit. No executable code is currently loaded at this location".

It then followed that it totally stopped working

 

many thanks

Tim :o)

"lbriner" <>
NewsGroup User
Re: Project has stopped debugging :o)9/19/2007 1:58:12 PM

0

Visual Studio needs to know what libraries link to what source code in order to be able to set breakpoints. If you open a random file in the editor and put in a breakpoint, when you start, it will hollow out because the file is meaningless to VS. If you reference a project then VS can work things out but if you reference a library you need to make sure that a) You reference debug versions of the library because b) You need pdb files which describe which file and line your executable code came from (and how the debugger can work things out).

 If you have old pdb files somewhere then that can cause the confusion (and lines of code not lining up with the breakpoints) and also make it look like the place you are putting a breakpoint in is not being called. Also, if you add new files to a project and the pdb files are not updated then you will not be able to set breakpoints in them.

Basically, check your external libraries are built correctly and the pdb dates are the same as the dll dates. Check you don't have stray pdb files in your project perhaps from an earlier build and make sure you are not using release dlls with the debug pdbs (or vice-versa?).

In my experience it usually a little mess causing a big problem!
 


Senior Software Developer

*Please mark the thread as Resolved if this answers your question*
"timtom" <>
NewsGroup User
Re: Project has stopped debugging :o)9/19/2007 2:27:00 PM

0

Hi - thanks for your reply :o)

I;ve looked in my project and the only pdb file is AjaxControlToolkit.pdb in my bin folder.

It isn't just this project though - none of my project now reach any of the breakpoints - hence I said debugging wasn't working. It doesn't make sense as one day it was working fine then the next time I switched on my machine and started work on the project - it had stopped working.

 

is it worth doing an devenv /reset - or maybe reinstall VS ?

thanks

 

Tim

 

incedently - just created myself a new user in windows and in this profile debugging works correctly as expected - does this point to a corrupted VS install do you think?

"timtom" <>
NewsGroup User
Re: Project has stopped debugging :o)9/19/2007 11:32:55 PM

0

I've just reinstalled VS and now everything is working fine

not sure what happened there but many, many thanks for your help anyway

 

Have fun

 Tim

6 Items, 1 Pages 1 |< << Go >> >|


Free Download:













wal-mart fans (or foes)

bathroom rant

nina reiser's body found by my house

weird stuff

does your office have a name?

blast from the past

backup product for netware??

duckies lending a hand to science

novell feedback - 500 internal server error

thin client?

happy belated birthdays....

email gateway/spam filter

i'm a private dancer

just discovered something

usb memory stick serial number?

replacement unlocked phone

math fail

second job

star trek 7 - the weekend edition

heroes

weather was wild today

python groupwise 7 web services

avast ye scurvy dogs!

the power of community

it's so...almost like open-source

gw8 - eweek product to watch

two kittens

migration

disclaimer/signature

driving lessons

my how times change

draino-liquid plumber

xm radio rant

and so it starts.

does anyone (here) live near brooksville florida

hallo alle miteinander!

happy birthday andy betts!

nokia's profits falling?

more cramer funnies

free netware extended support through 2012

this week

a new personal best

web interface for squid

happy (belated) birthday larry holt!

just wondering

ad no worky

happy birthday paul moynihan!

managing windows desktop?

too hot today

netware 4.11 / 100-user

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT