0
votes
1answer
60 views
Marshaling Delphi 5 OleVariant to C#
I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:
function SimpleExport: OleVariant; stdcall;
function BiDirectionalExport(X: …
0
votes
2answers
125 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
5answers
153 views
What is the best way to convert Bytes to Cardinal and vice versa
I have The following code for now.
type
TByte4 = array[0..3] of Byte; // 32-bit
function CardinalToBytes(const Data: Cardinal): TByte4;
begin
Result[0] := (Data shr 24) and 255;
Result[1] := …
0
votes
1answer
38 views
How to use winform control VirtualTree of infralution in VCL.net?
Hi,
I'm trying to use the VirtualTree of Infralution in VCL.NET, does anyone knows how to do this? In Delphi 8 was a wrapper tool, but i'm using Delphi 2007.
VirtualTree
…
1
vote
3answers
104 views
How to generate a winform application with delphi and .Net respectively?
I need to make a choice between the two languages,both of which are new to me.
I want to choose the simpler one.
Also,please mention about the setups needed to run the programme.
2
votes
4answers
170 views
.NET component in DELPHI 2009
Hi,
Could you please tell me if .NET component can be used with Delphi 2009 and, if so, could you please send me some example code.
Thanks in advance.
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 …
4
votes
5answers
146 views
Complete XML Schema Validation
I am looking for a tool that will tell me all of the XML Schema validation failures. All the other tools I have looked at so just tell me the first couple, and then I have to fix those before it will …
1
vote
1answer
109 views
Regsvr32 and Desktop authority
I am registering a delphi assembly using regsvr32. We are currently using Desktop Authority to deploy our installation package for the .NET application. We are needing to use the delphi assembly in …
2
votes
4answers
332 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 …
0
votes
2answers
203 views
Calling .NET assembly using Xslt from Delphi 5 Win32 assembly.
This is my first attempt to call a .NET assembly from a Delphi 5 (Win32) native assembly. I am only familiar with C# and .NET so please bear with me.
I guess I will walk thru this layer by layer. Here …
0
votes
1answer
59 views
CardSpace and Delphi 2007/WIN32
Very simple problem. I have a Delphi application and I want to restrict access to this by requiring users to log on using CardSpace. Basically, I need to extract the ID, name and address information …
2
votes
4answers
177 views
Does building a Delphi project with MSBuild create .Net dependencies?
This may be a stupid question, as I'm not sure how MSBuild works with Delphi under the hood, but we have a Delphi app that needs to run with no .Net dependencies, and since we have updated our build …
1
vote
2answers
92 views
Anyone heard of Accessibility_TLB
I have been working on converting a assembly of mine to be usable through Delphi. I was able to convert the assembly to a PAS file and call the method in my delphi application. But i ran into a …
0
votes
4answers
155 views
Does .NET has an Exception that similar to Delphi’s EAbort ?
Does .NET has an Exception that similar to Delphi's EAbort ?
Currently, define my own "AbortProcess" inheriting Exception.
Together with My.Application.UnhandledException handler that ignoring …
