3
votes
What is the best set of tools to develop Win32 Delphi applications?
Component Set (propietary): DevExpress QuantumGrid Suite
Component Set (Free): JEDI and JCS
IDE Experts: GExperts
Versio …
1
vote
Getting BPL Versions at program start.
Is it possible to check what version of BPL (ie Rtl70.BPL, Indy70.bpl etc) are installed >on a clients computer when the program starts?
I have had some programs crash because the …
-1
votes
Getting BPL Versions at program start.
Sometimes Delphi adds of automatic form the line:
{$R ' *.res'}
to the files of project or packages.
Comment (//) that line and to compile again.
…
3
votes
Rendering SVG and Delphi
The project ExtGraph (http://extgraph.sourceforge.net/index.html) based on TSimpleGraph ( …
5
votes
Minimize a external application with Delphi
You can use FindWindow to find the application handle and ShowWindow to minimize it.
var
Indicador :Integer;
begin
// Find the window by C …
3
votes
Problem with adding graphics to TLabel
At first excuse-me for my bad English.
I Think that is not a good idea Change the ClientRect of the component. This property/information is used for many methods and procedures internals at c …
3
votes
0
votes
Best way to sort an array in delphi
TStringList have efficient Sort Method.
If you want Sort use a TStringList object with Sorted property to True.
NOTE: For more speed, add objects in a not Sorted TStringList and at …
1
vote
1
vote
Is there a DBGrid component that can handle large datasets fast?
What you need to do with that amount of records in memory?
Memory and Speed problems are sure.
You must filter, sort, group,... (minimize the result count) BEFORE visualize the result …
4
votes
Setting a DBGrid column format in Delphi
(1) You can Set the DisplayFormat of Field.
(2) You can change too, in the OnGetText event. At this you can do more complex operation with the value.
Excuse-me for my bad english. …
2
votes
Get Application exe size easily
You can try this:
if FindFirst(ExpandFileName(Application.exename), faAnyFile, SearchRec) = 0 then
MessageDlg(Format('Tamaño: <%d>',[SearchRec.Size]), mtInformation, [ …
14
votes
2
votes
Where are all the Delphi Developers?
You can find a big Spanish Community Language on:
http://www.ClubDelphi.com
15 years old and more than 23.000 registered users …
0
votes
How do i tell if one instance of my program is running?
See this unit (using CreateMutex): UiApp
Additionally at this page, you can read the advantages and disadvantages for to …
