Tagged Questions

2
votes
3answers
117 views

Parse Delphi Project File on C#

This may seem like an odd question, but I have my own reasons for this! I am trying to parse a Delphi 2009 project file (.dproj), which is an XML representation of the project. I Can load the document …
2
votes
2answers
104 views

How to check if application runs from \program files\

Is there a reliable method to check if an application is run from somewhere beneath program files? If the user installs the application to program files on local machine, we need to put writable …
32
votes
66answers
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 …
2
votes
1answer
219 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
410 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
136 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
180 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
279 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
194 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
33answers
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
754 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 …
3
votes
5answers
219 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
376 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 …
2
votes
3answers
211 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
276 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 …

1 2 3 4 5 next
15 30 50 per page