Debugger only stops on error but doesn't mark erroneous line
Fri, 28 Sep 2007 22:09:07 +0200
Hi@all!
I have the following problem: I'm using VS 2005 SP1 under XP SP2. I'm
developing a lot of projects on different workstations with the same
configuration without problems. On my laptop I started debugging and if an
error occured the debugger halted and marked the line yellow with the error
descript ...
|
Debugging in VS.NET 2005 causes account lock-out
Fri, 28 Sep 2007 01:41:00 -0700
Hello,
Recently I installed the IIS Lockdown Tool.
I don't know if it's related to that, but when I try to debug an application
that is using my IIS on W2000 workstation, my account gets locked out.
The event viewer is logging the following error:
Logon Failure:
Reason: Unknown user name or bad passw ...
|
Debug.Evaluate without invoking project in debug mode
Thu, 27 Sep 2007 13:28:34 -0700
Within the VS Command Window, how to evaluate an expression without invoking
the project in debug mode ?
So, these type of commands
Debug.Print string.Format("Hi {0}","Bye")
Debug.Evaluate 38*25
I'm finding these trigger a build of my project and an invocation of the
project in debug mode ...
|
lost vs debugger keyboard shortcuts
Thu, 27 Sep 2007 11:18:29 -0700
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.
...
|
Debugging problems in VS 2005 Team Edition for Software Developers on Vista 64bit
Thu, 27 Sep 2007 08:46:49 -0700
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 want to debug my app ...
|
cant launch my application in VS2005
Thu, 27 Sep 2007 16:20:35 +0200
Hi everybody,
i m using VS2005 with 2 VS2002 applications. VS2005 has translate it. But i
can't launch my application with F5 or Ctrl F5.
Only one works, the one doesnt use Crystal from VS2002
The errors sounds like :
1st message
can't start listening on the 1040 port by the aspnet development server
...
|
Re: Step into does not work
Wed, 26 Sep 2007 05:58:02 -0700
I found the solution. It took me 2 steps:
- I had a pc with XP on it where the same code did work (so step by step
executes one line and jumps to the next one). So I decided to copy all
prefences I could set in Tools -->Options. And with all I meant all, not just
the one corresponding the debug/build secion. ...
|
|
|
xxx.vshost.exe consuming massive memory (outofmemory exception)
Wed, 26 Sep 2007 00:16:01 -0700
I have a application written in VB using VS2005 SP1. The application has been
running extremely well for about a year now when suddenly I started receiving
"OutOfMemory" exceptions on startup. What I have also seen is that while
debugging the application, massive amounts of memory is been consumed
specifcall ...
|
Re: Step into does not work
Fri, 21 Sep 2007 08:08:05 -0700
reset does not work
it looks like it steps to the assembly:
00000000 push esi
00000001 push eax
00000002 mov esi,edx
00000004 test ecx,ecx
00000006 je 002C5CF0
0000000c mov eax,dword ptr [ecx]
whta I done now I don't know but i found out tat the n ...
|
Throw without parameter...
Fri, 21 Sep 2007 12:36:17 +0530
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 processing...
12. ...
|