active questions tagged delphi+.net - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:41:05Zhttp://stackoverflow.com/feeds/tag/delphi+.nethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1769969/marshaling-delphi-5-olevariant-to-c0Marshaling Delphi 5 OleVariant to C#ulrikj2009-11-20T11:45:38Z2009-11-21T12:09:51Z
<p>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:</p>
<pre><code>function SimpleExport: OleVariant; stdcall;
function BiDirectionalExport(X: OleVariant; var Y: OleVariant): OleVariant; stdcall;
</code></pre>
<p>I wish to set these up as delegates using Marshal.GetDelegateForFunctionPointer, but I'm having trouble getting the data Marshaled correctly. I'm using kernel32 imports of LoadLibrary and GetProcAddress, so I'm relying on GetDelegateForFunctionPointer to do my actual marshaling, not static p/invoke declarations.</p>
<p>Since the .NET marshaling services can marshal objects to COM OleVariants, I tried this. But this causes an exception: "PInvoke restriction: can not return variants.". So I'm figuring I need to use a custom marshaller.</p>
<p>What's the correct way to Marshal a Delphi 5 OleVariant into something .NET readable?</p>
http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c0How should I call this native dll function from C#?Blorgbeard2009-11-09T23:56:35Z2009-11-10T12:43:26Z
<p>Here's the native (Delphi 7) function:</p>
<pre><code>function Foo(const PAnsiChar input) : PAnsiChar; stdcall; export;
var
s : string;
begin
s := SomeInternalMethod(input);
Result := PAnsiChar(s);
end;
</code></pre>
<p>I need to call this from C#, but the name of the dll is not known at compile time - so I must use LoadLibrary to get to it.</p>
<p>This is what my C# code looks like so far:</p>
<pre><code>[DllImport("kernel32.dll")]
public extern static IntPtr LoadLibrary(String lpFileName);
[DllImport("kernel32.dll")]
public extern static IntPtr GetProcAddress(IntPtr handle, string funcName);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
private delegate string FooFunction(string input);
...
IntPtr dllHandle = LoadLibrary(dllName);
IntPtr fooProcAddr = GetProcAddress(dllHandle, "Foo");
FooFunction foo = (FooFunction)Marshal.GetDelegateForFunctionPointer(
fooProcAddr, typeof(FooFuncion)
);
string output = foo(myInputString);
</code></pre>
<p>Now, this actually works - at least, the delphi code receives the string correctly, and the C# code receives the output string.</p>
<p>However, I've noticed some weirdness when debugging the delphi code when it's called from the C# code - the debugger skips lines when it shouldn't.. </p>
<p>And I'm concerned that I'm leaking memory - is anyone cleaning up those PChars?</p>
<p>Can anyone give me some feedback / advice on how this should be done?</p>
http://stackoverflow.com/questions/1699860/what-is-the-best-way-to-convert-bytes-to-cardinal-and-vice-versa1What is the best way to convert Bytes to Cardinal and vice versaRunner2009-11-09T09:01:43Z2009-11-09T16:36:24Z
<p>I have The following code for now.</p>
<pre><code>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] := (Data shr 16) and 255;
Result[2] := (Data shr 8) and 255;
Result[3] := Data and 255;
end;
function BytesToCardinal(const Data: TByte4): Cardinal;
begin
Result := (Data[0] * 16777216) +
(Data[1] * 65536) +
(Data[2] * 256) +
Data[3];
end;
</code></pre>
<p>I am wondering if this is the fastest and most efficient way (I am sure it is not :) ). The catch is this has to work in compact framework under Delphi 2006 (don't even ask).
I am using it in a TEA encryption algorithm that works with Ansi and Unicode versions of Delphi and also with .NET and .NET compact framework in Delphi 2006. </p>
<p>So no "Move" and similar functions that work with pointers are allowed (no i do not want unsafe code).</p>
<p><strong>Edit:</strong> </p>
<p>I still haven't found a better way to do this. Some great suggestion were given, but they all fail in .NET. I am afraid I will not spend any more time on a dead road. VCL .NET is dead, so is CF in delphi I am afraid. So this will have to do for maintaining this project. I will stil wait for while if somebody proves me wrong and gets the code to compile in .NET</p>
<p><strong>Edit2:</strong> </p>
<p>The solution was simple as it is in most cases. Somebody just had to look for the obvious solution. I just didn't know anymore that there is a BitConverter class in .NET</p>
http://stackoverflow.com/questions/1624615/how-to-generate-a-winform-application-with-delphi-and-net-respectively1How to generate a winform application with delphi and .Net respectively?Mask2009-10-26T12:54:51Z2009-10-28T20:56:38Z
<p>I need to make a choice between the two languages,both of which are new to me.</p>
<p>I want to choose the simpler one.</p>
<p>Also,please mention about the setups needed to run the programme.</p>
http://stackoverflow.com/questions/1624321/net-component-in-delphi-20092.NET component in DELPHI 2009Constantine2009-10-26T11:33:55Z2009-10-28T00:58:23Z
<p>Hi,</p>
<p>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.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1629260/how-to-use-winform-control-virtualtree-of-infralution-in-vcl-net0How to use winform control VirtualTree of infralution in VCL.net?Martijn van der Kooij2009-10-27T07:40:06Z2009-10-27T08:32:25Z
<p>Hi,</p>
<p>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.</p>
<p>VirtualTree
<a href="http://www.infralution.com/forums.html" rel="nofollow">http://www.infralution.com/forums.html</a></p>
http://stackoverflow.com/questions/1585453/detect-windows-explorer-copy-operation1detect Windows Explorer copy operationAttilah2009-10-18T17:11:07Z2009-10-21T09:46:20Z
<p>Is there any way to detect whenever a copy operation starts in Windows Explorer.</p>
<p>kind of like in SuperCopier : <a href="https://sourceforge.net/projects/supercopier/" rel="nofollow">SuperCopier Website</a> ?</p>
<p>and log files involved in the operation ? and such ?</p>
<p>I've browsed through Supercopier code and I can't find the part which deals with detecting the copy operation, as I'm not fluid in Delphi.</p>
<p>P.S : it seems they are using a Shell Extension ...not sure though.</p>
http://stackoverflow.com/questions/1583990/complete-xml-schema-validation4Complete XML Schema ValidationJim McKeeth2009-10-18T04:12:53Z2009-10-19T19:32:24Z
<p>I am looking for a tool that will tell me <strong>all</strong> 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 tell me the next errors. I realize that some errors may be dependent on other nodes being in different orders, but things like data types being formatted wrong should be able to be reported even if the nodes are in the wrong order. </p>
<p>I have already looked through the other tools suggest for other questions on here, and they all stop after the first failure. So if one of those tools will do what I want, then please let me know the steps to accomplish that.</p>
<p>A programming library or technique that will let me do this in .NET or Delphi would work to.</p>
http://stackoverflow.com/questions/548007/what-are-the-advantages-of-c-over-say-delphi-realbasic-for-windows-application4What are the advantages of c# over, say, delphi/realbasic for windows applicationskjack2009-02-13T22:53:33Z2009-10-15T10:41:38Z
<p>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 machine I had to download 35 MB of the 3.5 framework and reboot to then try out an app half that size.</p>
<p>When you factor in the decreased source code security I wonder why anyone would anyone develop a windows application in .net rather than in a language that allowed for the building of native executables. </p>
<p>What is superior about .net that outshadows these drawbacks when it comes to writing applications to run on windows.</p>
http://stackoverflow.com/questions/1487546/regsvr32-and-desktop-authority1Regsvr32 and Desktop authorityAndy2009-09-28T15:02:50Z2009-09-28T17:53:41Z
<p>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 our .NET application so i have to register the assembly with regsvr32 with the installation. Although i have ran into problems if i register from desktop authority using a batch file, or even a exe that calls regsvr32, the assembly crashes when trying to load. I get a COm Exception saying there was an error retrieving Com Class factory Error: 800401f9. I have registered the assembly locally and it will work fine. I have also tried adding the registry keys directly to the installer and that doesn't work either, same error. Is there a way i can get this working from Desktop Autority or installer?</p>
http://stackoverflow.com/questions/1448372/how-to-detect-windows-logon-event2How to detect Windows Logon event ?Attilah2009-09-19T11:28:21Z2009-09-21T14:33:33Z
<p>How do you detect Windows logon event?</p>
<p>And how do you initiate a user logon from a Windows service?</p>
<p>I'm trying to write a piece of code that will detect logon events and log another one automatically.</p>
http://stackoverflow.com/questions/1434680/calling-net-assembly-using-xslt-from-delphi-5-win32-assembly0Calling .NET assembly using Xslt from Delphi 5 Win32 assembly.beef2009-09-16T18:25:02Z2009-09-17T07:07:58Z
<p>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 is the code for the C# assembly I am attempting to execute from the Delphi 5 assembly.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Xsl;
using System.Xml.Linq;
using System.IO;
namespace Company.Program.Utils.Xml
{
public class XmlExtensions
{
public XmlExtensions(){
}
public static void Transform(string XmlPath, string XsltPath)
{
MessageBox.Show(string.Format("{0}\n{1}",XmlPath, XsltPath));
XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load(XsltFile);
MessageBox.Show("Done.");
}
}
}
</code></pre>
<p>I have wrapped the static method above with a C++/CLI assembly. Here is header file for the “IL-Bridge” portion of the C++/CLI assembly.</p>
<pre><code>#pragma once
#pragma managed
using namespace Company::Program::Utils::Xml;
void ILBridge_XmlFunc(wchar_t *first, wchar_t *second)
{
System::String^ __Param_first = gcnew System::String(first);
System::String^ __Param_second = gcnew System::String(second);
XmlExtensions::Transform(__Param_first, __Param_second);
}
</code></pre>
<p>Here is the header file of the unmanaged portion of the C++/CLI assembly. Note this is also the portion that is intended to be callable from the Delphi 5 assembly (Win32).</p>
<pre><code>#pragma once
#pragma unmanaged
extern "C"{
__declspec(dllexport) public void TransformXml(wchar_t *XmlPath, wchar_t *XsltPath);
}
</code></pre>
<p>Here is the implementation of the previous header files. Note one portion is managed and the other unmanaged.</p>
<pre><code>#include "stdafx.h"
#pragma managed
#include "ILBridge_XmlFunc.h"
#pragma unmanaged
#include "XmlTransform.h"
void TransformXml(wchar_t *XmlPath, wchar_t *XsltPath)
{
ILBridge_XmlFunc(XmlPath, XsltPath);
}
</code></pre>
<p>Finally here is the code for the Delphi 5 assembly utilizing the compiled C++/CLI assembly. The C++/CLI compiled DLL is named XmlUtils.dll</p>
<pre><code>unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TransformXml(XmlPath, XsltPath: PWideChar); cdecl; external 'XmlUtils.dll';
procedure TForm1.Button1Click(Sender: TObject);
var
str1, str2 : PWideChar;
begin
str1 := 'C:\\Users\\Public\\data.xml';
str2 := 'C:\\Users\\Public\\transform.xslt';
TransformXml(str1, str2);
end;
end.
</code></pre>
<p>I am successful in calling the .NET assembly with the code above. If you go back to the first set of code (the C# code), the first line ran in the function is…</p>
<pre><code>MessageBox.Show(string.Format("{0}\n{1}",XmlPath, XsltPath));
</code></pre>
<p>which runs successfully and shows the strings have been passed correctly. It isn’t until I hit this line…</p>
<pre><code>xslt.Load(XsltFile);
</code></pre>
<p>of the C# code I get an External Exception Error from Delphi’s just-in-time debugger. The error says “Exception E0434F4D”. Can you guys help me troubleshoot this and explain its origin?</p>
<p>Edit:
The exception thrown from the .NET DLL is a System Arithmetic Exception. Again, this only happens when called from the Delphi DLL. If I catch the exception in the .NET DLL and just run <strong>xslt.Load(XsltFile)</strong> again (in the catch block) it seems to run fine.</p>
http://stackoverflow.com/questions/1407537/cardspace-and-delphi-2007-win320CardSpace and Delphi 2007/WIN32Workshop Alex2009-09-10T20:28:10Z2009-09-14T11:37:12Z
<p>Very simple problem. I have a Delphi application and I want to restrict access to this by requiring users to log on using <a href="http://en.wikipedia.org/wiki/Windows%5FCardSpace" rel="nofollow">CardSpace</a>. Basically, I need to extract the ID, name and address information from the cardspace card.</p>
<p>The use of CardSpace is a requirement from a customer and I just want to know if:</p>
<ol>
<li>Can CardSpace be easily used from Delphi? </li>
<li>Is there already a Delphi component for CardSpace?</li>
</ol>
<p>The biggest problem? The application needs to be a WIN32 application, although CardSpace is .NET based.</p>
http://stackoverflow.com/questions/1375104/does-building-a-delphi-project-with-msbuild-create-net-dependencies2Does building a Delphi project with MSBuild create .Net dependencies?JimDaniel2009-09-03T18:24:44Z2009-09-05T20:19:54Z
<p>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 process (now using team build with msbuild) the app won't run without .Net. I am just trying to narrow things down, so I'd appreciate any help you guys can provide...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1256591/anyone-heard-of-accessibilitytlb1Anyone heard of Accessibility_TLBAndy Xufuris2009-08-10T18:55:38Z2009-08-10T20:31:22Z
<p>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 problem where my PAS file is asking for System_Windows_Forms_TLB which i was able to find and add. But then that file uses Accessibility_TLB and i have no clue where that is? Does anyone know wherethat is or am i doing something wrong here? Sorry i'm not experienced at all dealing with COM's.</p>
http://stackoverflow.com/questions/1204769/does-net-has-an-exception-that-similar-to-delphis-eabort0Does .NET has an Exception that similar to Delphi's EAbort ?Sake2009-07-30T06:22:58Z2009-07-30T08:24:36Z
<p>Does .NET has an Exception that similar to Delphi's EAbort ?</p>
<p>Currently, define my own "AbortProcess" inheriting Exception.
Together with My.Application.UnhandledException handler that ignoring "AbortProcess"
I'm still wondering if similar mechanic in .NET is already exists.</p>
<pre><code>Class AbortProcess
Inherits System.Exception
End Class
Sub Abort()
Throw New AbortProcess()
End Sub
Sub AppDomain_UnhandledException(ByVal sender As Object, ByVal e As ApplicationServices.UnhandledExceptionEventArgs)
If TypeOf e.Exception Is AbortProcess Then
e.ExitApplication = False
End If
End Sub
Sub PerformActions()
Action1()
If Not Action2() Then
Abort()
End If
Action3()
...
End Sub
</code></pre>
<p>How does typical .NET developer handle this use case ?</p>
http://stackoverflow.com/questions/1164226/how-to-access-the-member-of-a-classcreated-in-c-in-dephi2How to access the member of a class(created in c#) in dephiSarathi19042009-07-22T09:58:55Z2009-07-22T10:11:14Z
<p>I have created a lib which contains DateRange class in c#. I have created .dll and .tlb for that lib and registered the .tlb file. All the necessary steps has been done.</p>
<p>In Delphi, i used import type library option to produce a unit which contain the information of all classes which i created in c#. </p>
<p>Problem: I dont know how to use the member of DateRange class. Please help me.</p>
<p>Code I used in Delphi is...</p>
<pre><code>program COMTesting;
{$APPTYPE CONSOLE}
uses
SysUtils,
ComObj,
MCenterComService_TLB in 'MCenterComService_TLB.pas';
var dr:DateRange;
begin
dr:= createComObject(CLASS_DateRange) as DateRange;
dr.fromdate:= date('4/16/2009');
dr.todate:= date('4/16/2009');
end.
</code></pre>
<blockquote>
<p>System says : [DCC Error] COMTesting.dpr(18): E2003 Undeclared identifier: 'fromdate'</p>
</blockquote>
http://stackoverflow.com/questions/1091814/sending-a-binary-stream-through-soap1Sending a binary stream through SOAP.Workshop Alex2009-07-07T11:28:08Z2009-07-07T19:02:05Z
<p>I have a "simple" task. I have an existing project with a web service written in C# which has a method that will send a huge XML file to the client. (This is a backup file of data stored on the server that needs to be sent somewhere else.) This service also had some additional authentication/authorization set up.
And I have an existing Delphi 2007 application for WIN32 which calls the web service to extract the XML data for further processing. It's a legacy system that runs without a .NET installation.
Only problem: the XML file is huge (at least 5 MB) and needs to be sent as a whole. Due to system requirements I cannot just split this up into multiple parts. And I'm not allowed to make major changes to either the C# or the Delphi code. (I can only change the method call on both client and server.) And I'm not allowed to spend more than 8 (work) hours to come up with a better solution or else things will just stay unchanged.</p>
<p>The modification I want to add is to compress the XML data (which reduces it to about 100 KB) and then send it to the client as a binary stream. The Delphi code should then accept this incoming stream and de compress the XML data again. Now, with a minimum of changes to the existing code, how should this be done?</p>
<p>(And yes, I wrote the original client and server in the past and it was never meant to send that much data at once. Unfortunately, the developer who took it over from me had other ideas, made several dumb changes, did more damage and left the company before my steel-tipped boot could connect to his behind so now I need to fix a few things. Fixing this web service has a very low priority compared to the other damage that needs to be restored.)
<hr />The server code is based on legacy ASMX stuff, the client code is the result of the Delphi SOAP import with some additional modifications.
The XML is a daily update for the 3000+ users which happens to be huge in it's current design. We're working on this but that takes time. There are more important items that need to be fixed first, but as I said, there's a small amount of time available to fix this problem quickly.</p>
http://stackoverflow.com/questions/1055347/speech-recognition-from-audio-file-instead-of-microphone5speech recognition from audio file instead of microphoneAttilah2009-06-28T17:38:30Z2009-06-28T17:43:47Z
<p>Hello,</p>
<p>How can I perform speech recognition on speech coming from an audio file (.mp3, wav) instead of the microphone ?</p>
<p>I want to be able to do that from C#.NET and Delphi.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware15What language or RAD IDE do you recommend for building shareware?Norman2008-10-07T16:33:04Z2009-06-17T01:03:23Z
<p>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 technology allows me to create beautiful native UI with ease.</p>
<p>.NET has a large VM dependency that I'm not crazy about. I was thinking about Delphi, but the world around it seems to be almost dead.</p>
<p>What do you recommend?</p>
http://stackoverflow.com/questions/74386/using-dlr-from-unmanaged-code3Using DLR from Unmanaged CodeBob2008-09-16T16:44:27Z2009-06-05T19:45:22Z
<p>Is it possible to call managed code, specifically IronRuby or IronPython from unamanaged code such as C++ or Delphi?</p>
<p>For example, we have an application written in Delphi that is being moved to C#.NET We'd like to provide Ruby or Python scripting in our new application to replace VBSCRIPT. However, we would need to provide Ruby/Python scripting in the old Delphi application. Is it possible to use the managed dlls provided by IronRuby/IronPython from Delphi code?</p>
http://stackoverflow.com/questions/925348/printing-to-pdf2printing to pdfAnna2009-05-29T10:30:03Z2009-06-05T14:18:55Z
<p>The existing system has many reports . Using a free pdf printer like dopdf or cutepdf the user can open the report , choose the pdf printer , type in the filename and save the report as a pdf file.This seems a bit tedious</p>
<p>It would be nice to have the report directly saved as a pdf file just on click of a button.
Unfortunately the reporting tool component doesnt have pdf export functionality.
. Is there a way to programatically do this function using a third party component.</p>
<p>The printing should be silent , so that the user is not asked for a filename.Report 1 when clicked will make a file called c:\1.pdf for example.
something like this
ActivatePdfPrinter(c:\1.pdf);
printreport;
ClosePdfPrinter;</p>
<p>or any other method .</p>
<p>I use delphi but if you suggest any other tools that work in other programming languages then I can search in the right direction.</p>
http://stackoverflow.com/questions/954587/net-equivalent-of-delphis-forcedirectory2.NET equivalent of Delphi's forceDirectoryno_one2009-06-05T07:06:16Z2009-06-05T07:09:53Z
<p>Does anyone know what's the .NET/C# equivalent of Delphi's forceDirectory function ? For who don't know delphi, forceDirectory creates all the directories in a given path if it doesn't exist.</p>
http://stackoverflow.com/questions/380304/free-ide-for-delphi-prism0Free IDE for Delphi PrismLennie2008-12-19T07:42:29Z2009-05-29T04:44:30Z
<p>Hi, I've the Delphi Prism command line compiler... is there a free IDE that I can use? Must have intellisense etc just a plain editor no drag-drop required.</p>
http://stackoverflow.com/questions/919275/embedding-mono-in-delphi-win324Embedding Mono in Delphi Win32David Taylor2009-05-28T05:14:42Z2009-05-28T16:18:13Z
<p>Does anyone know the specifics of how to embed the Mono runtime in a Delphi Win32 application? The official documentations is not very helpful with regards to the Win32 environment (<a href="http://www.mono-project.com/Embedding%5FMono" rel="nofollow">www.mono-project.com/Embedding_Mono</a>).</p>
<p>Upate:</p>
<p>I am very familiar with the vagaries of static linking in Delphi and would be perfectly happy with a DLL. Mono itself has dependencies so one more DLL is really no big deal. The comment about FPU control word is one of my concerns since I believe the CG default settings are different than Microsoft tools. Here is what I believe is needed:</p>
<ul>
<li>Header translation from "C" to Delphi (probably not too hard)</li>
<li>Compilation of the Mono DLL (is the one shipped with Mono usable?)</li>
<li>A better understanding of FPU control word goctha's (hopefully none)</li>
<li>Some feedback from someone that has the battle scars from having tried this stunt ;)</li>
</ul>
http://stackoverflow.com/questions/840741/urgent-help-with-decompression-in-c0Urgent Help with decompression in c#Tim 2009-05-08T16:41:02Z2009-05-08T17:30:09Z
<p>Hi</p>
<p>I have some delphi code that did this needs to be re coded in c#:</p>
<pre><code>procedure TDocSearchX.Decompress;
var
BlobStream:TBlobStream;
DecompressionStream:TDecompressionStream;
FileStream:TFileStream;
Buffer:array[0..2047] of byte;
count:integer;
begin
BlobStream:=TBlobStream.Create(DocQueryDATA,bmRead);
DecompressionStream:=TDecompressionStream.Create(BlobStream);
FileStream:=TFileStream.Create(FDocFile,fmCreate);
while True do
begin
Count := DecompressionStream.Read(Buffer, 2048);
if Count <> 0 then FileStream.Write(Buffer, Count) else Break;
end;
Blobstream.Free;
DecompressionStream.Free;
FileStream.Free;
end;
</code></pre>
<p>The contractor that wrote is leaving and I need to decompress the image (that is currently stored in the database). I have been able to extract the image to a file but have no idea how to decompress it using c# ?? </p>
<p>Please help.</p>
<p>-Tim</p>
http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win321.NET remoting and Delphi win32Harriv2009-04-27T08:07:22Z2009-05-06T17:25:10Z
<p>Hi,</p>
<p>Is it possible (and feasible) to use .NET Remoting interface with Delphi win32 application?</p>
<p>I need communication between .NET application and Delphi win32 application, so .NET remoting would be native for other end of the pipe.</p>
<p>Any other solutions, as close to native as possible, for both ends without 3rd party libraries? Applications will be running each on a separate Windows machine.</p>
http://stackoverflow.com/questions/815066/need-help-to-converting-delphi-time-to-net-time1Need Help to Converting Delphi Time to .Net TimeJimDaniel2009-05-02T15:42:25Z2009-05-03T07:27:36Z
<p>I am porting a Delphi application to C# and I've run into a problem. The Delphi app records the time into a log file, which then gets read back into the program. But the format of the time it records confuses me. I can find no .Net library to convert it properly.</p>
<p>Delphi recorded time in log file: 976129709
(this gets converted to 1/14/2009 5:53:26 PM in the Delphi code)</p>
<pre><code>//Here is the Delphi code which records it:
IntToStr(DirInfo.Time);
//Here is the Delphi code which reads it back in:
DateTimeToStr(FileDateToDateTime(StrToInt(stringTime));
</code></pre>
<p>Anybody have any ideas how I can read this in .Net?</p>
http://stackoverflow.com/questions/800867/hosting-clr-versus-using-clrcreatemanagedinstance-what-are-the-benefits1Hosting CLR versus using ClrCreateManagedInstance - what are the benefits?Sergey Aldoukhov2009-04-29T04:25:29Z2009-05-01T00:14:07Z
<p>I have successfully implemented interop beftween Win32 application and managed .Net dll as described <a href="http://stackoverflow.com/questions/787303/how-to-use-net-assembly-from-win32-without-registration">here</a>. But I also read <a href="http://stackoverflow.com/questions/258875/hosting-the-net-runtime-in-a-delphi-program">here</a> that it is possible to host the entire CLR inside of the unmanaged process.</p>
<p>So my question is: why would you do that? It is somewhat more complex than just use an object - what benefits you gain for this price of increased complexity?</p>
<p>Edit: what I understood from 2 first answers, is that you get the possibility to customize the CLR for your needs - meaning if you're writing a simple business app, you'll never need to host. Hosting is for system-heavy stuff, like browser or SQL Server.</p>
http://stackoverflow.com/questions/776174/jcldotnet-and-some-odd-calling-patterns-using-assembler1JclDotNet, and some odd calling patterns using assemblerLasse V. Karlsen2009-04-22T08:22:18Z2009-04-22T10:27:55Z
<p>We have our own glue-layer-code-thingamajig that allows us to host the .NET runtime in our Win32 Delphi program. This has allowed us to do a gradual transition to .NET over time.</p>
<p>But, we have some problems with it from time to time, and yesterday I saw an answer here on SO that referred to Jcl's .NET host implementation, so I thought I'd take a look to see if there's some obvious differences.</p>
<p>Turns out there is, but I don't understand what it does, why, and whether I need to do the same. I'll certainly try it, but I'd very much like for someone else that understands the reason behind this odd code to tell me what it does.</p>
<p>In time, we might switch to using the Jcl implementation, but since we have an impending release, unless it's absolutely necessary in order to fix the current problems, then a major overhaul at this level of the code is not justified, so please don't just suggest we switch.</p>
<p>Anyway, the difference revolves around how they call into the .NET functions to load and bind to the .NET runtime, basically how they call the exported functions from the .NET dll.</p>
<p>Here's my code:</p>
<pre><code>type
TCorBindToRuntimeEx = function(pwszVersion: PWideChar;
pwszBuildFlavor: PWideChar;
startupFlags: DWord; rclsid, riid: PGUID;
out ppv: IUnknown): Integer; stdcall;
...
var
CorBindToRuntimeEx : TCorBindtoRuntimeEx = nil;
...
CorBindToRuntimeEx := GetProcAddress(Runtimehandle, 'CorBindToRuntimeEx');
...
clsid := CLASS_CorRuntimeHost;
iid := IID_ICorRuntimeHost;
rc := CorBindToRuntimeEx('v2.0.50727', 'wks', 0, @clsid,
@iid, UnkRuntimeEngine);
</code></pre>
<p>Now, here I simply use GetProcAddress to load the address of the exported function into a variable, typed to be a <code>stdcall</code> function pointer, and then I call it. This works, sort of. As I said, some problems with odd error messages in a few cases.</p>
<p>Ok, here's their code, and pay particular attention to the function with the assembler code.</p>
<pre><code>function CorBindToRuntimeEx(pwszVersion, pwszBuildFlavor: PWideChar;
startupFlags: DWORD; const rclsid: TCLSID; const riid: TIID;
out pv): HRESULT; stdcall;
{$EXTERNALSYM CorBindToRuntimeEx}
...
var
_CorBindToRuntimeEx: Pointer = nil;
function CorBindToRuntimeEx;
begin
GetProcedureAddress(_CorBindToRuntimeEx, mscoree_dll,
'CorBindToRuntimeEx');
asm
mov esp, ebp
pop ebp
jmp [_CorBindToRuntimeEx]
end;
end;
...
OleCheck(CorBindToRuntimeEx(PWideCharOrNil(ClrVer),
PWideChar(ClrHostFlavorNames[Flavor]), Flags,
CLASS_CorRuntimeHost, IID_ICorRuntimeHost,
FDefaultInterface));
</code></pre>
<p><em>Note that I've reformatted the code slightly to avoid horizontal scrollbars here on SO, but only to add a few linebreaks and some indentation, the code is as-is.</em></p>
<p>The final call is probably irrelevant, it's basically going to pass the same parameters that we do (note that we pass 0 as the options value, but we've also tried with the same specific arguments the Jcl code uses, and the problems are still present).</p>
<p>So, my question is, what the he** does the assembler code do? I know what it does in the technical sense, I've been programming assembly before, so it manipulates the stack pointers.</p>
<p>The question is why does it have to do this. I just don't get it.</p>
<p>Could it be that the stack-frames are not <em>quite</em> <code>stdcall</code> after all?</p>
<p>Please teach me something today.</p>
<p><hr /></p>
<p><strong>Edit</strong>: Ok, changed my code accordingly, but the problem we have still exists, so that wasn't it. Looks like I'll be doing some WinDbg digging into third-party code after all.</p>