31
votes
67answers
5k views
What is needed to get Delphi back on top?
Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of …
0
votes
10answers
265 views
How to explicitly pass a program flow into the finally block in C#?
Hi guys.
In Delphi I could do something like this:
try
if not DoSomething then
Exit;
if not DoSomething2 then
Exit;
if not DoSomething3 then
Exit;
finally
Do …
1
vote
3answers
129 views
detect Windows Explorer copy operation
Is there any way to detect whenever a copy operation starts in Windows Explorer.
kind of like in SuperCopier : SuperCopier Website ?
and log files involved in the operation ? and …
3
votes
4answers
174 views
Calling Java code from a C# COM DLL that’s used by a WIN32 application?
I have a very simple problem. I have an application which is written in Delphi 2007 for WIN32. It uses a C# DLL which is imported into the project through it's COM interface and a …
2
votes
4answers
261 views
How to detect Windows Logon event ?
How do you detect Windows logon event?
And how do you initiate a user logon from a Windows service?
I'm trying to write a piece of code that will detect logon events and log anot …
3
votes
5answers
214 views
Form Designer for Dummies…
A colleague of mine is doing the functional designs for the software we develop. His knowledge about Delphi, Visual Studio and other compilers is limited to having written a "Hello …
3
votes
5answers
628 views
How to consume non-IIS hosted, WCF, C# web service from Delphi 2007?
I've written a fairly simple little C# web service, hosted from a standalone EXE via WCF. The code - somewhat simplified - looks like this:
namespace VMProvisionEXE
{
class EXEWr …
2
votes
3answers
171 views
Pass a Delphi set to an external Delphi function from C#
I'm trying to call an external Delphi function from C# which takes a Delphi set as a parameter:
Delphi code
type
tStatus = (sIn, sOut, sAbsent, sSick);
tStatusSet = set of tS …
2
votes
3answers
231 views
How can I write a WebDAV server with Delphi?
There are some WebDAV clients available for Delphi (for example included in Indy 10). Is there also a simple WebDAV server solution written with Delphi?
If there is none yet, mayb …
11
votes
31answers
5k views
Will you use Delphi Prism
CodeGear announces that their Next .Net product which is known as Delphi Prism Will be the RemObjects's Oxygene.
Oxygene has many nice features that not found in Delphi or C#, and …
2
votes
5answers
231 views
Sending pound signs from Delphi to C# web service
I am sending a large string from Delphi 5 to a C# web service, and I'm having lots of trouble with Pound (£) signs. I URLEncode the string from the Delphi side (which seems to conv …
1
vote
3answers
517 views
Calling a Delphi DLL from C# containing Pointer in struct not working
I have a delphi dll that is defined like this
type
tSSL_connect = packed record
pssl : Pointer;
pctx : Pointer;
sock …
2
votes
2answers
165 views
C# standards/style for a Delphi developer?
After you've been programming for a long time with a language, you pick up certain coding standards or styles. With Delphi it's things like prefixing private variables with f and p …
6
votes
8answers
781 views
Using a COM dll from C# without a type library
I need to use a COM component (a dll) developed in Delphi ages ago. The problem is: the dll does not contain a type library... and every interop feature (eg. TlbImp) in .NET seem t …
2
votes
3answers
229 views
Is there Delphi’s ActionManager alternative in Visual Studio
I am relatively new to VS and C# but have years of experience in Delphi.
One of the my favorite components when designing GUI in Delphi is ActionManager - centralized way to assign …
