active questions tagged delphi+c# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T22:55:31Z http://stackoverflow.com/feeds/tag/delphi+c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/530052/looking-for-a-pdf-file-parser 1 Looking for a PDF file parser. Toby Allen 2009-02-09T21:28:43Z 2009-12-01T07:33:11Z <p>Does anyone know of a PDF file parser that I could use to pull out sections of text from the plaintext pdf file? Specifially I want a way to be able to reliably pull out the section of text specific to annotations?</p> <p>Delphi, C# RegEx I dont mind.</p> http://stackoverflow.com/questions/1807233/converting-delphi-code-for-unmanaged-dll-to-c 2 Converting Delphi code for unmanaged dll to C# Riaan 2009-11-27T07:23:31Z 2009-11-29T20:50:55Z <p>Hi. </p> <p>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#.</p> <p>The legacy code I'm currently struggling with is that of calling a function from a 3rd party application's non-COM DLL.</p> <p>Here is the C-style header and struct used for the specific function:</p> <pre><code>/*** C Function AwdApiLookup ***/ extern BOOL APIENTRY AwdApiLookup( HWND hwndNotify, ULONG ulMsg, BOOL fContainer, CHAR cObjectType, SEARCH_CRITERIA* searchCriteria, USHORT usCount, USHORT usSearchType, VOID pReserved ); /*** C Struct SEARCH_CRITERIA ***/ typedef struct _search_criteria { UCHAR dataname[4]; UCHAR wildcard; UCHAR comparator[2]; UCHAR datavalue[75]; } SEARCH_CRITERIA; </code></pre> <p>In our Delphi code, we have converted the above function and structure as:</p> <pre><code>(*** Delphi implementation of C Function AwdApiLookup ***) function AwdApiLookup(hwndNotify: HWND; ulMsg: ULONG; fContainer: Boolean; cObjectType: Char; pSearchCriteria: Pointer; usCount: USHORT; usSearchType: USHORT; pReserved: Pointer): Boolean; stdcall; external 'AWDAPI.dll'; (*** Delphi implementation of C Struct SEARCH_CRITERIA ***) TSearch_Criteria = record dataname: array [0..3] of char; wildcard: char; comparator: array [0..1] of char; datavalue: array [0..74] of char; end; PSearch_Criteria = ^TSearch_Criteria; </code></pre> <p>and the way we call the above mentioned code in Delphi is:</p> <pre><code>AwdApiLookup(0, 0, true, searchType, @criteriaList_[0], criteriaCount, AWD_USE_SQL, nil); </code></pre> <p>where criteriaList is defined as </p> <pre><code>criteriaList_: array of TSearch_Criteria; </code></pre> <p>After all that is said and done we can now look at the C# code, which I cannot get to work. I'm sure I'm doing something wrong here, or my C header is not translated correctly. My project does compile correctly, but when the function is called, I get a "FALSE" value back, which indicates that the function did not execute correctly in the DLL.</p> <p>My C# code thus far:</p> <pre><code>/*** C# implementation of C Function AwdApiLookup ***/ DllImport("awdapi.dll", CharSet = CharSet.Auto)] public static extern bool AwdApiLookup(IntPtr handle, ulong ulMsg, bool fContainer, char cObjectType, ref SearchCriteria pSearchCriteria, ushort usCount, ushort usSearchType, Pointer pReserverd); /*** C# implementation of C Struct SEARCH_CRITERIA ***/ [StructLayout(LayoutKind.Sequential)] public struct SearchCriteria { private readonly byte[] m_DataName; private readonly byte[] m_Wildcard; private readonly byte[] m_Comparator; private readonly byte[] m_DataValue; public SearchCriteria(string dataName, string comparator, string dataValue) { m_DataName = Encoding.Unicode.GetBytes( dataName.PadRight(4, ' ').Substring(0, 4)); m_Wildcard = Encoding.Unicode.GetBytes("0"); m_Comparator = Encoding.Unicode.GetBytes( comparator.PadRight(2, ' ').Substring(0, 2)); m_DataValue = Encoding.Unicode.GetBytes( dataValue.PadRight(75, ' ').Substring(0, 75)); } public byte[] dataname { get { return m_DataName; } } public byte[] wildcard { get { return m_Wildcard; } } public byte[] comparator { get { return m_Comparator; } } public byte[] datavalue { get { return m_DataValue; } } } </code></pre> <p>My C# call to the C# function looks like this</p> <pre><code>var callResult = UnsafeAwdApi.CallAwdApiLookup(IntPtr.Zero, 0, true, 'W', ref searchCriteria[0], criteriaCount, 66, null); </code></pre> <p>where searchCriteria and criteriaCount is defined as </p> <pre><code>List&lt;SearchCriteria&gt; criteriaList = new List&lt;SearchCriteria&gt;(); var searchCriteria = criteriaList.ToArray(); var criteriaCount = (ushort)searchCriteria.Length; </code></pre> <p>and adding data to searchCriteria:</p> <pre><code>public void AddSearchCriteria(string dataName, string comparator, string dataValue) { var criteria = new SearchCriteria(); criteria.DataName = dataName; criteria.Wildcard = "0"; criteria.Comparator = comparator; criteria.DataValue = dataValue; criteriaList.Add(criteria); } </code></pre> <p>Like I said, my code compiles correctly, but when the function executes, it returns "FALSE", which should not be the case as the Delphi function does return data with the exact same input.</p> <p>I know I'm definitely doing something wrong here, and I've tried a couple of things, but nothing seems to be working.</p> <p>Any assistance or nudge in the right direction would be greatly appreciated.</p> <p>Thanks, Riaan</p> http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi 1 Should I start my new shareware project in C# or Delphi? [closed] Hansel 2009-11-26T04:46:50Z 2009-11-28T08:03:30Z <p>I want my code to be as secure as possible.</p> http://stackoverflow.com/questions/242584/will-you-use-delphi-prism 11 Will you use Delphi Prism Mohammed Nasman 2008-10-28T08:49:05Z 2009-11-28T04:34:13Z <p>CodeGear announces that their Next .Net product which is known as <strong>Delphi Prism</strong> Will be the <strong>RemObjects's Oxygene</strong>.</p> <p>Oxygene has many nice features that not found in Delphi or C#, and I think it will more effective solution for .Net than Delphi .Net previous releases, but it's uses Visual Studio IDE instead of Delphi IDE. which is has some cons and pros.</p> <p>As Delphi Developer or .net Developer, do you consider to use Delphi Prism for .Net developmenet?</p> <p>Look at these Links for more info.</p> <p><a href="http://prismwiki.codegear.com/wiki/Delphi_Prism_vs._CSharp" rel="nofollow">Delphi Prism vs. CSharp</a></p> <p><a href="http://www.bitwisemag.com/2/Delphi-Prism-Visual-Studio-Pascal" rel="nofollow">Delphi Prism - Visual Studio Pascal For .NET</a></p> <p><a href="http://www.codegear.com/products/delphi/prism" rel="nofollow">Delphi Prims home page</a></p> http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c 0 How should I call this native dll function from C#? Blorgbeard 2009-11-09T23:56:35Z 2009-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/12685/what-is-needed-to-get-delphi-back-on-top 32 What is needed to get Delphi back on top? Jim McKeeth 2008-08-15T20:11:14Z 2009-11-07T08:10:40Z <p>Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of popularity before the Inprise fiasco. </p> <p>Many developers with Delphi backgrounds are moving to C# and many Delphi legacy applications are being rewritten in C#, despite the fact Delphi supports .NET and in many cases the existing application could be ported without rewriting. </p> <p>Is it just a losing battle to compete against Microsoft's tools on their platform? Is there something Code Gear / Delphi can do now that they are under new management to regain market share? What can enthusiasts do to help?</p> <p>Why do you do Delphi programming? or Why are you <em>not</em> doing Delphi programming?</p> http://stackoverflow.com/questions/1429213/calling-java-code-from-a-c-com-dll-thats-used-by-a-win32-application 3 Calling Java code from a C# COM DLL that’s used by a WIN32 application? Workshop Alex 2009-09-15T19:35:30Z 2009-10-31T20:22:01Z <p>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 avoid registering the COM object. But now I have a Java-generated .JAR file that I want to call from my application. And while I have access to the Delphi and the C# code, I just don't have access to the Java code.</p> <p>I can do two things. Either I call the Java class from the Delphi code, which would then be called from the C# code which is called again from the Delphi code. Or I just call the Java code directly from C#. (Which is called from Delphi again.)</p> <p>I know this is a complex setup. The Delphi application contains a GUI and some communication modules for some special hardware. There are no .NET drivers for these. The C# code is there to maintain database communication and includes some logic related to CardSpace and other security options. The Java class is a third-party encoding module which is created by an outside party which calculates a special hash code over data in the database and does some additional processing and which controls yet another piece of hardware.</p> <p>Biggest problem: no network communications! It will run on a special computer which has no network hardware installed. It's a stand-alone Windows XP system. While COM, Java and .NET are okay, I cannot use any TCP/IP communications on this system.</p> <p>This would be my next project if I accept it. Already, it's giving me a headache so I think I'll skip this chance, although it does have an interesting mixture of several different languages. I think I'll just tell them to invest a number of 6 digits to buy new hardware instead of spending an amount of nearly 5 digits for 28 days of my work...<hr /> A few details about the project that I can share: </p> <p>The Delphi code is able to connect to a PBX system through a COM port which it uses to send faxes, send and receive SMS messages and to receive simple commands by just entering digits with a phone after calling in. A whole system has been written for this, all based on WIN32 code.</p> <p>The Java code is a client-side module to communicate with a robotics system that monitors the environment, handles a few delicate objects and does constant measurements of those objects. It's in Java so it's platform-independent. The communication between the Java client and the robotic hardware is done through the network and the network hardware/drivers don't like additional chatter over this network. (Which is why it's disabled as much as possible. Not even Windows will get updates.)</p> <p>The C# code is to collect the data from the Java module and to actually store this in-memory writing regular backups in XML, just in case something happens. It's to communicate with the Java module and a few other modules that handle the complex calculations that are written in a .NET compatible domain-specific language this customer developed themselves. These modules don't support COM, thus the c# wrapper.</p> <p>The client now needs an operator to be near the hardware to manipulate the robotics. He can either upgrade the hardware, costing him quite a lot but it would give him better remote access which costs about EUR 250.000 to replace the ancient robotics and other hardware or he pays a few developers a tenth of that amount to get his current hardware to do the same. Personally, I think he should not be such a cheapskate but he just wants an estimate what the developers solution would cost him. The code changes aren't big since most of the functionality is already there. It's just combining it all without any TCP/IP communications that makes it more complex.</p> <p>Basically, the instructions they want to give is to speed things up or slow down, send occasional reports and to send SMS warnings in case of problems. Now, they have an operating sitting next to the screen, drinking coffee all day while reading some newspaper or other magazines. And while that's fun for a few days, he's unable to find someone who wants to do this all the time, 24/7. (Yeah, they work day and night, including weekends.)</p> <p>Basically, this is all I know myself. Haven't even seen the PC that it needs to be installed on but they have a few configured all in the same way so I can get one to experiment with, once this would be needed. (And it will be a Hell to debug too.)<hr />On a final note, I presented the cost estimates and came up with a high enough number to convince my would-be employer to do a hardware upgrade instead. More expensive but it would maintain it's reliability.</p> <p>Because of this, this Q had just become academic...</p> http://stackoverflow.com/questions/1599363/how-to-explicitly-pass-a-program-flow-into-the-finally-block-in-c 0 How to explicitly pass a program flow into the finally block in C#? Wodzu 2009-10-21T08:01:51Z 2009-10-22T09:43:30Z <p>Hi guys.</p> <p>In Delphi I could do something like this:</p> <pre><code>try if not DoSomething then Exit; if not DoSomething2 then Exit; if not DoSomething3 then Exit; finally DoSomethingElse; end; </code></pre> <p>In other means if method <code>DoSomething</code> results false then the program flow is transffered to the finally block and <code>DoSomething2</code> and <code>DoSomething3</code> are not executed.</p> <p>How to achieve such behaviour in C#?</p> <p>Thanks in advance.</p> <p><strong>Edit1:</strong> The below example doesn't compile in VS 2008</p> <p><strong>Edit2:</strong> I am sorry I was to fast and forget the return statement;</p> <pre><code>XElement OrderStatus(q_order_status Request) { XElement Response; try { if (DoSomething() != 0 ) { return; } } catch(Exception e) { // catch some errors and eventually pass the e.Message to the Response } finally { Response = new XElement("SomeTag", "SomeResponse"); } return Response; } </code></pre> <p><strong>Edit3:</strong> After testing it seems that the easiest way to achieve this is to throw an exception if the result of <code>DoSomething1</code> is false. I can throw my own execption, write a specific message and pass it to the finally clause.</p> http://stackoverflow.com/questions/1585453/detect-windows-explorer-copy-operation 1 detect Windows Explorer copy operation Attilah 2009-10-18T17:11:07Z 2009-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/1101578/how-to-consume-non-iis-hosted-wcf-c-web-service-from-delphi-2007 3 How to consume non-IIS hosted, WCF, C# web service from Delphi 2007? Jason Swager 2009-07-09T02:36:59Z 2009-10-16T12:07:30Z <p>I've written a fairly simple little C# web service, hosted from a standalone EXE via WCF. The code - somewhat simplified - looks like this:</p> <pre><code>namespace VMProvisionEXE { class EXEWrapper { static void Main(string[] args) { WSHttpBinding myBinding = new WSHttpBinding(); myBinding.Security.Mode = SecurityMode.None; Uri baseAddress = new Uri("http://bernard3:8000/VMWareProvisioning/Service"); ServiceHost selfHost = new ServiceHost(typeof(VMPService), baseAddress); try { selfHost.AddServiceEndpoint(typeof(IVMProvisionCore), myBinding, "CoreServices"); ServiceMetadataBehavior smb = new ServiceMetadataBehavior(); smb.HttpGetEnabled = true; smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy12; selfHost.Description.Behaviors.Add(smb); // Add MEX endpoint selfHost.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName, MetadataExchangeBindings.CreateMexHttpBinding(), "mex"); selfHost.Open(); Console.WriteLine("The service is ready."); Console.ReadLine(); </code></pre> <p>The rest of the C# code; the class VMPService above implements VMProvisionCore.IVMProvisionCore.</p> <pre><code>namespace VMProvisionCore { [ServiceContract(Namespace = "http://Cisco.VMProvision.Core", ProtectionLevel = System.Net.Security.ProtectionLevel.None)] public interface IVMProvisionCore { [OperationContract] bool AuthenticateUser(string username, string password); } </code></pre> <p>I can easily create a Visual Studio 2008 client application that consumes this service. No problems. But using Delphi 2007 is a different issue. I can use the WSDL importer in Delphi to retrieve the WSDL from (in this case) <a href="http://bernard3:8000/VMWareProvisioning/Service?wsdl" rel="nofollow">http://bernard3:8000/VMWareProvisioning/Service?wsdl</a> The import unit compiles just fine. I have to initialize the proxy by hand since the WSDL doesn't contain a URL (notice the extra "/CoreServices" as shown in the C# code):</p> <pre><code>var Auth: AuthenticateUser; AuthResponse: AuthenticateUserResponse; CoreI: IVMProvisionCore; begin CoreI:= GetIVMProvisionCore(False, 'http://bernard3:8000/VMWareProvisioning/Service/CoreServices'); Auth:= AuthenticateUser.Create; try Auth.username:= 'test'; Auth.password:= 'test'; AuthResponse:= CoreI.AuthenticateUser(Auth); finally FreeAndNIL(Auth); end; </code></pre> <p>The above code will generate an error when it hits the "CoreI.AuthenticateUser(Auth);". The error is "<strong>Cannot process the message because the content type 'text/xml; charset="utf-8" was not the expected type 'application/soap+xml; charset=utf-8.</strong>"</p> <p>I suspect that I've got a stupid little error somewhere, perhaps during the import of the WSDL or in the connection options or something. Can anyone help?</p> http://stackoverflow.com/questions/548007/what-are-the-advantages-of-c-over-say-delphi-realbasic-for-windows-application 4 What are the advantages of c# over, say, delphi/realbasic for windows applications kjack 2009-02-13T22:53:33Z 2009-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/1080746/calling-a-delphi-dll-from-c-containing-pointer-in-struct-not-working 1 Calling a Delphi DLL from C# containing Pointer in struct not working Khan 2009-07-03T20:34:17Z 2009-09-21T16:56:18Z <p>I have a delphi dll that is defined like this</p> <pre><code>type tSSL_connect = packed record pssl : Pointer; pctx : Pointer; sock : Integer; end; function SSLCLT_Connect(pIPAddr: PChar; iPort: Integer; var pConn: tSSL_connect; iTimeout: Integer; bEnableNonBlockingMode: BOOL = TRUE): BOOL; stdcall; external cltdll; </code></pre> <p>I converted to C# like this :</p> <pre><code>[StructLayout(LayoutKind.Sequential,CharSet = CharSet.Ansi, Pack=1)] public unsafe struct tSSL_connect { public IntPtr pssl; public IntPtr pctx; public UInt32 sock; }; [DllImport("cltdll.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)] public static extern bool SSLCLT_Connect(string pIPAddr, UInt32 iPort, ref tSSL_connect pConn, UInt32 iTimeout, bool bEnableNonBlockingMode); </code></pre> <p>The call is like this :</p> <pre><code>tSSL_connect conn = new tSSL_connect(); btest = SSLCLT_Connect("127.0.0.1", 3858, ref conn, 1500, false); </code></pre> <p>It is asking to open a channel and writes it in conn. It returns false. So I can't get through. The conn objects returns null. I know that the server is receiving my call.</p> <p>I think that it has something to do with the struct C# that has a wrong type. I'm pretty new to unmanaged stuff so if anyone can help getting thru.</p> <p>I have only the dll. Thanks</p> http://stackoverflow.com/questions/1448372/how-to-detect-windows-logon-event 2 How to detect Windows Logon event ? Attilah 2009-09-19T11:28:21Z 2009-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/1316459/how-can-i-write-a-webdav-server-with-delphi 2 How can I write a WebDAV server with Delphi? mjustin 2009-08-22T16:59:32Z 2009-09-11T16:55:45Z <p>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?</p> <p>If there is none yet, maybe you know an implementation in a different language (C#, Java) which you can recommend as a starting point for a WebDAV server implementation? (It does not have to be a full-featured solution, a rather simple skeleton could be even more helpful.)</p> http://stackoverflow.com/questions/1401370/form-designer-for-dummies 3 Form Designer for Dummies... Workshop Alex 2009-09-09T18:43:55Z 2009-09-09T21:48:25Z <p>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" application, which turned out to have dozens of bugs. So, technical knowledge? Not there... But not required for his function, since it's his job to collect information and write down the functional part of the project. (My job is to fill in the technical parts.)</p> <p>The problem is that a customer asked him to provide some sketches of the screen layout of some new forms that we want to add to the project. Normally, I would just set up some quick forms in VS or Delphi, make screenshots and provide him these. This works but it delays his work and costs a lot of time for us both.</p> <p>So he's now modifying existing screenshots in Paint. It works okay but is a bit primitive. So is there any software for dummies that would allow an easier way to paint diagrams to add for documentation? These dialogs are just for documentation purposes only so basically a set of stamps for some better Paint Application could already be enough, although I would prefer something fancier than this. <hr />What I am looking for is software to design mostly WIN32 applications that contain some .NET elements. (Some processing is done by web services and client-side .NET libraries.) The FD should easily design the form, which is included in the functional documentation. This documentation is then emailed to the customer who will display the form mock-ups to it's users to check the usability of those designs. Those users will then provide feedback about things that could be improved which results in the FD to adjust the images to their wishes until they're happy.</p> <p>This customer is a happy customer of ours for several years already and thus they got used to a certain layout. Thus Sketch-like form designers are cool (keep adding those too!) but they're not the exact designers that I'm looking for. <hr /> <em>For those who wonder... Writing documentation is an important part of software development. But designing forms before the technical design phase is bad, in general. Still, it sometimes helps to have such images in the functional design so it would be nice if functional designers have some simple way to create these kinds of images. I did wonder if SuperUser is a better place for this, but it feels strongly development-related.</em></p> http://stackoverflow.com/questions/1398873/pass-a-delphi-set-to-an-external-delphi-function-from-c 2 Pass a Delphi set to an external Delphi function from C# Mark Pim 2009-09-09T10:41:29Z 2009-09-09T11:32:15Z <p>I'm trying to call an external Delphi function from C# which takes a Delphi set as a parameter:</p> <h2>Delphi code</h2> <pre><code>type tStatus = (sIn, sOut, sAbsent, sSick); tStatusSet = set of tStatus; function LoadEmployees(tStatusSet aStatusSet): tEmpList; </code></pre> <p>I need to marshall a C# array of enum values (that is elements from <code>tStatus</code>) into a format that Delphi will read as a <code>tStatusSet</code> type:</p> <h2>C# code</h2> <pre><code>tStatusSet lStatusSet = ConvertToDelphiSet(sIn, sOut); tEmpList lEmpList = LoadEmployees(aStatusSet); </code></pre> <p><code>ConvertToDelphiSet</code> should ideally be a generic solution, able to cope with any enum. We have it defined as:</p> <pre><code>int ConvertToDelphiSet&lt;T&gt;(params T[] aArgs) { int lResult = 0; foreach (T lItem in aArgs) { int lValue = lItem.ToInt32(); lValue = (int)Math.Pow(2, lValue); lResult |= lValue; } </code></pre> <p>But this isn't returning the correct value (for example passing it all four <code>tStatus</code> values results in Delphi only seeing the third value in the set).</p> <p>Is there documentation on how Delphi internally represents a set? Is it a simple bit-field of all the values? Is there a more robust way of achieving this? Is this future proof or am I relying on undocumented internal features likely to change?</p> http://stackoverflow.com/questions/517944/calling-a-delphi-dll-from-c-produces-unexpected-results 5 Calling a Delphi DLL from C# produces unexpected results Doug Hays 2009-02-05T21:14:27Z 2009-08-28T10:04:43Z <p>I have a Delphi DLL that I did not write, but need to call from a C# ASP.NET 3.5 app. Here is the function definition I got from the developers:</p> <pre><code>function CreateCode(SerialID : String; StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod : Word; CodeType,RecordNumber,StartHour,EndHour : Byte) : PChar; external 'CreateCodeDLL.dll'; </code></pre> <p>And here is my C# code:</p> <pre><code>[DllImport( "CreateCodeDLL.dll", CallingConvention = CallingConvention.StdCall, CharSet=CharSet.Ansi)] public static extern IntPtr CreateCode( string SerialID, UInt16 StartDateOfYear, UInt16 YearOfStartDate, UInt16 YearOfEndDate, UInt16 DatePeriod, Byte CodeType, Byte RecordNumber, Byte StartHour, Byte EndHour); </code></pre> <p>And finally, my call to this method: </p> <pre><code>//The Inputs String serialID = "92F00000B4FBE"; UInt16 StartDateOfYear = 20; UInt16 YearOfStartDate = 2009; UInt16 YearOfEndDate = 2009; UInt16 DatePeriod = 7; Byte CodeType = 1; Byte RecordNumber = 0; Byte StartHour = 15; Byte EndHour = 14; // The DLL call IntPtr codePtr = CodeGenerator.CreateCode(serialID, StartDateOfYear, YearOfStartDate, YearOfEndDate, DatePeriod, CodeType, RecordNumber, StartHour, EndHour); // Take the pointer and extract the code in a string String code = Marshal.PtrToStringAnsi(codePtr); </code></pre> <p>Every time I re-compile this exact code and run it, it returns a different value. The expected value is a 10-digit code comprised of numbers. The returned value is actually 12 digits. </p> <p>The last important piece of information is that I have a test .EXE that has a GUI that allows me to test the DLL. Every test using the .EXE returns the same 10-digit number (the expected result).</p> <p>So, I have to believe that I have declared my call to the DLL incorrectly. Thoughts?</p> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works 0 Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-01-27T15:29:41Z 2009-08-14T16:04:58Z <p>I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.</p> <p>Here's what the event handler is defined as in the TLB:</p> <pre><code>procedure(ASender: TObject; var structQSnap: {??structVTIQSnap}OleVariant) of object; </code></pre> <p>Here's the definition of structVTIQSnap in the TLB:</p> <pre><code>structVTIQSnap = packed record bstrSymbol: WideString; bstrListingExch: WideString; bstrLastExch: WideString; fLastPrice: Double; nLastSize: Integer; bstrBbo: WideString; bstrBidExch: WideString; fBidPrice: Double; nBidSize: Integer; bstrAskExch: WideString; fAskPrice: Double; nAskSize: Integer; fHighPrice: Double; fLowPrice: Double; fOpenPrice: Double; fClosePrice: Double; nCumVolume: Integer; bstrTradeCondition: WideString; nQuoteCondition: Integer; bstrCompanyName: WideString; f52WeekHigh: Double; f52WeekLow: Double; fEps: Double; nSharesOutstanding: Integer; nSpCode: Integer; fBeta: Double; bstrExDivDate: WideString; nDivFreq: Integer; fDivAmt: Double; nAvgVolume: Integer; bstrCusip: WideString; fVwap: Double; bstrUpdateTime: WideString; bstrExch: WideString; nSharesPerContract: Integer; end; </code></pre> <p>It compiles fine, but everytime I try to access the bstrSymbol, I get an "Invalid Variant Operation":</p> <pre><code> procedure TForm1.HandleVTIQuoteSnap(ASender: TObject; var structQSnap: OleVariant); var symbol: WideString; begin symbol := structQSnap.bstrSymbol; // this line causes the exception end; </code></pre> <p>How do I access structQSnap and its properties in Delphi?</p> <p>In C#, this function works fine for the event handler:</p> <pre><code> void vtiQ_OnVTIQSnap(ref vtiLib.structVTIQSnap structQSnap) { MessageBox.Show("Got qsnap for " + structQuoteSnap.bstrSymbol); } </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1265848/integrate-delphi-isapi-dll-into-an-asp-net-web-application 0 Integrate Delphi ISAPI DLL into an ASP.NET web application balexandre 2009-08-12T12:27:28Z 2009-08-14T09:57:09Z <p>Hi guys,</p> <p>We have all the code in Delphi and it is hard to <strong>create a new</strong> ASMX / SVC File directly in .NET because it uses encryption and weird stuff :) as it would take around 2 weeks to convert and to test...</p> <p>Because of that we agreed that will keep the Delphi code and find a way to communicate between the ASP.NET application and this Delphi code, so we generated a Delphi WebService that added to IIS is an ISAPI DLL.</p> <p><strong>My first question was:</strong></p> <p>Do I really need to set up IIS and install this WebService alone, or can I use it as a part of my project (just like an ASMX file) using any special trick?</p> <p><strong>and my 2nd question</strong>, it is been hard for me to provide the fellow information on how to convert pascal into .NET so we could, using the pascal code, output an ASMX for example... I can't find anything to do this.</p> <p>We have Delphi Studio 2009 and it mention in several documents that we can do .NET (how?) and there is Delphi for .NET (are we talking about and only Delphi Prism here?).</p> <p>Thank you guys!</p> <p><hr /></p> <p><strong>New question that will resolve my 2 questions</strong></p> <p>How can I generate an ASMX (.NET Web Service) or SVC (.NET WCF Service) from a Delphi code? I'm reading about <a href="http://www.embarcadero.com/delphi-prism" rel="nofollow">Delphi Prism</a> but I can't still figure it out.</p> http://stackoverflow.com/questions/1250071/c-standards-style-for-a-delphi-developer 2 C# standards/style for a Delphi developer? Steve 2009-08-08T22:45:11Z 2009-08-08T22:57:39Z <p>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 <em>f</em> and putting private declarations before protected, which in turn are before public ones etc etc. Most of this comes from the VCL.</p> <p>Is there any recognized coding standard or style in the C# world? I'm tempted to put an <em>f</em> in front of my private member variables but this would only make sense to other Delphi developers.</p> http://stackoverflow.com/questions/1244632/using-net-assemblies-in-delphi 3 using .NET Assemblies in Delphi Andy 2009-08-07T13:12:59Z 2009-08-08T20:00:53Z <p>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. With the object assembly i was able to use regasm to create a type library. I was also able to assign a SN and register it with the GAC. </p> <p>Now with the main assembly i am tyring to use in Delphi, i try using regasm and i end up getting an error "Regasm : error RA0000 : Unable to locate input assembly [location] or one of its dependencies." I have looked over the location and file name and there is nothing wrong. Am i missing a step somewhere?</p> http://stackoverflow.com/questions/1246989/no-methods-showing-up-from-imported-type-library-in-delphi 0 No methods showing up from imported Type Library in Delphi Andy Xufuris 2009-08-07T20:59:16Z 2009-08-08T18:04:27Z <p>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 to create a type library for the main assembly. I was also able to assign a SN and register it with the GAC. </p> <p>Now when i try to import the type library into delphi, after the pas file is created, no methods show up in the pas file. I can see random create methods but none of the original methods i created in the C# version I can not think of what the problem could be that is causing this to fail. Any Ideas?</p> http://stackoverflow.com/questions/1233027/sending-pound-signs-from-delphi-to-c-web-service 2 Sending pound signs from Delphi to C# web service JamesW 2009-08-05T12:45:14Z 2009-08-05T20:09:39Z <p>I am sending a large string from Delphi 5 to a C# web service, and I'm having lots of trouble with Pound (£) signs. I URLEncode the string from the Delphi side (which seems to convert them to '%A3'). When it reaches the C# web services it appears as '�'. I have tried changing the encoding of the string on the C# side by using a StreamReader (shown below), but the best I can get it to do is to change to to a question mark (?).</p> <pre><code>MemoryStream mr = new MemoryStream(System.Text.Encoding.Default.GetBytes(myString)); StreamReader sr = new StreamReader(mr, System.Text.Encoding.Default); string s = sr.ReadToEnd(); </code></pre> <p>How can I get the £ signs to be interpreted correctly?</p> <p>Please help!</p> <p>(Further info requested)</p> <p>The web service signature is:</p> <pre><code>[WebMethod] public string ReadMyString(string PostedString) </code></pre> <p>The Delphi 5 code uses third party components/code that we've been using successfully for years, but this is the first time we've tried talking directly to C#. An outline of the code is shown below:</p> <pre><code> tmp_Str := URLEncode(myBigString); tmp_Str := WinInetPostData(myURL, tmp_Str); </code></pre> <p>Between these two lines I have confirmed that the £ signs have been correctly converted to '%A3'.</p> http://stackoverflow.com/questions/1201776/is-there-delphis-actionmanager-alternative-in-visual-studio 2 Is there Delphi's ActionManager alternative in Visual Studio koldovsky 2009-07-29T17:15:14Z 2009-07-29T20:27:49Z <p>I am relatively new to VS and C# but have years of experience in Delphi. One of the my favorite components when designing GUI in Delphi is ActionManager - centralized way to assign event handlers for actions as well as enabling/disabling them. Surprisingly, I can't find anything like this in Visual Studio 2008 Professional. I am sure that there should be third party implementations but I'd prefer something standard. </p> <p>Can anybody suggest me something for this? Maybe there is some alternate way to effectively manage GUI actions that I am missing?</p> http://stackoverflow.com/questions/1164226/how-to-access-the-member-of-a-classcreated-in-c-in-dephi 2 How to access the member of a class(created in c#) in dephi Sarathi1904 2009-07-22T09:58:55Z 2009-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/1117915/how-to-make-a-netc-library-which-can-be-used-in-delphi 0 How to make a .net(c#) library which can be used in delphi [closed] Sarathi1904 2009-07-13T06:18:09Z 2009-07-13T06:50:14Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1063151/create-a-c-dll-that-can-be-imported-in-a-delphi-app-using-stdcall-possible">Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?</a> </p> </blockquote> <p>I am creating a c# library and like to make this library as com component which can be accessed from delphi. Please tell the how to achieve this.</p> http://stackoverflow.com/questions/1109561/creating-new-c-version-of-existing-com-object-to-use-in-delphi-program 1 Creating new C# version of existing COM object to use in Delphi program tkd 2009-07-10T13:36:11Z 2009-07-10T20:29:32Z <p>We had a bit of a problem where we have lost some source code for a very old ActiveX component we had. We've got a Delphi7 program that calls the Active X component. Thats a bit of a moster and can't be changed too much. However, some of the functionality in the Active X component needs to be updated. Since we've been moving our apps to C#, its been decided to redo the ActiveX as a C# class library. </p> <p>I've got a basic C# class library working to prove the concept. I can hack the GUIDs and registry so it just looks liek the old one. If I look at the type lib for the old one and the new one, they are <em>basically</em> the same. Couple of slight differences but not anything i would have thought would be a problem.</p> <p>Now as far as I can see there are three ways to use the new class library:</p> <ol> <li><p>Late binding by looking up the ProgId. This works ok.</p></li> <li><p>Import the type library. (Project| Import Type Library) This works ok.</p></li> <li><p>Import as an ActiveX component. This generates a tlb file. This doesn't work. When I go to create the component I get 'No such interface exists'. The class is loading to a point but not completely.</p></li> </ol> <p>Now unfortunately, the Delphi program is using option 3. So I have to try to get my class library working in this circumstance. Any ideas how I get past that error? I googled and found some references but nothing that says what the problem is.</p> <p>Second question. I should know how to do this since I've done it once but I seemed to have fluked it. When I am in Delphi I do an Import ActiveX component to generate a TLB file. Now the first C# class library generated is showing up in the list of ActiveX controls and I can Create Unit for it. But I've created another simplier class library for testign purposes and damned if I can get the library to show in the list of ActiveX controls and so I can't import it.</p> <p>The Create Unit for the Active X component generates a different format of TLB.pas to the Import Type Library format and its the ActiveX one that I require. </p> http://stackoverflow.com/questions/1091814/sending-a-binary-stream-through-soap 1 Sending a binary stream through SOAP. Workshop Alex 2009-07-07T11:28:08Z 2009-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/289712/how-do-you-format-your-compound-statements-in-delphi-and-c 3 How do you format your Compound Statements in Delphi and C#? Steve 2008-11-14T10:31:12Z 2009-07-06T12:21:40Z <p>As a long time Pascal and Delphi developer, I always line up my begin and ends thus :</p> <pre><code>begin if x = y then begin ... ... end else for i := 0 to 20 do begin ... ... end; end; </code></pre> <p>What drives me nuts is code formatted thus :</p> <pre><code>begin if x = y then begin ... ... end else for i := 0 to 20 do begin ... ... end; end; </code></pre> <p>When there are a few levels of compound statements I find this hard to read. The above code is ok, because it's not that complicated, but for consistency I'd prefer all begins and ends aligned.</p> <p>As I start using c#, I find myself aligning curly brackets too. What's the norm in the C# world? </p> <p><strong>Edit :</strong></p> <p>Someone has pointed out that this is the type of question that shouldn't be asked on SO. I don't see why not. I'm in the process of setting up a coding guidelines document. I know I'll get some resistance to certain things, I'm hoping to get a few answers here, so I can be ready to meet that resistance head-on.</p> http://stackoverflow.com/questions/751993/what-language-do-i-use-for-my-project 4 What language do I use for my project? Robbert 2009-04-15T14:36:16Z 2009-06-30T19:59:52Z <p>hi all!</p> <p>I'm going to advise a company on a project soon, and I'm not too sure about what programming language I should advise.</p> <p>It's a fairly straightforward (desktop based) application with a central datasource on the network, for storing and editing parts that make up a machine. The machine needs to be configured in the application, and with this configuration production documents (manuals, software, bill of material) are generated. (e.g. if part A and B are added to the configured machine, then variation X on chapter 5 of the manual has to be used, if that makes sense)</p> <p>There's a few non-standard components like a tree with radio &amp; checkboxes, and it has to have some sort of version control in it. It needs a WYSIWYG editor to edit chapters of manuals. It doesn't necessarily have to run on platforms other than Windows because it will only be used on the company network and everybody runs windows.</p> <p>I was thinking Java because of it's huge numbers of useful libraries and free IDE's. I'm a Java programmer myself so I'm not very familiar with other programming languages. Any thoughts on what language I should use, and why? I believe there's a bit of VB/VBA and Delphi knowledge present in the company (it's not an IT company and I'm not likely to program it myself).</p> <p>Thanks heaps!</p>