Is there a common resolution to concatenate strings in SQL-statements on both Oracle and SQL-Server databases.
It doesn't work with "concat", "+" or "||" on both databases.
I don't want to work with:
if IsOracle then ...
use cdecl in the interface declaration.
use a underscore on start of the name.
check the names case sensitivity
i.e.
interface
function _MyFunction(pszName: PChar): Boolean;cdecl;
implementation
function _MyFunction(pszName: PChar): Boolean;cdecl;external 'Mydll.dll';
I don't modify the DFM-files. The strings are only read from there and will be written to a database. From there a string ressource for every language is produced.
With BDEAdmin on both PCs sets the section
Configuration/System/Init:
-LOCAL SHARE = true
in case of WinNT/2000/XP:
SHAREDMEMLOCATION = 0x5BDE
SHAREDMEMSIZE = 4096 (or 8192)
if you use Paradox:
Sets the section
Configuration/Vriver/Native/PARADOX
- Net Dir : A directory (the same on both...
In our office we have developed some VCL components with Borlands C++ Builder5. All sources are available. Now I want to use this packages in Delphi5. What files do I need? The BPLs are not enough. What I have to do?
If I try to open a TTable with the Tablename "Test.txt", I get then error "Invalid tablename". The database of the ttable is a ODBC System-DSN with Microsoft text driver. In ODBC-Configuration I have defined the path and the fieldtypes for the schema.ini file. There is no...
Move Window-controls (TLabel isn't one, you can use TPanel instead) at runtime with the mouse by pressing the CTRL-Button:
{i.e. a TEdit (on the OnMouseDown Event)}
procedure TForm1.Edit1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if ssCtrl in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.