Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
9answers
823 views

Debugging problems with ‘WITH’ statement in Delphi 2006

Hi I am have a problem debugging code that uses a ‘WITH’ statement in BDS 2006 The debugger will not show the values of the variables with in a class or record. Am I doing something wrong or does BDS ...
2
votes
1answer
201 views

How to enable BDS2006's C++ WARN & TRACE macros

I am trying to find out how to enable (& use) Borland's WARN & TRACE macros. My starting point was this link: ...
2
votes
2answers
2k views

Problem with updating blob, if blob contains specific data

I have binary data that needs to be stored in a BLOB field in a SQL-database. In case of an UPDATE (storing into the database), the binary data comes as a string (BDS2006, no unicode). When the BLOB ...
1
vote
1answer
88 views

GetVersionExW error in BDS2006

this works in Delphi 2009 but in TurboDelphi/BDS2006 I get an error: [Pascal Error] xxx.pas(117): E2033 Types of actual and formal var parameters must be identical ... var osVerInfo ...
0
votes
0answers
15 views

File not found in bds 2006

I installed Borland Development Studio 2006 .When I try to run my application in bds 2006 I get error saying "file not found:'DBAccess.dcu'.the unit dbacces is there in the uses . what is the ...
0
votes
0answers
20 views

How to setup, and use, Google C++ Test in Borland Development Studio 2006?

I've looked through the Google C++ Testing documentation, and whilst it makes reference to Borland C++ saying that it is supported, there doesn't appear to be any specific, and clear, instructions on ...
0
votes
1answer
395 views

Convert RTF image data to plain text (SQL Server and Dephi BDS 2006)

Been struggling with this one for a while. We have a old table (SQL Server) that has image type data. I want to get the text. So far this is what I've done. Try to convert or cast it (not allowed) ...
0
votes
2answers
331 views

w8004 compiler warning BDS6 c/c++

It is a best practise to initialise a variable at the time of declaration. int TMyClass::GetValue() { int vStatus = OK; // A function returns a value vStatus = ...