Search Results

1
vote

Where are all the Delphi Developers?

There is a good community in the UK on cix which I have found invaluable over the years. There's unfortunately getting less traffic but the quality of …
-1
votes

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

I don't think you can do that, directly mixing managed and unmanaged code in the the same app. However RemObjects have a framework called …
0
votes

Spin Control in Delphi

TMS Software do a wide range of components including spin edits (fancy an iPhone style one!) and I have found their support through the newsgroup …
2
votes

Delphi Prism / VS 2008: Switching from code to design with one key?

Have you seen the free DPack. This is a series of IDE enhancements designed to make you more productive and includes a Delphi keyboard m …
1
vote

Best auto-update component(s) for Delphi

I use TWebUpdate from TMS Components and am very happy with it. I haven't used LMD so unfortunately am not able to provide a comparison. …
0
votes

printing to pdf

You don't say how you are generating your reports but Gnostice have a number of tools that may of help to you. …
0
votes

How to calculate the number of rows for a report and hide a header.

I'm not familiar with Rave Reports but could you not default the header and footer to not being visible and then in the beforeprint, set them visible when you execute the code that triggers when th …
3
votes

Recommended barcode type?

I'd maybe suggest using EAN/UPC, especially if you're using it in a small shop. The products in the shop will generally carry their own barcodes (which will be EAN8/13 if you're in Europe o …
3
votes

How do I recognize command-line parameters in my Delphi program?

You may wish to consider the FindCmdLineSwitch from the SysUtils unit. function FindCmdLineSwitch(const SwitchValue:string):Boolean; function FindC …