Top "Delphi-2010" questions

Delphi 2010 is a specific version of Delphi.

case insensitive Pos

Is there any comparable function like Pos that is not case-sensitive in D2010 (unicode)? I know I can use Pos(…

delphi delphi-2010
TWAIN scanning components for Delphi

I need to add TWAIN scanning to an Delphi application and am having trouble locating an off-the-shelf component to do …

delphi delphi-2010 twain
What is the compiler version for Delphi 2010?

In Delphi 2010, if I want to do this: {$IFDEF VER999} //some delphi 2010-specific code here {$ENDIF} What version # do I …

delphi delphi-2010
Difference between datetimes in Hours, Mins, Seconds

I am trying to get the difference between two datetimes and display it in string as hh:mm q.parambyname(…

delphi delphi-2010
How hard is it to migrate a project from Delphi 7 to Delphi XE?

Our company have a software that has been in development for over 10 years, so there are some really dated stuff …

delphi delphi-2010 delphi-7 delphi-xe
How to split string by a multi-character delimiter?

Is there a Delphi function to split string by a multi-character delimiter rather than a single character ? For instance when …

delphi delphi-2010
Focus next control on enter - in overridden KeyUp

I have my custom class that extends TEdit: TMyTextEdit = class (TEdit) private fFocusNextOnEnter: Boolean; public procedure KeyUp(var Key: Word; …

delphi delphi-2010
how to color DBGrid special cell?

I have a column which have only "yes" and "no" values. I want if column value is "yes" then only …

delphi delphi-2010 dbgrid
delphi - strip out all non standard text characers from string

I need to strip out all non standard text characers from a string. I need remove all non ascii and …

delphi parsing ascii delphi-2010 delphi-7
how to dynamically create a component in delphi such as TLabel or TEdit ...etc

Using Delphi 2010 SQLQuery1.First; // move to the first record while(not SQLQuery1.EOF)do begin // do something with the current …

delphi delphi-2010 vcl dynamic-class-creation