all groups > visual studio .net debugging > september 2007
lost vs debugger keyboard shortcuts
Posted by John A Grandy at 9/27/2007 11:18:29 AM
I've somehow lost my keyboard shortcuts for VS debugging (F5,F10,F11,etc.).
Does anyone know how to reset these?
I've tried :
Tools | Options | Keyboard | Reset
Also tried restarting VS and restarting box.
No luck.
... more >>
Debugging problems in VS 2005 Team Edition for Software Developers on Vista 64bit
Posted by Karl Rhodes at 9/27/2007 8:46:49 AM
Hi all.
I recently rebuilt all the software on my PC and upgraded to Vista
Ulitmate 64bit while I was at it. Since the reinstall, everytime I try
to debug a web application, the studio environment chanes to as it
would when attached to a process, but then drops back to the edit
mode. If I wan... more >>
Throw without parameter...
Posted by AshokG at 9/21/2007 12:00:00 AM
Hi,
If you use just throw without parameter should preserve the complete stack
trace and the exception information.
for example:
1. private void Bar()
2. {
3. try
4. {
5. string s = null;
6. if (s.Length == 0)
7. return;
8. }
9. catch
10. {
11. // do some proce... more >>
step in .NET makes vs2005 freeze when unmanaged code is enabled
Posted by Vinz at 9/18/2007 2:34:34 PM
Hi,
I'm trying to step-in/out on some c# code. That's something that worked well
for months but now it's not working anymore.
The code is a method registered to a context menu Opening event. I have a
breakpoint there that is triggered by VS. Then I try to step-in/out but VS
freeze using ... more >>
debugging a remote site
Posted by BrassicaNigra at 9/17/2007 9:42:00 PM
I am working in a development environment that has a server running small
business server that hosts a site I would like to debug directly. I need to
use the server as a development environment and would like to use my
workstation (with VS2005) to work directly with the site on the server. I... more >>
Edit and Continue - Web App, 64-bit, Vista
Posted by James Koch at 9/14/2007 8:16:26 AM
I just got up and running on some new hardware and for the life of me
I can't get Edit and Continue to work.
I've seen some conflicting comments/opinions on whether or not 64-bit
E&C is possible at all, and none have been specific about things like
web projects and hosting them in IIS vs. the ... more >>
URGENT~ Debug the class library in web service
Posted by James Wong at 9/14/2007 12:00:00 AM
Hi,
I used Visual Studio 2005 Team Edition before, but I change the other
version (Visual Studio 2005 Prpfessional Edition) now.
My web service refer a class library. When I debug my source code, it cannot
enter this class library's source code now.
e.g.
Public Function gSum(ByVal intX ... more >>
stored procedure debugging, watching temp tables
Posted by jokiz at 9/13/2007 2:16:52 AM
i wish there's this feature where you can just issue a quick watch on
temp tables and you'll see the contents in gridview (probably there is
but i haven't seen it).
so how do you guys go about looking at a temp table contents created
inside a proc with vs 2005?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Cannot evaluate expression. WTF?
Posted by R=FCdiger_Klaehn at 9/12/2007 2:47:14 AM
Hi everybody,
I have a major problem when working with VS.NET 2005 debugger on large
projects. Very often, the debugger is not able to evaluate any watch
expressions for no apparent reasons.
The code is compiled in debug mode, and all I want to do is to
evaluate some expression at a normal ... more >>
Updating PDB files with new source code location
Posted by Hagay Lupesko at 9/11/2007 3:20:41 PM
Hi all,
I need to find a way to update source files location within PDB files
so that at debug time the updated sources will be used and not the
'old' sources
I went over DIA and it seems it allows querying only, but not
updating.
Can anyone recommend a way to do it?
Thanks, Hagay
... more >>
Figuring out if app is running in Debug mode at runtime
Posted by michael at 9/11/2007 7:46:07 AM
Is there a way to determine the "Solution Configuration" (Debug/Release) at
runtime? I use Me.DesignMode to determine if the component is currently in
the designer but I'm looking for similar functionality the tell me at runtime
if it's running in the debugger or release mode.
--
Michael... more >>
Config corruption?
Posted by Alec MacLean at 9/7/2007 5:04:09 PM
Hi,
I have a Web Application Project solution which has multiple sub-projects
that are configured to use nested master pages.
I have now got a problem with trying to debug (step-through) the solution.
The Visual Studio IDE freezes (non-responsive) and the IE browser just spins
waiting f... more >>
|