debugging vs real-time rpc/unmanaged
Wed, 19 Sep 2007 05:49:51 -0700
Hi all,
I'm wondering of somebody could help me. I've developped an c# app
that uses unmanaged code that communicates rpc.
Problem is that the app works perfect in visual studio .net 2005,
including debugging etc. Only if i run the executable that's generated
without vs.net the program behaves different. Fi ...
|
step in .NET makes vs2005 freeze when unmanaged code is enabled
Tue, 18 Sep 2007 14:34:34 +0200
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 100% cpu and I ha ...
|
debugging a remote site
Mon, 17 Sep 2007 21:42:00 -0700
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
can map a driv ...
|
debugg in VS2005 installed on Vista Home Premium
Mon, 17 Sep 2007 15:37:47 +0300
I have Visual Studion 2005 Team Edition installed on a Vista Home Premium
Operating system.
I develop a simple web service application and put a breakpoint in it.
My big suprise was that the application is not stopping at debbug point when
I start it with F5 key.
Does anyone know what's the problem with t ...
|
Edit and Continue - Web App, 64-bit, Vista
Fri, 14 Sep 2007 08:16:26 -0700
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 default Visual St ...
|
URGENT~ Debug the class library in web service
Fri, 14 Sep 2007 15:49:49 +0800
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 As Integer, ByVal ...
|
Restarting aspnet_wp process to re-enable debugging
Thu, 13 Sep 2007 12:46:12 +0100
Hi,
I've previously posted on the subject of having a problem with VS 2005/IIS
not loading the updated PDB files for a web app solution that uses multiple
sub-projects.
(This is a 2.0 framework solution)
I ran through several mechanisms for trying to get this all working,
including removing and re-loadin ...
|
|
|
stored procedure debugging, watching temp tables
Thu, 13 Sep 2007 02:16:52 -0700
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?
...
|
RE: Figuring out if app is running in Debug mode at runtime
Wed, 12 Sep 2007 21:22:00 -0700
Hi,
Try this code :
public static bool IsDebugMode = false;
if (System.Diagnostics.Debugger.IsAttached) IsDebugMode = true;
--
Hope this helps.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.
"michael" wrote:
> Is there a way to determine the "Solution Configuration" (Debug/Release) at
> runtim ...
|
Breakpoint ignored
Wed, 12 Sep 2007 18:45:09 -0000
I have an asp.net application that has a gridview hooked up to an
objectdatasource which has a selectmethod named getTitles. There is an
error in an sql statement there which is easy enough to fix. But the
odd thing is the little exception assistant window shows up and then
vanishes after about two seconds. Also ...
|