3
votes
8answers
312 views
Is Installshield the only way to go for Delphi Installations?
Or is there anything cheaper and better?
I am still using the Installsheild express (Borland Limited Edition) as supplied with Delphi 6 :) but I "feel" that I should update it – am I going …
2
votes
Getting a Field List from a DBExpress TSQLQuery
Although a slightly different dataset type this is what I use with TClientDataset simple and effective :)
for i := 0 to FilterDataSet.Params.Count -1 do
begin
Case FilterDataSe …
0
votes
How do you do a global search and replace in all the files in Delphi 2006 project
I use BK ReplaceEm V2.0
Does the job.
Another great utility is WinMerge
…
1
vote
Getting a Field List from a DBExpress TSQLQuery
Hi, Replied again 'coz I'm interested. My methods works (with my queries) because they have been pre-defined with the params' datatypes preset to the correct type:)
I'm not sure how you are …
0
votes
What is the fastest way to Parse a line in Delphi?
This begs another question - How big?
Give us a clue like # of lines or # or Mb (Gb)?
Then we will know if it fits in memory, needs to be disk based etc.
At first pass I would use my WordLi …
0
votes
extract an object from a TObjectList
Anything wrong with:
ExtractedObject := TExtractedObject.Create;
ExtractedObject.Assign(Thelist[Idx]);
TheList.Delete(idx);
There is time needed for the create and ass …
2
votes
Should I use delphi tframes for multi-pages forms ?
I have a word for you : TFrameStack. Simply what the name suggests.
It has a few methods: PushFrame(AFrame), PopFrame, PopToTop(AFrame), PopToTop(Index),
and a few Properties: StackTop; Fr …
0
votes
How to force Delphi compiler to display all hints and warnings
I am still using D6 for some projects and if I do a full build then all hints and warnings are displayed/re-displayed. For syntax check or compile only changed unit messages are displayed.
…
1
vote
Creating components at runtime - Delphi
But if I don't surely know how many components I want to create, e.g. if it depends on user's decision. So how can I declare components dynamically?
The answer …
1
vote
Separating Interface and Implementation classes in delphi?
Maybe my previous comment was a little presumptuous ... Reading your question again I think you may have misunderstood how to use units and in particular the "uses" directive.
You can dec …
3
votes
Problem with Delphi 2009 and old-style object type
I must admit I had a couple of beers looking at this, just for the challenge :) You need some magic bytes. According to legend Old style objects ONLY create a space for the pointers if you use ANY …
1
vote
How do I tell if a form is in help mode?
The form's cursor is acutally 0 even
when it has a ? next to it... That I
find odd.
That's because that is your forms cursor
Try Screen.Cursor that …
2
votes
Problem with Delphi 2009 and old-style object type
Ok - Done that - I cannot get it to fail.... Is your D2009 Fully Patched?
Project/Compiler Options?
For absolute certainty and comparison here are my units:
---------------Project F …
7
votes
Where to start OOP in Delphi mainly focusing on database development?
Hmmm. Big question, this stuff is not in the manuals:( Would really require a book to answer it. However if you are starting a new largish? project then my advice list, after 10 years doing this wi …
1
vote
Dynamic GUI creation using configuration files
Yes we can :) I have done this for a page designer that uses only Textboxes, Rules(lines) and Graphics but it should work for all registered controls.
[Off the cuff code approximation] …
