0
votes
2answers
90 views
How to get Title, cookies, and post data for all tabs in IE
hey!
I need a way to get Following data for all Tabs of IE :
Titles of all Tab instances.
Post Data when a form is submitted.
All Cookies
Actually my client wants to keep tab on his employees …
0
votes
1answer
101 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 …
1
vote
5answers
165 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
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;
…
0
votes
1answer
79 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: …
14
votes
25answers
2k views
What language or RAD IDE do you recommend for building shareware?
I'm looking for an IDE for developing commercial desktop applications to be sold over the internet, as a mISV. Windows is a must, while Mac is a nice to have. An important factor is that the …
4
votes
5answers
166 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
3answers
113 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.
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 …
2
votes
4answers
184 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
41 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
…
0
votes
2answers
238 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 …
2
votes
4answers
374 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
4answers
178 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
1answer
117 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 …
