Search Results

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
869 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
441 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
263 views

Remove focus rect on control - Delphi

Hi, Is there any option to not draw "focus rect" on a control in Delphi 2009? -Pavan. …
2
votes
2answers
94 views

Adding validator symbol next to control on a Delphi form.

Hi, I have an application, where there are many forms which follow visual form inheritance. Every form has standard delphi components as well as custom components. Form validating f …
4
votes

Problem with Check for updates in RAD studio

Hi, In the following location <\Documents and Settings\All Users\Application Data{65B1AA84-C1DF-4A2E-A28C-E242BD7DE4B3}> there is a file InstalledUpdates.dat , …