Tagged Questions
42
votes
7answers
2k views
Studies of relative costs for development in different languages
Has anyone seen a recent (and fairly balanced) study into the relative costs for software development using differing languages ? I would particular like to see the relative costs of Java Vs. C# Vs. ...
24
votes
18answers
4k views
Is Delphi a good language to learn? [closed]
About 10 years ago I bought Borland Delphi, as a child I thought it was the coolest thing ever but I never really got into it. Sometime I see post on SO with a Delphi tag so people must actually ...
18
votes
4answers
635 views
Documentation tool for Delphi and C#
Can anybody recommend tools to generate Documentation from Delphi and C# code, It should enable export as XML using XSLT and PDF. If Delphi or C# is not supported but the tool is extendable this would ...
15
votes
39answers
11k views
Will you use Delphi Prism
CodeGear announces that their Next .Net product which is known as Delphi Prism Will be RemObjects's Oxygene.
Oxygene has many nice features that not found in Delphi or C#, and I think it will be a ...
14
votes
1answer
514 views
Is there a XSD-driven random XML test data generator?
For stress tests, I would like to create XML files based on a XSD with random (but valid!) test data. Is there a tool which can read a (simple) XSD file and build a XML file based on the schema ...
12
votes
3answers
2k 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 ...
11
votes
3answers
230 views
Disparity between date/time calculations in C# versus Delphi
Delphi:
SecondsBetween(StrToDateTime('16/02/2009 11:25:34 p.m.'), StrToDateTime('1/01/2005 12:00:00 a.m.'));
130289133
C#:
TimeSpan span = DateTime.Parse("16/02/2009 11:25:34 ...
11
votes
8answers
654 views
Is there anything RAD comparable to VCL?
After years in embedded programming, I have to develop a Windows app. I dug out my old C++ Builder and Delphi. These are great and the latest version costs over $1k, so I won't be going there.
What I ...
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
3answers
6k views
What tools exist to convert a Delphi 7 application to C# and the .Net framework?
I maintain an old PC-only application written in Delphi 7. Although Delphi has served me very well in the past I now only use it for this one application and find my skills with the language ...
9
votes
2answers
319 views
Does C# have an equivalent of Delphi's message keyword?
In delphi, I can create my own message like this,
const MY_MESSAGE = WM_USER+100;
procedure MyMessage(var Msg: TMessage); message MY_MESSAGE;
procedure TForm1.MyMessage(var Msg: TMessage);
begin
...
9
votes
2answers
2k views
How to detect the printer model?
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 list ...
8
votes
2answers
634 views
How to get XML (RAW/SOURCE) from a WebBrowser Control
I am using the WebBrowser Control in my both Delphi and .Net C# test projects to navigate to a local test XML file and try to save the content back to a XML file in .Net DocumentCompleted Event and in ...
8
votes
2answers
485 views
Delphi developer switching to C#
I'm a Delphiholic for quite some time now and lately I was thinking of learning some C# as well, however I'm kinda' "afraid of the unknown", I've done some simple apps as a test drive for C# and I ...
8
votes
4answers
2k views
How can I read barcodes without having the user focus a text box first?
I recently acquired a Metrologic Barcode scanner (USB port), as everyone already knows it works as a keyboard emulator out of the box.
How do I configure the scanner and my application so that my app ...
8
votes
2answers
853 views
How to read a Delphi Array of Fixed Sized Strings within a packed record in c#
I need to read a blob field from a database into a c# app.
However the blob field was written to the database by a Delphi App using the following method:
procedure WriteABlob(Blob : TBlobField; var ...
8
votes
8answers
4k 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 ...
8
votes
3answers
2k 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 ...
7
votes
1answer
174 views
Calling a delphi DLL function from C# Code
I have a DLL compiled in Delphi 2007 and an example using it in other Delphi project. Here is a part of code:
TErrorCallback = function(Msg:PChar):byte of object;
TSaveEventCallback = function ...
7
votes
1answer
557 views
Delphi DLL in C# - var array as parameter
i need use a Delphi DLL in my C# code.
I have some success when using other methods with common parameters, but in this case the solution still hidden.
The DLL documentation presents this ...
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
306 views
Language neutral plugin architectures
I am looking at extending an existing application through the use of a plugin architecture. The application id written in Delphi, but I want to be able to implement various plugins in whatever ...
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 ...
7
votes
9answers
4k views
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?
I have a program that I need to create a DLL for, hopefully in C#. The program is written in Delphi and I have an interface file to code to. The interface uses the stdcall calling convention.
Is it ...
7
votes
8answers
1k views
simple calculation, different results in c# and delphi
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 = 5;
d3 ...
7
votes
4answers
1k 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#:
...
7
votes
19answers
1k views
How do you format your Compound Statements in Delphi and C#?
As a long time Pascal and Delphi developer, I always line up my begin and ends thus :
begin
if x = y then
begin
...
...
end
else
for i := 0 to 20 do
begin
...
...
6
votes
1answer
502 views
How can I receive OutputDebugString from service?
I'm trying to catch all OutputDebugString messages (including those from services) using the following code. It worked fine until I migrated to Windows 7. The problem is that since Windows Vista ...
6
votes
6answers
265 views
Port pascal const IdentChars = ['a'..'z', 'A'..'Z', '_']; declaration to C#
I am porting a Delphi application to C#. In one of the units there is a declaration like this:
const
IdentChars = ['a'..'z', 'A'..'Z', '_'];
I did not found similar declaration syntax for C#.
...
6
votes
2answers
223 views
How can I use Delphi code from a C# application?
I have a Delphi project, and I need to write a C# application, but I want to use some functions from this Delphi project. I haven't worked in Delphi before.
I found that I can create a DLL from the ...
6
votes
3answers
565 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
5answers
236 views
Whats the difference in terms of memory usage (clean up, etc) of Delphi Interface and C# interfaces
I am a Delphi programmer and trying to get some stuff done with C# here.
Does interfaces in C# works in the same way as in Delphi - you don't need to worry in freeing it as it is freed when its out of ...
6
votes
4answers
972 views
Delphi - Is there any equivalent to C# lock?
I'm writing a multi-threaded application in Delphi and need to use something to protect shared resources.
In C# I'd use the "lock" keyword:
private someMethod() {
lock(mySharedObj) {
...
6
votes
6answers
841 views
C# equivalent for Delphi's in
What is the equivalent in C# for Delphi's in syntax, like:
if (iIntVar in [2,96]) then
begin
//some code
end;
Thanks
6
votes
5answers
971 views
How to do Delphi-like frames in C#?
Slight bit of background: I'm a Delphi programmer re-learning C# (learned in school originally, haven't hardly touched until recently), and am trying to get some of my Delphi concepts transferred ...
6
votes
2answers
1k views
Windows 7 sidebar gadgets
Do you need to write Windows Sidebar Gadgets in C#, or should I be able to write them in another language, for example Delphi?
Thanks
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.
6
votes
8answers
6k 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;
...
5
votes
1answer
272 views
Help to analyze how a software/program constructs Bezier curve
I am trying to understand how ChemDraw, a Industry-Leading Chemistry Tool developed by cambridgesoft, constructs Bezier curves, so that I can manually translate the Bezier curve points from other ...
5
votes
2answers
341 views
How can I convert this XOR-encryption function from Delphi to C#?
The following Delphi routine is originally from a long-ago CompuServe posting, and is used to encrypt various information in our database. Below are both the Delphi 2007 and (thanks to some SO help ...
5
votes
4answers
504 views
Encrypt string in C# and decrypt it in Delphi
I'm writing a web app in ASP.Net that creates a licence key for a Windows app written in Delphi. For simplicity I'm going to use a email address and date.
I want to encrypt it in C# and email that ...
5
votes
3answers
2k views
how to send and read SMS from mobile attached to PC
I am building a Windows Desktop software that will respond to SMS request and sending a SMS as reply automatically.
The software is ready and working just fine but it works only and only with Nokia ...
5
votes
9answers
1k views
Why looping in Delphi faster than C#?
Delphi:
procedure TForm1.Button1Click(Sender: TObject);
var I,Tick:Integer;
begin
Tick := GetTickCount();
for I := 0 to 1000000000 do
begin
end;
Button1.Caption := ...
5
votes
3answers
481 views
How would I convert this Delphi Set code to C#?
I've got the following Delphi code that defines a set and then a simple if statement that checks if a passed value of the set type falls within certain values.
TOverwriteMode = (omNone, ...
5
votes
2answers
986 views
Callback from Delphi dll to C# app
Inside a c# application a c#-method with parameter is to be called from a delphi dll:
The C# method gets called, but the int param is not transfered correctly: some "random" value arrives.
The ...
5
votes
5answers
3k views
Getting location of file tnsnames.ora by code
How can I get the location of the tnsnames.ora file by code, in a machine with the Oracle client installed?
Is there a windows registry key indicating the location of this file?
5
votes
4answers
3k views
How to consume non-IIS hosted, WCF, C# web service from Delphi 2007?
I've written a fairly simple little C# web service, hosted from a standalone EXE via WCF. The code - somewhat simplified - looks like this:
namespace VMProvisionEXE
{
class EXEWrapper
{
static ...
5
votes
5answers
818 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 ...
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 ...
4
votes
6answers
237 views
C# - indentation shortcuts in Visual Studio 2010
I'm new to Visual Studio 2010 and C#. How can I indent the selected text to left/right by using shortcuts?
In Delphi IDE the equivalents are Ctrl+Shift+I and Ctrl+Shift+U