Hi!
I have some PDAs (windows mobile) to test my application. One of them is HTC Touch Dual, and it have some bugs in debugging. There is another ARMv6 device I can use, but it's far far away. So I can't use USB cable, but can use TCP/IP (internet, not intranet).
Do you know, how can I connect to remote windows mobile device to debug a...
I have inherited this c# solution that includes an ix installer project (a bunch of .wxs files and some c# files). The uninstaller is generating an error message.
I haven't a clue what this installer project is. What are the .wxs files for? I can guess (and have successfully been able to fix some issues with the installer. I have figure...
I developed a small VBA procedure in MS Access 2003 module (just one public Sub)
The database is locked for me only, nobody else has access to the file.
My code works but there is a small bug I want to find and fix
I need to debug my VBA code. I put breakpoint at the first line of the procedure.
However, when I run this code, it never ...
At work I have a programming language encoded in a database record. I'm trying to write a print function in python to display what the record contains.
This is the code I'm having trouble with:
# Un-indent the block if necessary.
if func_option[row.FRML_FUNC_OPTN] in ['Endif', 'Else']:
self.indent = self.indent - 1
...
I'm running Visual Studio 2008 Professional SP1 on Windows 7 Ultimate x64 RTM. I'm using the ASP.NET MVC that you get from the Web Platform Installer.
When I step through my program and pause on any line for longer than a few seconds the debugger suddenly stops and the following message is printed in the Debug Output:
The program '[...
I am trying to enable SQL Debugging following this link http://msdn.microsoft.com/en-us/library/ms165038%28VS.80%29.aspx but i can't see a debug tab.
How come?
...
MyManagedFunc in managed.exe calls into MyUnmanagedFunc() in unmanaged.dll. I produce a minidump in unmanaged.dll using Win32. SetUnhandledExceptionFilter. I can see MyUnmanagedFunc in the callstack, but nothing usefull in the managed side.
I'm supposed to be able to use WinDbg and SOS.dll to see the managed calls, right? Below is ...
I have a project composed of 100s of files. One version contains a bug that the other does not. Is there some tool I can use to compare everything at once? I was thinking I could examine each difference to see if it's causing the problem. (There wouldn't be too many differences, it's just a matter of finding them.)
...
I have a server application running under Cent OS. The server answers many requests per second but it repeatedly crashes after each hour or so and creates a crash dump file. The situation is really bad and I need to find out the crash cause as soon as possible.
I suspect that the problem is a concurrency problem but I'm not sure. I have...
If my application crashes at a customer site I'd like them to be able to send me a crash log with the minimal amount of hassle on their part. On OS X it's very easy: I can tell them where to find the crash log and send it.
What is the best way to do this on Windows? Is Dr. Watson as good as it gets? Can I count on that being set up b...
My code is quite simple and straightforward. I get "wrong answer" on submission though. I have no clue why that happens! Here is the code...
#include<iostream>
#include<string>
using namespace std;
void sum(string num)
{
int i,len=num.length();
int j=len-1;
int carry=0;
string answer;
int s=0;
for(i=0,j;i<len;i++,j--)
{
...
I would like to debug a .NET application that fails immediately on startup (and exists without an error message or log), but I can't attach a debugger to it because the process exists almost immediately after I run it. I don't have the source code for the app, so I can't do "Start Debugging". I tried using a Visual Studio macro to start ...
Hi,
I need to use Valgrind to detect any memory access violations made in a server application. The server creates many threads. I suspect that there is a racing condition that causes the server to crash every 1 hour or so. We used Valgrind to analyze its memory usage but the server process' speed decreased dramatically. The server's sp...
As part of learning wpf I'm working through some MS 'lab' sample apps; The finished exercise looks right, but I'm hitting a NullReferenceException with "Source code unavailable" issue (exception detail below). It appears to be thrown after the main window is shown.
I suspect the issue is in the XAML, but the debugger isn't helping me a...
Hi,
anyone can help me solve this problem?
the solution doesent work on IE 8.
in a nutshell - if you apply a background picture to a table row the background
is applied to the inner cells.
thanks!
...
I am getting this error: "Fatal error: Can't use function return value in write context in D:\Programas\wamp\www\away\index.php on line 18". Line 18 being the if statement.
Can anyone help me out on this? Thanks.
$vars = array("first_date_month", "first_date_day", "last_date_month", "last_date_day", "resume_date_month", "resume_date_da...
I would like a ruby method "show" which does this:
anyobject.show
the output of the call would be:
anyvar => the pp string of the object
Something close , but not quite is :
p "any_var => #{any_var.pretty_inspect}"
Since you have to type "anyvar" out to accomplish that.
...
Is there any way of detecting from my Windows OpenGL application if a debugger (such as gDEBugger) is being used to catch OpenGL calls? I'd like to be able to detect this and terminate my application if a debugger is found, to avoid shader code and textures from being ripped. The application is developed in C++ Builder 6.
...
I have been a C programmer for many years and my favorite "debugger" has always been the printf() function - I only resort to visual studio's debugger when absolutely forced and so have never been very proficient in using it. Recently I have had to modify a program from C to C++ (although of course printf still works fine) and and parts ...
I am debugging a vs2008 web application project using the custom web server option and some of the pages are using https. I can debug https pages. Using iis7/Vista.
The way I'm doing it is:
name of the self signed certificate is assigned to trucks
custom server url: http://trucks
hosts file: 127.0.0.1 trucks
publish to http://trucks
...