Delphi 2010 is a specific version of Delphi.
Is there any comparable function like Pos that is not case-sensitive in D2010 (unicode)? I know I can use Pos(…
delphi delphi-2010I need to add TWAIN scanning to an Delphi application and am having trouble locating an off-the-shelf component to do …
delphi delphi-2010 twainIn Delphi 2010, if I want to do this: {$IFDEF VER999} //some delphi 2010-specific code here {$ENDIF} What version # do I …
delphi delphi-2010I am trying to get the difference between two datetimes and display it in string as hh:mm q.parambyname(…
delphi delphi-2010Our 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-xeIs there a Delphi function to split string by a multi-character delimiter rather than a single character ? For instance when …
delphi delphi-2010I have my custom class that extends TEdit: TMyTextEdit = class (TEdit) private fFocusNextOnEnter: Boolean; public procedure KeyUp(var Key: Word; …
delphi delphi-2010I have a column which have only "yes" and "no" values. I want if column value is "yes" then only …
delphi delphi-2010 dbgridI 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-7Using 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