2
votes
2answers
103 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 …
2
votes
3answers
114 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
1answer
210 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
134 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;
…
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;
…
1
vote
3answers
176 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 …
2
votes
4answers
370 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
4answers
191 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 …
3
votes
5answers
218 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
3answers
208 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
268 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 …
0
votes
1answer
215 views
Integrate Delphi ISAPI DLL into an ASP.NET web application
Hi guys,
We have all the code in Delphi and it is hard to create a new ASMX / SVC File directly in .NET because it uses encryption and weird stuff :) as it would take around 2 weeks to convert and to …
2
votes
2answers
170 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 putting private …
0
votes
1answer
115 views
No methods showing up from imported Type Library in Delphi
This is what i am doing: I am currently required to open and use a .NET assembly in delphi. The Assembly that i am trying to use also has an assembly of objects it is using. I was able to use regasm …
