Tagged Questions

20
votes
27answers
4k 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 ...
18
votes
19answers
2k views

If you were developing shareware softwares for windows, would you target the .Net Framework or use native code?

For the sake of the question, by 'shareware' I mean a software which is relatively small in size (up to few dozens of mb) and available for download and evaluation through a web site. I'm asking ...
14
votes
1answer
1k views

Why are there so many $IF DEFINED(CLR) in the VCL/RTL?

I've just compared the Delphi 2009 VCL/RTL code to the 2010 one. I noticed that there are many $IF DEFINED(CLR) conditional defines and they got more in the 2010 version. I thought that these ...
12
votes
3answers
2k views

Hosting CLR in Delphi with/without JCL - example

Can somebody please post here an example how to host CLR in Delphi? I have read similar question here but I cannot use JCL as I want to host it in Delphi 5. Thank you. EDIT: This article about ...
11
votes
10answers
3k 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 ...
11
votes
10answers
3k views

Hosting the .NET runtime in a Delphi Program

I was looking into using some .NET code from within a Delphi program, I will need to make my program extensible using .net assemblies and predefined functions (I already support regular DLLs). After ...
10
votes
6answers
752 views

Winform without .NET framework?

I have to create few forms and give it as direct EXE (instead of installer, which installs .NET framework, which the end user is not happy, they want something they can directly open and work). I ...
9
votes
5answers
4k views

Can I Use a .NET DLL in “Delphi 2007 for Win32”?

Is it possible to use a .NET DLL in Delphi 2007 for Win32? I've tried to import the DLL in the same way I've done for an ActiveX component, but it doesn't appear to work (Component Menu -> Import ...
8
votes
2answers
567 views

Where can I find “reference barcodes” to verify barcode library output?

This question is not about 'best' barcode library recommendation, we use various products on different platforms, and need a simple way to verify if a given barcode is correct (according to its ...
7
votes
3answers
2k views

Calling a Delphi DLL from a C# .NET application

EDIT: I've posted a better implementation of this, below. I left this here so the responses would make sense. I've done numerous searches for the correct method for writing a DLL in Delphi, and being ...
7
votes
3answers
2k views

Delphi SOAP Envelope and WCF

I am working on a system that provides a soap interface. One of the systems that are going to use the interface is coded in Delphi 7. The web service is developed with WCF, basic http binding, SOAP ...
6
votes
4answers
253 views

Destroying COM object in Delphi

Have some .net assembly, calling it in delphi through COM. var intf: ITest; ... intf:= CreateComObject(CLASS_TEST) as ITest; ... //here comes some stuff ... Must i do something to ...
6
votes
1answer
831 views

Different WSDL ASMX,WCF web-services

I've got asmx web-service, which is succefully consumed from other clients(.NET,Delphi). I try come to wcf, and write the same logic at WCF service(basicHttpBinding for interopability). (.net client ...
6
votes
3answers
679 views

How to use a .Net Assembly in Delphi without registering it in the GAC or COM?

i have a simple task: is it possible to write a Delphi DLL and put a .Net Assembly (with only one interface with 4 methods and one class implementing the interface) besides it and call it from the ...
6
votes
3answers
564 views

Delphi to .NET Converter

Does any one know of a Delphi to .NET converter (either C# or VB.NET)? I've inherited a bunch of Delphi code, never seen Pascal before and rather than learn it, I'd rather just try to use an automated ...
6
votes
1answer
2k views

speech recognition from audio file instead of microphone

How can I perform speech recognition on speech coming from an audio file (.mp3, wav) instead of the microphone ? I want to be able to do that from C#.NET and Delphi. thanks.
5
votes
2answers
400 views

WCF Delphi7 method input parameters

I've got wcf web-service(basicHttpBinding). Our Delphi7 clients couldn't correct consume it. I've already flatten the WSDL with WCF extras. Ok. Delphi7 wsdl importer generate proxy correct. Now I've ...
5
votes
1answer
133 views

Managed code in unmanaged

if i'm using .net dll from delphi code, by exporting types, will managed code have his own thread or it will work in delphis thread? or i must create thread in dll, if i want it to work in new thread? ...
5
votes
4answers
338 views

What ways exists to generate MSIL from unmanaged code

I am trying to create a backend of my language for .NET platform. The front-end and interpreter written in Delphi. Unmanaged API just allows type definitions but no emiting of MSIL. What ways exist ...
5
votes
1answer
871 views

SOAP inconsistency? Delphi 2010 (Win32) Server and .NET Client swapping 'out-parameter' and 'result'

Could someone please shed some light on this behaviour? It looks like Delphi SOAP sets the function result as the last argument, but WSDL.exe reads the first argument to be the function result. I ...
5
votes
5answers
759 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 ...
5
votes
3answers
4k views

Why does regasm.exe register my c# assembly with the wrong GUID?

I've got a c# assembly which I'm invoking via COM from a Delphi (win32 native) application. This works on all the machines I've tested it on, except one. The problem is that the Delphi application ...
5
votes
6answers
628 views

Using DLR from Unmanaged Code

Is it possible to call managed code, specifically IronRuby or IronPython from unamanaged code such as C++ or Delphi? For example, we have an application written in Delphi that is being moved to ...
4
votes
4answers
395 views

Consume .NET assembly in Delphi XE2

I have some of the business logic implemented in .NET and some in Delphi. Now i am planning to upgrade to Delphi XE2. Do we have any provision to consume .net assembly from Delphi XE2? Update: I ...
4
votes
3answers
303 views

Conversion from Delphi to .NET 4 (Without any tool) [closed]

One of our clients wants their Delphi application to be converted to .NET 4.0. After reading responses to various similar questions on this site, I've decided to take a step-by-step approach of ...
4
votes
4answers
359 views

Is there an equivalent for Delphi's “with” command in c#?

I was wondering if there is a command in C# which I can use like with command in Delphi? // like this : with(textbox1) { .text="some text as text of text box"; .tag=1231; } // in Delphi with ...
4
votes
3answers
173 views

Login to delphi program from .net program

I made a .net program that capture's and verifies finger prints to authenticate employee's. One program we use is written in Delphi. so I'm looking for a way to authenticate the user using .net and ...
4
votes
3answers
213 views

Does .NET have an equivalent to Delph's VCL component model?

Pardon the "cast pun" but I am a (long long) time Delphi developer. I have stayed at version 6 for an eternity now because it was everything I needed for development. However, lately I've been ...
4
votes
3answers
467 views

Can we call .net(2.0) dll from Delphi 5 application

Can we call a dll built in .Net2.0 from Delphi 5 windows application. If yes, how.
4
votes
3answers
576 views

How can I check if there is a default printer (Windows)?

Is there a API or registry key which I can use from applications (native, Java or .Net) to check if the currently logged on user has configured a default printer? Update: Many thanks for the answers ...
4
votes
2answers
611 views

How to detecting .net framework version with Delphi 7

How to detecting .net framework version with Delphi 7 ?
4
votes
4answers
2k views

List.AddRange inline declaration

This may seem an easy question, but not to me, also a search has led to nothing. Up until now the only .net programming I have done is with Delphi Prism. With Prism I can do things like: var l := new ...
4
votes
3answers
577 views

Delphi 2010 and .net

how is Delphi 2010 relationship with .net? I remember that not long ago you could only generate .net 1.1 code. And now, how is that? How does legacy Delphi code (mostly 7) behave when compiled for ...
4
votes
2answers
283 views

How does a .NET program behave differently when run with and without debugging in Visual Studio?

I'm getting an Access Violation in DBEXPSDA40.DLL (Dev Art MS SQL Server dbexpress driver) on closing down my .NET application. My application (VB.NET) calls a Delphi written COM Server which uses ...
4
votes
3answers
1k views

Calling a delphi DLL method from C# Code

I am trying to call a Delphi function from C# ASP.NET code. The function's declaration looks like this: function SomeFunction(const someString, SomeOtherString: string): OleVariant; From my C# code ...
4
votes
1answer
755 views

.NET equivalent of Delphi's forceDirectory

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.
4
votes
3answers
690 views

Embedding Mono in Delphi Win32

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 ...
4
votes
5answers
4k views

Which SOAP XML object serialization library for Java would you recommend?

Which Java SOAP XML object serialization library would you recommend for Java object exchange with other platforms / languages (.NET, Delphi)? Communication scenarios could look like this: Java ...
4
votes
5answers
1k views

Delphi's interoperability with .NET

I currently have a codebase of delphi (win32) code. I want to extend new functionality, however, my knowledge is in .NET (C#), and I'd like to keep the existing code base and add new functionality in ...
4
votes
2answers
910 views

Is there .NET equivalent to Delphi's ActionList?

We're currently using Delphi 5 and Delphi 2005 for development, and investigate of going the .NET route via Delphi Prism. Is there a .NET equivalent to Delphi's ActionList? For those not familiar ...
4
votes
8answers
4k views

Migrating a Delphi 7 application to .NET

Any advice on how to migrate an existing Delphi 7 business application to .NET 2.0 in Visual Studio 2005? Visual Studio 2005 has already been purchased, the company want to move away from the ...
3
votes
3answers
423 views

COM Interop, client not finding interface in Out-of-process COM

I'm using Microsoft's CSExeCOMServer as a base for setting up a Out-of-process COM server, but it's not working properly. The server is 64 bit, and the client is 32 bit. Here's the sample interface ...
3
votes
1answer
285 views

Doing Overhaul of Codebase: .NET or Delphi backend? [closed]

I have little experience in C#.NET, but have years in Delphi. Any Delphi + .NET people out there that can provide me some guidance? Here's the scoop: I am going to be in charge of a overhaul of the ...
3
votes
3answers
325 views

Read a Delphi TClientDataset Files with .NET

I need to read Files that are written with the TClientDataset class from Delphi with .NET Code. The Solution mentioned here does not work for me.
3
votes
1answer
566 views

Cause .net WCF client to use RPC/encoded instead of Document/Literal/Wrapped with Delphi service

I have a .Net WCF client/proxy built based on a Delphi service. The Delphi service is providing SOAP messages in a format that my client has been unable to process. Based on the guidance here: ...
3
votes
3answers
1k views

How to use Delphi Dll(with PChar type) in C#

Here is the Delphi DLL code: library Project2; uses SysUtils, Classes; {$R *.res} function SimpleConv(const s: string): string; var i: Integer; begin Result := ''; for i := 1 to ...
3
votes
5answers
505 views

Host a Delphi 7 application process in .net

HI! I'm trying to host a delphi 7 vcl application in a .Net wpf application. Everything works great except modal dialogs do not behave like modal dialogs, the parent window isn't disabled. This is my ...
3
votes
1answer
142 views

Using MbUnit with Delphi Prism

I have created below simple testcase in Delphi Prism. When I run the testcase using Gallio Icarus, it returns a This test is not supported by any available test framework. I can think of only two ...
3
votes
5answers
2k views

32 bit dll importing in 64 bit .Net application

hello i'm having a problem, i try to solve it since yesterday but no luck. i have 32 bit delphi dll which i want to import in .NET Win Application. this application has to be built on ANY CPU mode. ...
3
votes
5answers
958 views

access managed code ( CLR ) DLL with Delphi 7

How delphi7 access C# .net managed dll ? i'm trying to access some DLL that compiled in c# and they are not those old style DLL. ( i dont have source for those DLL) i did tried to search online but ...

1 2 3 4