microsoft.public.vsnet.debugging
Up to: Discussion Lists

  • RSS Syndication
  • Post a new message to this list...
    Latest Discussions Archive
    build error (4 replies, VIP)
    microsoft.public.vsnet.debugging
    I am new to .net. The new IDE gives me a lot of headache with the build errors. Where can I get additional help on these error? For example, the following one seems easy to grasp, but I still have no clue how to fix it. The sample I tried copy is in vb.net as: dr(i) dtOld.rows(y).items(i).tostring. DataRow dr dt.NewRow; dr(i) ds.Tables[0].Rows(y).Items(i).ToString; 'dr' denotes a 'variable' where ...
    Cryptographic service provider (CSP) could not be found for this algorithm. (6 replies, VIP)
    microsoft.public.vsnet.debugging
    I'm running an ASP.NET webapplication on a Windows 2000 Server SP4 machine with .Net Framework 1.0 installed. The ASP.Net application uses impersonation (windows domain account). This is needed for communication between two servers (some ldap stuff). Furthermore the application uses FormsAuthentication. At some point the FomrAuthentication.Decrypt method is called. At this point I get the followin...
    VS.2003 IDE Crash (3 replies)
    microsoft.public.vsnet.debugging
    Hi, After installing VS.2003, I just upgraded a VS.NET 2002 project to VS.NET 2003. I upgraded because VS.NET 2003 is slow and buggy. However, I find VS.NET 2003 is worse in terms of bugs. For approx 20 hours everything was fine. Now suddenly I have IDE Debugger (VB.NET) problems. Compilation was fine 20 hours ago, yet now it's not. I haven't installed any more software since installing VS.2003, a...
    "variable 'x' declared but never used" warnings in VB.NET (10 replies, VIP)
    microsoft.public.vsnet.debugging
    Hi, During compilation, a C# project in my solution triggers the following warning: "warning CS0168: The variable 'ex' is declared but never used" To trigger this warning, it appears the C# compiler WarningLevel needs to be 3 or above. In the same solution, I also have a VB project, however Help document ms help://MS.VSCC/MS.MSDNVS/vbcon/html/vxlrfvslangprojprojectconfigurationpropertieswarninglev...
    Debugging info (2 replies, VIP)
    microsoft.public.vsnet.debugging
    Hi everyone, You seem to be the only people that know about the dbghelp.h APIs so here it goes: I wanted to create a stack trace with function names and arguments. I know how to get the values of the arguments but the problem is that SymFromAddr() will only give me the name of the function. So.. instead of "public: void foo::bar(int, int)" I get just "foo::bar". Any ideas why do I get this behavio...
    Web application Debug (2 replies)
    microsoft.public.vsnet.debugging
    Hi I got the following error when I try to run an web application from vs.net . "Error while trying to run Project: Unable to start debugging on the web server. Server side error occurred on sending debug Http requet. Make sure the server is operating ocrrectly. Verify there are no syntax errors in web.config by doing a Debug.Start withoug Debugging. You may also want to refer to the ASP.Net and A...
    Anyone else seeing this kind of debugger hang? (2 replies)
    microsoft.public.vsnet.debugging
    In VS.NET 2003, the debugger hangs while I am stepping "F 10" through my code making various calls. I have exceptions in managed code set to stop when, in most cases, exceptions are thrown but the rest stop if not handled. My project is set to debug managed code only. This application consists of Managed code in C# only Large Windows.Forms application 30 assemblies and projects All assemblies are ...
    Unable to Set Start Page? (4 replies, VIP)
    microsoft.public.vsnet.debugging
    One of my coworkers is unable to set their start page. When they try and Start under the Debug menu it tells them they need to set their start page. So they go to their projects default.aspx and they right click on it and click "Set as Start Page". However, they say it seems like it doesn't take. The next time they try to do a Start under Debug it tells them they need to set their start page again...
    MTS Error when debugging classic ASP (2 replies, VIP)
    microsoft.public.vsnet.debugging
    I have finally gotten to the point that I encounter the problem loading symbols for an ASP breakpoint. I have made sure that Script debugging is enabled in IE, checked all the permissions on the server, enabled ASP debugging in the project and the site, set the registry keys mentioned in one of the articles, etc.. I am receiving the following error when I launch the debugger: snip Unable to locate...
    XP SP2 (4 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello, After installing XP SP 2 VS.NET 2003 doesn't seem to be able to stop debugging anymore. Whenever I close out of a debugging session it just hangs (both IE and VS.NET). I have to manually close the browser window, close VS.NET, usually I restart IIS since the ASP.NET worker process is huge and doesn't get closed out, and then have to open VS.NET again. I looked at http://support.microsoft.co...
    DIA SDK Issues (4 replies)
    microsoft.public.vsnet.debugging
    Hello everyone, After reading, possibly every article, question and sample code on DbgHelp, I have drawn the conclusion that the DIA SDK is the way to go as it's more powerful and object oriented which is a plus IMHO. However, there are some issues that I was hoping I could get information on: 1) The DIA SDK doesn't seems to not be redistributable. My software is free and I could not pay to be abl...
    Walking the stack and retrieving decorated names (2 replies)
    microsoft.public.vsnet.debugging
    Hi everyone, I know questions about the DbgHelp API have been asked a lot but I seem to have read them all as well as code examples and yet i can't find why I am experiencing this problem. I use StackWalk to get the addresses and then I get what is supposed to be the decorated name with SymFromAddr(). However, the Name member is filled with the function name only. So, for example, I get "foo::bar"...
    How to debug a program with complex command-line arguments? (8 replies)
    microsoft.public.vsnet.debugging
    Hi It's possible to open Windows Explorer to directly display the content of the MyComputer node. You can accomplish this by opening the run window (Start "Run...") and entering the following line: Explorer.exe /e,::{20D04FE0 3AEA 1069 A2D8 08002B30309D} /e instructs Windows Explorer to display a tree view and the ::{CLSID} part is used to directly show the MyComputer node. How can you debug Windo...
    Debugger not responding after XPSP2 (2 replies, VIP)
    microsoft.public.vsnet.debugging
    After installing SP2 on XP Prof. the VS2003 debugger stopped working. Running a WinForm app without debugging (Ctrl F5) works fine, but debug mode (F5) doesn't. The build succeeds and the application process is started, but that's it! The Form is never displayed and VS doesn't respond anymore... Can anyone help me solve this problem? Christian
    VS.NET don't stop debug (2 replies)
    microsoft.public.vsnet.debugging
    Hello dear friends, I face with a very wonderful problem in Visual Studio .NET and code debugging in ASP.NET applications. Let's assume that I'm debugging a sample code like this in an ASP.NET application: 1) SqlConnection cnn new SqlConnection(str); 2) SqlCommand cmd new SqlCommand("insert into t values('f')",cnn); 3) cnn.Open(); 4) cmd.ExecuteNonQuery(); 5) cnn.Close(); I attach a breakpoint to ...
    loadDataForExe (3 replies)
    microsoft.public.vsnet.debugging
    hi, can i (and how) use dia's loadDataForExe to download a matching pdb from a symbolserver? or what can i do, to download matching symbols? thx
    error: cannot obtain value while debugging (2 replies, VIP)
    microsoft.public.vsnet.debugging
    I have a section code that I have been successfully debugging for quite some time. I pass in two instances of the same class to a function with the following code: Public Function NewPolicyProcessing(ByVal w As Writeup.Main, ByVal ow As Writeup.Main) As Decimal Now when I try to put a watch on any of the values in w or ow, I get: error: cannot obtain value The code still executes as it should, I a...
    Unable to see Locals/Watch values (4 replies)
    microsoft.public.vsnet.debugging
    For some reason, I can not see local or auto values while debugging a simple c# app using vs 2003 (version 7.1.3088, framework version 1.1.4322). When I hit a break point, I type ?myVariable in the Command window I receive an "Unable to evaluate the expression" error. Same thing when I try to Quick Watch the variable. The data tips have stopped displaying also. Breakpoints are working OK, just no ...
    dataset relation code error (2 replies, VIP)
    microsoft.public.vsnet.debugging
    In my VS.net 2003 project, I got an error on the line of code that I try to build a relationship between two tables. dsProd.Relations.Add("SegtoCat", dsProd.Tables("Segments").Columns("ID"), dsProd.Tables("Catagories").Columns("SegmentID")); 'System.Data.DataSet.Tables' denotes a 'property' where a 'method' was expected Both tables have the right data populated, and PK ID in Segments table points ...
    Repost: Help-Debug classic ASP with VS.NET and Windows Server 2003 (9 replies, VIP)
    microsoft.public.vsnet.debugging
    This was posted yesterday as well...but am reposting logged in with my MSDN subscription We're trying to debug classic ASP from a Windows XP Professional workstation remote server is Windows 2003 Server (which means of course it's IIS 6.0) We're able to debug ASP.NET no problem. Debugger also starts okay with classic ASP but we simply don't hit our breakpoints. We get the dreaded "The breakpoint w...
    debugging dll (2 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello, I'm crating .NET dll (in C# using Visual Studio .NET). This dll is loaded into one external application where user selects this dll in file Dialog and dll is loaded and used in that applicatin (it's loaded through Assembly assf Assembly.Load(FileData);) And my problem is is it possible to debug (and how) my dll even if I don't have source codes of that application? thanks for your help Fran...
    Unable to break in Stored Procedure (2 replies, VIP)
    microsoft.public.vsnet.debugging
    I cannot debug a SQL Stored Procedure from within a C# program, even though I have SQL Debugging enabled for that project and everything else has been checked with the instructions in MSDN DVD. The funny and confusing thing is thay I can debug a stored procedure in Query Analyzer with no problems at all. I can also Step Into Procedure from within VS.NET 2003. It is only when I execute an OleDbComm...
    Autos and Command Win showing "System.ArgumentException"? (4 replies, VIP)
    microsoft.public.vsnet.debugging
    I have a C# Web Project set up, that has been working fine for weeks, debugging and all. Suddenly, the Autos and Command windows are giving me: error: an exception of type: {System.ArgumentException} occurred for many properties that used to show up fine. For example, I have a DataSet and when I try to see the "Count" property of one of it's Tables, I get the error. The application RUNS fine, it j...
    How to debug the project on construction of a surface in VS with DirectX? (2 replies)
    microsoft.public.vsnet.debugging
    Hello. I have installed on my computer Visual Studio 2005 Beta and DirectX 9.0 SDK Update (Summer 2004). I have developed projects Visual Basic, Visual C# and Visual C for construction of 3 Dimensional geometrical bodies, surfaces and lines of a level of these surfaces without use of DirectX, and now I want to make the same with use of DirectX, but I can not debug such projects. Inform, please, wh...
    natdbgtlnet.dll (2 replies, VIP)
    microsoft.public.vsnet.debugging
    Anybody got ANY IDEA where to get natdbgtlnet.dll from. I need to set up VS remote debugging. From: Tony Brown www.floweracre.com Posted by a user from .NET 247 (http://www.dotnet247.com/) Id SsZqvCWO0Eu7qihFZrFLeQ /Id
    Remote Debugging (4 replies)
    microsoft.public.vsnet.debugging
    I have set up a ASP.NET remote Web server running IIS. I am able to create and run ASP.NET projects remotely, however debugging is another story which leads to the error Message: "Access is denied. Verify that you are an administrator or a member of the Debugger Users group on the machine you are trying to debug..." I have am an administrator on the remote and local machines and also in the debugg...
    XP SP2 and Remote Debugging (10 replies, VIP)
    microsoft.public.vsnet.debugging
    If anyone find's out a solution for this problem or find an update or patch at Microsoft please post here.
    "Remote debugging after SP2" reloaded, but new error (2 replies)
    microsoft.public.vsnet.debugging
    Hi, Yet another report added to the pile... I have the following error in Visual Studio .Net 2003 while trying to debug remotely ASP .Net apps (same problem with all applications, new or existing): Auto attach to process '[1960] aspnet wp.exe' on machine 'xxxxx' failed. Error code 0x800405a4. I can't find any definition of this error code (it belongs to the FACILITY ITF family, so it must be speci...
    Broken breakpoints and symbols not loading (2 replies)
    microsoft.public.vsnet.debugging
    I've been developing on this box with VS.NET 2003 for the last six months with no problems of this nature. Two days ago, while attempting to debug a web application utilizing the UI Process Application Block (our first exposure to this App Block) I discovered that my breakpoints no longer function. I have scoured the web and the newsgroups. Many people are experiencing this behavior, but none of t...
    Cannot start debugging. Unable to find Microsoft Internet Explorer (3 replies, VIP)
    microsoft.public.vsnet.debugging
    I need help, I have been trying to figure this out for 3 weeks! When I go to debug, I get " Cannot start debugging. Unable to find Microsoft Internet Explorer. " . I am using VS.NET 2003 on XP Pro.
    Debugging Permissions (2 replies)
    microsoft.public.vsnet.debugging
    Hello All, I'm using Visual Studio 2003 on Win XP SP2, working on a web application. When I run the application in debug mode, the code builds and I get this error: "Error while trying to run project: Unable to start debugging on the web server. You do not have permisssions to debug the server. Verify that you are a member of the 'Debugging Users' group on the server". Now, I'm a local Aministrato...
    Dll generate with TRACE Information (3 replies, VIP)
    microsoft.public.vsnet.debugging
    How can I know if a specific *.dll have been generated with TRACE Information? tks.
    Unable to debug after installing VS2005 (5 replies, VIP)
    microsoft.public.vsnet.debugging
    I am unable to debug (F5) Visual Studio 2003 projects after installing Visual Studio 2005 Beta. Everything worked fine before. The projects run perfectly if I start without debugging (Ctrl F5). The projects that I am trying to debug are all located on my local machine. The VS 2005 debugger works great. This is the error message that I am getting: Microsoft Development Environment Error while tryin...
    XP SP2 and Remote Debugging (9 replies, VIP)
    microsoft.public.vsnet.debugging
    I just installed Windows XP SP2 and I can no longer remote debugger programs. I followed all the instructions regarding firewall configuration (allowing specific ports, etc.) and even tried turning off the firewall all together. The error I get when attempting to list the processes on a remote machine is "Access is Denied". This is VS.NET 2003 with the just released version of XP SP2.
    HowToSet Breakpoint (3 replies, VIP)
    microsoft.public.vsnet.debugging
    Greetings I'm using V.Studio .net 2003, VC . The editor won't let me double click a line number to set a breakpoint. I cannot set a breakpoint from chosing Debug NewBreakpoint ? The Project Properties Configuration Properties Debugging Configuration is set to "Active(Debug)". What can be wrong? What do I need to check to set a breakpoint? Thanks, CurtC
    WinXP SP2 disables debugging (MDM.exe) (13 replies)
    microsoft.public.vsnet.debugging
    I installed XP SP2 (RTM). After rebooting I couldnt start any vs.net projects (of any type)(local). The error i received was an access denied error to the debugger. I found the issue was that the Machine Debug Manager service was not started. When i started the service, it said it was stopping as there wasnt any work to do. Nothing i tried got this service to stay started except uninstalling SP2. ...
    Debugging a .net application makes an sql server hang (3 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello everyone, I have been debugging a module I have coded using the VS.NET debugger. This makes a call to a SQL 2000 database, and closes the connection, I then start debugging after this point. Someone has started to use a web application on a live sever which connects to a SQL 2000 database, this database is a seperate server on a completly different machine to the developing computer and DB. ...
    Error while trying to run the project. Unable to start debugging (3 replies, VIP)
    microsoft.public.vsnet.debugging
    I recently installed VS.NET 2005 (Beta 1) with SQL express tools. Now whenever i run VS.NET 2003/VS.NET 2002 projects i get the following error. Error while trying to run the project. Unable to start debugging on the web server. Would you like to disable future attempts to debug this project? Also, in the command window i have this message: Auto attach to process '[3048] aspnet wp.exe on machine '...
    XP2 and Remote Debugginr solved (3 replies, VIP)
    microsoft.public.vsnet.debugging
    Follow the instructions from http://support.microsoft.com/default.aspx?scid kb;en us;841893 and now it's working fine.
    PDB Files not created (4 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello, I am using Visual Studio .Net 2003. I have a solution which contains around 35 projects written in C#. On building the solution (rebuild solution), sometimes I notice that some of the pdb files are not created. If I do build the solution again (build solution), it creates all the files. I have "Generate Debugging Information" set to "True" in all my projects. I don't know if this is a bug i...
    Again XP SP2 and debugging (3 replies, VIP)
    microsoft.public.vsnet.debugging
    After I applied XP SP2 I am unable to debug. I get : Error trying to run project : unable to start debugging on the web server. The debugger component on the server failed to connect to the local machine. Even after I disable the ICF I get the same error. I made all the changes from http://msdn.microsoft.com/security/productinfo/xpsp2/default.aspx?pull /library/en us/dnwxp/html/xpsp2remotedebug.as...
    Cannot break at stored procedures from VC.NET 2003 (5 replies, VIP)
    microsoft.public.vsnet.debugging
    I cannot debug a SQL Stored Procedure from within a C# program, even though I have SQL Debugging enabled for that project and everything else has been checked with the instructions in MSDN DVD. The funny and confusing thing is thay I can debug a stored procedure in Query Analyzer with no problems at all. I can also Step Into Procedure from within VS.NET 2003. It is only when I execute an OleDbComm...
    Cannot rebuild app after unloading AppDomain because .pdb file still in use by debugger (2 replies, VIP)
    microsoft.public.vsnet.debugging
    I have an application that I extend with .NET assemblies that I load and run into their own AppDomains. I want to be able to do edit/compile/test cycles on the extenstions without requiring a process restart. I can unload the extension/assembly under development by unloading the non default AppDomain that is running in, but I find that I cannot recompile it because it's .pdb file seems to still be...
    Can't control tabpage order VB.NET compact framework (4 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello, I have a tab control with 8 tabs in a smart device application. My problem is that the tab order has a mind of its own. No matter what I set the tab order to, the tabs rearrange themselves if I quit and reopen, or if I deploy. How do I go about fixing this. Is this the right forum to ask the question? Thanks, dave
    Breakpoints (3 replies, VIP)
    microsoft.public.vsnet.debugging
    I set breakpoints where I know the code must execute but it still does not stop. I am using VS2002 VC#2002 in a WebApplication Thanks for any posible help
    Remote debugging C# project under Win98 (2 replies)
    microsoft.public.vsnet.debugging
    Hi, I want to debug my project under Win98 (C#). I configured DCOM for that. All configurations seem to be ok. Debugging VB project works excellent. If I start to debug C# project, I get an error : "Interop debugging is not supported on that platform". What to do? Please help Wojtek
    Debugging/Tracing (2 replies)
    microsoft.public.vsnet.debugging
    Experienced posters, I am trying to capture/trace the execution of a .net exe. I am looking for the function calls, function call parameter values and exceptions that can occur. Using the system.diagnostics namespace classes I am able to trace the current exe, function calls, and using reflection get the function definition with parameters. I am unable to capture the values send the these function...
    Slow debugging (2 replies, VIP)
    microsoft.public.vsnet.debugging
    Hello, I am having a very painful time debugging in VS .NET 2002. I believe that a fix is available as mentioned in the following article: http://support.microsoft.com/default.aspx?scid kb;en us;331684 The article states that the fix will be available in the next service pack, but there has never been a service pack to VS 2002 that I am aware of. Can anybody tell me how to obtain this fix without ...
    debuging Stored Procedures (3 replies, VIP)
    microsoft.public.vsnet.debugging
    Although I have followed examples in several books including the 70 305 exam prep by Mike Gunderloy, I cannot find a way to step into stored procedures and do debugjng. It never steps in. Is there some secreet or does it not yet work? Thanks, G
    Debugging remote computer outside Domain (2 replies)
    microsoft.public.vsnet.debugging
    How can I debug my app running on a computer OUTSIDE DOMAIN with DCOM remote debug and Visual Studio.net 2003? I don't want to use TCP native debugging, because it leaks some security. Please reply. Thanks in advance. Bae,Hyun jik
    Visit the archive for messages from this site.
  • January 2002 (12 items)
  • February 2002 (5 items)
  • March 2002 (12 items)
  • April 2002 (2 items)
  • May 2002 (8 items)
  • June 2002 (2 items)
  • July 2002 (4 items)
  • August 2002 (7 items)
  • October 2002 (17 items)
  • January 2003 (24 items)
  • February 2003 (6 items)
  • March 2003 (22 items)
  • July 2003 (15 items)
  • January 2004 (198 items)
  • February 2004 (42 items)
  • March 2004 (29 items)
  • April 2004 (80 items)
  • May 2004 (39 items)
  • June 2004 (18 items)
  • July 2004 (19 items)
  • August 2004 (67 items)
  • September 2004 (17 items)
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com