After watching the latest hanselminutes on 9 video, I went to our dev environment and grabbed a dump of a few different services.
After opening the dump file I noticed that some were able to be debugged in Mixed mode and Native mode, and others in Native mode only. Being that every service is written in managed code, why wouldn't mixed ...
I'm used to using the "Detach All" function on the debug menu to allow me to go back to editing and compiling, with the intent of re-attaching later.
This menu option disappeared on me after I installed Windows 7 64-bit. I've heard from others that it didn't exist under 32-bit Vista, either.
For the record, the option appears when debu...
I built the non-dll version of OpenSSL on my windows box. Per the instructions I modified the build script to include debug symbols. I can link against them fine and they run. But when I try to step into an openssl function from my cpp code it just steps over. I know this is a total noob question but how do I fix this? I have all th...
Out of nowhere, Microsoft Visual C# 2008 Express Edition decided to stub debugging with a certain project of mine. I didn't add any breakpoints. When I run the program through Other projects debug perfectly fine. I am currently running Windows 7 Home Premium 32-bit. Has anybody else experienced this? Anybody know how to fix it?
...
Hi,
I was hoping to get some good ideas as to what might be causing a really nasty bug.
This is a program which is transmitting data over a socket, and also receives messages back.
I could explain lots more, but I don't think this will help here.
I'm just searching for hypothetical problems which can cause the following behaviour:
p...
http://home.earthlink.net/~benfranq/Sudoku.html
Perhaps somebody can tell me why it doesn't work in Internet Explorer
In other browsers, it seems to work fine.
I've tried adding semicolons to every line, but it still doesn't work.
This isn't my page, a friend asked me to figure out why it isn't working in IE but ok in other browsers....
Hi All,
was wondering what was the best way to debug PHP on my local machine. I use MAMP on mac os 10.5
thanks,
Patrick
...
Does anybody know of a good GDB (or other Linux debugger) tutorial for debugging multi-threaded C code? I'm looking for one that includes simple examples.
...
With Delphi I wrote a DLL which can be called from Java via JNA (Java Native Access). Methods in this DLL are just simple operations, but for future use and more complex invocations I would like to know how I can use the Delphi debugger, if the DLL is called from Java directly (or from the Java IDE).
...
$.ajax({
type: 'POST',
url: 'place/add',
data: {
lat: lat,
lng: lng,
name: name,
address: address,
phone: phone,
review: review,
category: category
},
success: function(data) {
alert(data);
alert(data.id);
// ......
});
The first alert gives:
{"id":...
I'm getting this exception when trying to use dbgeng from mdbglib: First-chance exception at 0x037ba4f4 (dbgeng.dll) in ASDumpAnalyzer.exe: 0xC000001D: Illegal Instruction. I'm wondering how to go about debugging this?
It is throwing on the assembly instruction vmcpuid. When I step over that instruction the code works as expected.
St...
I've recently started using the Areas functionality of the Preview2 and it was working ok until I needed to return a Model to the view.
Controller:
public ActionResult ForgotPassword()
{
return View(new PasswordViewModel());
}
View:
<%@ Import Namespace="Portal.Site.Areas.Logon.ViewModel"%>
<%@ Page Title="" Language="C#" Maste...
Is it possible to get a method's return value in the Visual Studio debugger, even if that value isn't assigned to a local variable? For example, I'm debugging the following code:
public string Foo(int valueIn)
{
if (valueIn > 100)
return Proxy.Bar(valueIn);
else
return "Not enough";
}
Since I'm not setting any...
I downloaded LibC source from opensource.apple.com, but since it's part of one monolithic library /usr/lib/libSystem.B.dylib would I have to somehow rebuild the entire thing?
I have a BSD command line program, ported from Linux. I want to be able to set breakpoints in LibC functions and step through. I'm trying to close in on what seems...
I have a solution with three projects:
is a console (GUI app) for a device connected through Serial Port.
Serial Port emulation (console app, self-hosted WCF service).
Common interfaces.
To debug, I start SerialPortEmulator and then debug (F5) the main project.
Two problems:
It takes extra keystrokes to start the emulator.
I...
Hi,
I am developing a windows mobile application in which I want to debug the application not on the simulator but on the phone directly
So is there any way to do this?
I am currently connecting the device to visual studio after syncing it and have added a custom certificate too. But when I start the debugging the debugging stops at "...
hi guys,
i have a simple oracle stored procedure proc1 as follows:
CREATE OR REPLACE PROCEDURE SYS.proc1
IS
total NUMBER := 0;
temp INTEGER := 0;
BEGIN
FOR i IN 1 .. 5
LOOP
temp := 2 * i;
total := total + temp;
END LOOP;
DBMS_OUTPUT.put_line (total);
END;
the owner of proc1 is sys. sys have enough p...
I have installed mono, the monotouch SDK and monodevelop. I have a sample project which I can set breakpoints on in the IDE. However I can't find any option to run my sample program so that the breakpoints are hit and I can step through the code. Is this functionality unavailable on the evaluation version, or am I missing something?
...
I usually do the following at office -
Set the startup program for the project to System32\dllhost.exe, and set the
command line arguments for the startup program accordingly.
This used to work perfectly fine, because I was running Visual Studio 2008. However, one of my developers use C# Express Edition and they need to do a similar th...
hi,
i am using the rhino 1.7 javaScript engine in my project. i have implemented the debugger and debugFrame interfaces, and now i am getting to the public void onDebuggerStatement(Context cx) function.
how can i get from the context all the debug information that i need e.g. the list of variables and their value?
regards,
me :-)
...