Tip Bank

DevX - Software Development Resource

ToolBar

Question: Can I change the font size of the ToolBar text for the application (not the development painters)? Answer: No. The font size is taken from the user’s operating system

DevX - Software Development Resource

How to terminate a program safely?

In standard C, the functions abort() and exit() perform an immediate program termination, regardless of where they are called from. Although this also works in C++, it is usually not

DevX - Software Development Resource

Local SQL

Question: In Delphi 1 I am trying to emulate the “..” function for wild card search in Paradox in Local SQL. I am aware of ‘like’ but it is not

DevX - Software Development Resource

Copying a file for source to target in Delphi

Question: How to I copy a file from a source to a target in Delphi. I have been trying: SourceId := OpenFile(Source, FileStructure1, of_Read); if SourceID = -1 then ShowMessage(‘Unable

DevX - Software Development Resource

Converting strings to reals

Question: I am trying to read in a value of pi/4 from an editbox. Is there a built in command to convert it to a real from a string or