Host Environment for Remote Debugging
Thu, 22 Nov 2007 20:37:01 -0800
Is it possible to debug computers in different workgroups? The Visual Studio
host is part of a home workgroup and the remote computer is hosted and the
only member of the second workgroup. I've tried local accounts (in the
administrators group) with the same username and password on both machines,
but not ha ...
|
Error starting debugger with unmanaged code in VS2005
Thu, 22 Nov 2007 12:35:00 -0800
Hi,
I'm having problems to start debugging any program that uses unmanaged code.
I created a simple Win32 Console Application in C++.
Pressing F5 to start debugging the message 'Unable to start program' appears.
It works fine if I use Ctrl+F5 (Start without debugging) or if I change the
project option Debugg ...
|
Very slow execution while executing under the debugger
Thu, 22 Nov 2007 04:44:01 -0800
I have a c# application which has an unmanaged DLL that draws the content of
one of the widows which executes very slowly when run under the debugger.
When I staert the application stand alone or by using Debug\Start without
debugging, it draws the initial windows completely within 10 seconds of
opening the ...
|
What is this: "Invalid TLS index used for current stack trace"?
Wed, 21 Nov 2007 16:44:37 -0800
When I run a small application in VC++ debugger.
The application breaks and the foloowing messages are in the output pane.
VERIFIER STOP 00000301 : pid 0x1798: Invalid TLS index used for current
stack trace.
FFFFFFFF : Invalid TLS index.
0000ABBA : Expected lower part of the index.
00000000 : Not us ...
|
VS Remote Debugging
Sat, 17 Nov 2007 21:20:01 -0800
I'm attempting perform a cross domain debugging session, but I've encountered
a bit of an issue. When I start the msvsmon.exe application on the Windows
2003 server it listens on the internal Enternet adapter. Since I'm connecting
remotely to an external interface IP, I cannot start the debugging process.
Do ...
|
Debugger Visualizer support in C++/CLI?
Sat, 17 Nov 2007 12:49:30 +0200
Hello,
I wrote a debugger visualizer in C++/CLI. I can use it while debugging a C#
program, but I fail to use the same visualizer while debugging a 100%
managed C++/CLI application. (The magnifying glass is not shown at all, so I
can not invoke my visualizer.) The only visualizers available in C++/CLI
pro ...
|
RE: How to solve the lnk2019 error
Wed, 14 Nov 2007 07:41:53 GMT
Thanks a lot, I have solved the problem, when i examine the addition lib source, I found that one function must be outport, but it is import, after correct, it can be linked!
From http://www.developmentnow.com/g/51_2006_10_0_0_840059/How-to-solve-the-lnk2019-error.htm
Posted via DevelopmentNow.com Groups
http:// ...
|
|
|
RE: How to solve the lnk2019 error
Wed, 14 Nov 2007 07:41:03 GMT
Thanks a lot, I have solved the problem, when i examine the addition lib source, I found that one function must be outport, but it is import, after correct, it can be linked!
From http://www.developmentnow.com/g/51_2006_10_0_0_840059/How-to-solve-the-lnk2019-error.htm
Posted via DevelopmentNow.com Groups
http:// ...
|
Multithread debuging
Tue, 6 Nov 2007 05:40:01 -0800
Hello I have a strange problem :
How is it possible to have this case :
if (c.InvokeRequired)
{
c.BeginInvoke(d, nt); }
else
{
Do Things();
...
|
Catch Exception in XAML
Fri, 2 Nov 2007 18:08:01 -0700
MouseEnter this button causes the <SoundPlayerAction> element throws
exception as I give it a relative path. What is the technique to catch an
exception when code in XAML?
Thanks,
Jen
<Button Name="btnPlayAudio" Click="btnPlayAudio" Content="Play" >
<Button.Triggers>
...
|