Search Results

7
votes
10answers
2k views

What are major incentives to upgrade to D2009 (Unicode excluded)?

I'm a hesitant upgrader when it comes to development tools. For roughly half of my product I still use D7, and for others D2006. The truth is, although Unicode support is more than welcomed …
0
votes
5answers
1k views

“Operation not supported” and “Printer selected is not valid” errors while printing

Hello, Hopefully somebody will be able to help. In my Delphi 7 application small percentage of users report errors when printing and I'm trying to resolve this with last of them. I'm slight …
1
vote
2answers
312 views

MS Word Ole Automation, ADO and foreign characters

I'm trying to export WideString texts from the database (ADO / MS Access) to the MS Word document (Delphi 7), but foreign characters are not correctly transferred (i.e. "è" instead of "č …
3
votes

Which embedded database to use in a Delphi application?

It really depends what you need. For single-user applications, Firebird Embedded or SQLite are probably best choices (and price is right). On the other end, if you need support for large number of …
5
votes

Learning C, C++ or Delphi ?

Delphi is not really dead, although it's going through difficult times recently. I think it's all about positioning: smaller teams and single-developers, who choose tools on they own (not forced by …
1
vote

Delphi: How do you auto-update your applications?

I use TmxWebUpdate. It's free, simple and gives you good control over the process. I actually own TMS Component P …
3
votes

Delphi: using TClientDataset as an in-memory dataset

Don't forget to include MIDAS.DLL in your installation or simply include MidasLib in uses clause. Otherwise using TClientDataSet will raise an error on client's machine. Maybe it's obvious, but I a …
1
vote

What is the best way to share Delphi source files among projects?

I'm not sure if I understood question properly. Anyway, when building application suite (several projects but lot of common code), we create folder structure like this: \Main \Pr …
1
vote

How to set a GUID as ADO query parameters from Delphi?

That's correct way to set parameters with ADO. The message you get is most probably due to typo with some of fields (you get same message if field does not exist). …
1
vote

Is there a TDBComboBox equivalent that goes by ItemIndex?

You can fill TDBComboBox items with numbers ('0, '1', '2', ...), but set DBComboBox1.Style to csOwnerDrawFixed and write OnItemDraw event. Something like this: procedure TForm1.DBCo …
2
votes

How does one escape characters in Delphi string

For ' character put it twice. For example: 'Don''t'. Null byte type as #0. …
5
votes

Reading MS Access mdb files in Delphi (for free)?

I use ADO components included with Delphi for this ("Microsoft Jet 4.0 OLE Provider"). It requires MDAC installed on client, which is already included in XP and newer systems. …
2
votes

Best auto-update component(s) for Delphi

I use TmxWebUpdate. It's free, simple and easy to customize. I also own TMS Component Pack with TWebUpdate, but n …