1
vote
4answers
335 views
How to remove duplicate records in grid ?
Hi,
Good morning !
What is the best way to remove duplicate records from grid control? I use Delphi 2009 and devEx quantumGrid component.
I tried looping through all the re …
0
votes
5answers
227 views
Problem with Check for updates in RAD studio
Hi,
I installed Embarcadero RAD Studio (Delphi 2009). When the IDE ran for the first time, it downloaded updates and ran the MSI automatically. Accidentally I pressed cancel, instead of ok …
0
votes
4answers
866 views
how to convert byte array to its hex representation in Delphi
Hi,
I have TBytes variable with a value [0,0,15,15]. How can I convert it to "00FF" ?
I dont want to use loops, bcoz this logic to be used in time intensive function.
(I tr …
0
votes
3answers
185 views
Dataset’s TBytes column and SQL VarBinary field combination
Hi,
select convert(varbinary(8), 1) in MS SQL Server produces output : 0x00000001
On assigning the above query to dataset in Delphi, and accessing field value, we get byte array as …
7
votes
1answer
210 views
Why doesn’t THashedStringList ignore duplicates?
I have the following code:
var
sl: THashedStringList;
begin
sl:= THashedStringList.Create;
sl.Duplicates := dupIgnore;
sl.Add('12345');
sl.Add('12345');
sl.Add('12345'); …
5
votes
5answers
440 views
Fade all other windows of an application when a dialog is shown?
Hi,
How to dim / fade all other windows of an application in Delphi 2009.
Form has an AlphaBlend property, but it controls only transparency level. But it would be nice if we can h …
1
vote
2answers
242 views
Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
Hi,
In Delphi 2009 :
When TListView's GroupView is Active, adding or inserting an item to a TListView always adds it to the end of the list, regardless of Index specified as param. …
0
votes
2answers
444 views
Delphi 2009 command line compiler using dcc32.cfg?
Hi,
In Delphi 2009, how can I build a project using command line. I tried using the command line compiler and supplying -a -u -i -r in dcc32.cfg file. But compiler is not recognizing the …
1
vote
2answers
197 views
How to specify MSbuild output folder?
Hi,
When I execute delphi 2009 project using MSBuild command line, output always goes to C: drive
C:\MyProjects>MSbuild "C:\MyTestProject\Test.dproj" /t:Build /p:OutDir=" …
0
votes
3answers
180 views
Use debug dcus option in Delphi 2009 ?
Hi,
On setting "Use debug .dcus" option to True in project options, method calls in my application does not work as expected.
Say for example,
I call a method func(a, b, c) …
0
votes
2answers
261 views
Remove focus rect on control - Delphi
Hi,
Is there any option to not draw "focus rect" on a control in Delphi 2009?
-Pavan.
…
0
votes
5answers
236 views
[DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error
Hi,
I get the below error when I try to link resources in a dll.
[DCC Error] E2161 Error: RLINK32: Too many resources to handle.
Number of resources are more than 10K. …
0
votes
1answer
63 views
Is there any pattern for handling resource libraries?
Hi,
Good morning!
Is there any pattern (software design pattern) for loading images or message strings from resource files?
-Pavan.
…
0
votes
1answer
193 views
TBitmap drawing transparent image in Delphi 2009.
Hi,
Problem in drawing a semi transparent PNG image on TBitmap object.
If the TBitmap's ,HandleType is set to bmDDB, then the canvas is drawn transparent.
But the problem is it does …
0
votes
1answer
41 views
Working with IME names in Delphi
Hi,
Delphi TScreen object has a collection that accepts IME names. And the TControl offers SetIMEName method.
Are these IME names constant? Are they same as ISO language names? …
