|
Hi,
I try to debug a COM dll (TAutoObject) in Delphi and my break point are not green.
I put my option like this :
host : c:\Program Files\Internet Explorer\iexplore.exe param : c:\software\test.html My test is well lanched but no breakpoint in Delphi...
Started by Hugues Van Landeghem on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Which worked fine.d
you have to run the program which launchs the com+ object" to the process running it (iexplorer.exe), but the problem is that that doesn't allow to debug invoked my COM object and used it....
That to debug.
|
|
I have an old C++ COM component which has to stay in Visual Studio 6.0 format. I can't for the life of me figure out how to debug the code in the actual COM component.
I'm able to build it in debug mode, add breakpoints and attach it to the dllhost.exe...
Started by Michael Pryor on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Now, try hitting....
Are you trying to debug inside the COM component?
Was it written in C++, VB, or something else?
If it is a VB6 based COM component, you can open the project in VB6 and run it (a DLL project cannot & registers itself.
|
|
I'm developing a C# assembly which is to be called via COM from a Delphi 7 (iow, native win32, not .net) application.
So far, it seems to work. I've exported a TLB file, imported that into my Delphi project, and I can create my C# object and call its ...
Started by Blorgbeard on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll need to attach after the ....
Place the following in the method you wish to debug:
#if DEBUG if (!System.Diagnostics.Debugger.IsAttached) Debugger.Launch(); #endif
When you want to debug, build a debug version and use.
|
Ask your Facebook Friends
|
What rarely used debugging tools you found useful ? My recent debugging situation on Visual Studio required trapping the breakpoint on fresh built 32-bit DLL, which was loaded by GUI-less executable, which was spawned by COM+ server on remote x64 machine...
Started by RocketSurgeon on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Server, attaching to the Tomcat process there; and doing it from two different machines to debug two.
|
|
Hi, I would like to know if you guys have any suggestions about debug levels when writing an application. I thought about 4 levels: 0 : No Debug 1 : All inputs and outputs 2 : "I am here" notification from significant functions with main parameters 3 ...
Started by Omri on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Warning-Mode: Enables extra....
Error-Mode: Hard and un-recoverable errors are logged to the console .
Under no circumstances the application will emit anything to the UART or debug-console.
Silent-Mode: Application emits nothing debug-related.
|
|
Hi guys,
i have a c# dll which is written to act as a wrapper to grab data from a data source and pass it to a vba/powerpoint ppa application. i don't have much experience with vba which is why i'm simulating this using vb6 which i know a tiny bit more...
Started by melaos on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Select 'Start external program' and browse to your VB6 project's .vbp file in the... .
Go to the Debug page.
Both Debug Studio for the C# project.
Debugger.Break(); which should force a breakpoint and ask you if you want to attach a debugger .
|
|
I am new to driver stuff. I have tried to debug the kernel driver using serial COM port without success. Could someone show me proper direction how to fix the problem?
I am seeing the following messages on kd console.
ERROR: DavReadRegistryValues/RegQueryValueExW...
Started by kingas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That the COM port used by kernel debugging on the target must be a standard 8250 family UART (usually.
|
|
Im currently working on a PPC application that I would like to test in the PPC emulator "USA Windows mobile 5.0 PC R2 Emulator" without using Active Sync. Somewhere in my back head I think I have been able to just do that: But when I start a debug session...
Answer Snippets (Read the full thread at stackoverflow):
Suppose.
Well then you're not really testing accurately.
It should work without ActiveSync by default is strengthened by your IDE so you can debug..
In order to use and debug through the emulator.
|
|
Hello,
I have a .dll from c++ and i want to debug it in Csharp, but i don't know how to do.
When i compiled the c++ project, Visual studio asked me to execute an ".exe"
I supposed that i had to create a project to execute the dll.
But i'm some lost, anyone...
Started by Custo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If I understand you correctly, you want to debug a C++ coded DLL that you created into your C# project properties, and under the Debug section, checking the "Enable unmanaged code debugging to debug a c++....
Argument needed.
|
|
I use the x64 version of Windows 7. My application use some COM servers (usual native x86 COM Servers) that can't be loaded in x64 context. So I decided run it as a x86 application using WOW so I set platform target as x86.
But Visual Studio debugger ...
Started by Dmitry Borovsky on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The way I typically debug through.
The most likely causes for this are
Out scenarios where you could easily grab the wrong version of the file .
The checksum of the files you are using to debug the application.
|