I am developing a C # assembly that should be called via COM from a Delphi 7 application (iow, native win32, not.net).
While this is working. I exported a TLB file imported into a Delphi project, and I can create my C # object and call its functions.
So, this is great, but soon I'm going to really want to use Visual Studio to debug C # code while it works. Set breakpoints, execute code, all this.
I tried hacking Delphi code after creating a COM object and then looking for a process to connect VS, but I can not find it.
Is there any way to install VS2008 for this? I would rather just hit f5 and make VS launch the Delphi executable, wait for the C # code to be called, and then attach it to myself. But I could live with manual connection to the process, I suppose.
Just please do not tell me that I should communicate with MessageBox.Show, etc.
Blorgbeard
source share