32
votes
66answers
5k views
What is needed to get Delphi back on top?
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 …
11
votes
33answers
5k views
Will you use Delphi Prism
CodeGear announces that their Next .Net product which is known as Delphi Prism Will be the RemObjects's Oxygene.
Oxygene has many nice features that not found in Delphi or C#, and I think it will …
7
votes
2answers
1k views
Best algorithm for evaluating a mathematical expression?
What's the best algorithm for evaluating a mathematical expression? I'd like to be able to optimize this a little in the sense that I may have one formula with various variables, which I may need to …
6
votes
8answers
937 views
Using a COM dll from C# without a type library
I need to use a COM component (a dll) developed in Delphi ages ago. The problem is: the dll does not contain a type library... and every interop feature (eg. TlbImp) in .NET seem to rely on TLBs. The …
6
votes
8answers
546 views
simple calculation, different results in c# and delphi
Hello,
The question is, why do these code snippets give different results?
private void InitializeOther()
{
double d1, d2, d3;
int i1;
d1 = 4.271343859532459e+18;
d2 = 4621333065.0;
i1 = …
6
votes
2answers
636 views
How to detect the printer model?
Hi!
When I plug my HP Laserjet 3015, Windows detects the correct model and then tries to install the appropriate drivers.
How can I detect the model of connected printer(s)? I don't want to use the …
5
votes
3answers
591 views
How to use .Net assembly from Win32 without registration?
I'd like to dynamically load and use a .Net assembly created in C# from a Delphi Win32 application. My classes and interfaces are marked as ComVisible, but I would like to avoid registering the …
5
votes
6answers
2k views
Calling a Delphi DLL from C# produces unexpected results
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:
function CreateCode(SerialID : String;
…
4
votes
1answer
402 views
speech recognition from audio file instead of microphone
Hello,
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.
4
votes
14answers
664 views
What language do I use for my project?
hi all!
I'm going to advise a company on a project soon, and I'm not too sure about what programming language I should advise.
It's a fairly straightforward (desktop based) application with a …
4
votes
10answers
1k views
What are the advantages of c# over, say, delphi/realbasic for windows applications
has anyone ever written an application bigger than its .net luggage?
People used to criticize vb6 for its 2 MB runtime but it rarely dwarfed the app it accompanied.
Today despite having vista on my …
4
votes
3answers
475 views
Is the Random Generator from Delphi the same calculation as C# if fed the same seed?
I'm translating some Delphi code into c# code when I ran into this. I don't have an environment setup for Delphi so I can't test it myself.
Delphi:
RandSeed := var1;
Result := Random($FF);
c#:
…
4
votes
5answers
398 views
Which tool do you suggest, to convert a legacy delphi 7.0 app to c#
A simple google query shows a bunch of tools, which seems to convert Delphi to C# code.
Example: http://www.google.de/search?q=delphi+c%23+converter
Do you have experience with one of this tools or …
3
votes
4answers
191 views
Calling Java code from a C# COM DLL that’s used by a WIN32 application?
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 …
3
votes
5answers
218 views
Form Designer for Dummies…
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" …
