0
votes
1answer
47 views
Converting Delphi code for unmanged 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 …
1
vote
10answers
334 views
Should I start my new shareware project in C# or Delphi? [closed]
I want my code to be as secure as possible.
0
votes
2answers
121 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 := …
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 …
3
votes
4answers
186 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 …
0
votes
10answers
274 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
147 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
5answers
689 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 …
4
votes
10answers
1k views
What are the advantages of c# over, say, delphi/realbasic for windows applications
has anyone ever written an application bigger than its .net luggage?
People used to criticize vb6 for its 2 MB runtime but it rarely dwarfed the app it accompanied.
Today despite …
1
vote
3answers
572 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
4answers
322 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 …
2
votes
3answers
249 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 …
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 …
2
votes
3answers
187 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 …
5
votes
6answers
1k views
Calling a Delphi DLL from C# produces unexpected results
I have a Delphi DLL that I did not write, but need to call from a C# ASP.NET 3.5 app. Here is the function definition I got from the developers:
function CreateCode(SerialID : St …
