0
votes
1answer
100 views
Is there a problem in my delphi prism (.net) compiler?
when i try to compile my application in delphi prism, i got these errors
C:\Users\Burak\Documents\Visual Studio 2008\Projects\Project1\WindowsApplication1\WindowsApplication1\Main.pas(6,3) : Error …
0
votes
1answer
74 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
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;
…
1
vote
5answers
163 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] := …
1
vote
3answers
111 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
181 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.
0
votes
1answer
40 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
173 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
158 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 …
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 having vista on my …
1
vote
1answer
114 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
363 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
230 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
61 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 …
