Tagged Questions

2
votes
1answer
172 views

Converting Delphi code for unmanaged dll to C#

Hi. I hope someone can assist me with the problem I'm currently experiencing. We have a lot of Delphi legacy code, and need to convert some of our Delphi applications to C#. The legacy code I'm …
1
vote
10answers
386 views

Should I start my new shareware project in C# or Delphi? [closed]

I want my code to be as secure as possible.
32
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 popularity before …
0
votes
2answers
124 views

How should I call this native dll function from C#?

Here's the native (Delphi 7) function: function Foo(const PAnsiChar input) : PAnsiChar; stdcall; export; var s : string; begin s := SomeInternalMethod(input); Result := PAnsiChar(s); end; …
1
vote
3answers
159 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 such ? I've …
0
votes
10answers
276 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 DoSomethingElse; end; …
3
votes
4answers
187 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 simple trick to …
11
votes
32answers
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 I think it will …
3
votes
5answers
215 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, World" …
2
votes
4answers
331 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 another one …
3
votes
5answers
697 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 EXEWrapper { static …
2
votes
3answers
191 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 tStatus; function …
2
votes
3answers
251 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, maybe you know an …
2
votes
5answers
271 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 convert them to '%A3'). …
6
votes
8answers
884 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 to rely on TLBs. The …

1 2 3 4 5 next
15 30 50 per page