François

6,854
Reputation
360 views

Registered User

Name François
Member for 1 year
Seen 8 hours ago
Website
Location Bay Area
Age
Mainly Delphi Programming...
Nov
22
accepted How to disable the Formatter in Delphi 2010
Nov
19
comment How to encode a datetime in delphi
@mghie: Psuh him a little bit more and you'll get a complete help for Delphi ;-) @RRUZ: Very good and detailed answer!
Nov
18
accepted Why does Delphi 2009 sometimes (more often that not) insist I build?
Nov
16
answered Why does Delphi 2009 sometimes (more often that not) insist I build?
Nov
16
answered How to disable the Formatter in Delphi 2010
Nov
15
answered Is there a Delphi IDE plugin for XML file editing, validation, formatting?
Nov
15
accepted What Is The Best Practice For Building A Multilingual Application Using Delphi 2010?
Nov
12
revised How to catch scrolling event in DBGrid in Delphi
added inherited in code
Nov
12
comment How to catch scrolling event in DBGrid in Delphi
Tofig, See my Update2. You can avoid changing your existing code.
Nov
12
comment How to catch scrolling event in DBGrid in Delphi
@Tofig: did call inherited in your WMHScroll procedure? If not you would have to provide the expected behavior yourself
Nov
12
revised How to catch scrolling event in DBGrid in Delphi
added note to use a separate unit
Nov
12
revised How to catch scrolling event in DBGrid in Delphi
added some code
Nov
12
answered How to catch scrolling event in DBGrid in Delphi
Nov
12
comment How to catch scrolling event in DBGrid in Delphi
I don't think it would do much good to the OP. He wants to trap the Horizontal scrolling, i.e when the visible colummns change.
Nov
11
comment How to determine Delphi Application Version
Joseph, you should protect your AllocMem with a try...finally
Nov
11
comment How to determine Delphi Application Version
A try...finally would not be bad either for the GetMem/FreeMem
Nov
11
comment How to determine Delphi Application Version
Mick, you should check the returned VerInfoSize like Joseph, and only pursue if > 0, as it may not have file version informastion.
Nov
8
answered What Is The Best Practice For Building A Multilingual Application Using Delphi 2010?
Nov
4
comment Freeware “Structural Highlighting” for Delphi 2007 IDE
+1 for the "readable in any medium"... Still not that simple if you throw in proportional vs fixed fonts, tabs vs spaces...
Oct
27
accepted app using TIdFTP not migrating from Delphi 5 to Delphi 2009…corrupt uploads
Oct
26
answered How to add new project template to Delphi
Oct
24
answered copying file from a server to a local drive - what could slow the access to get file ?
Oct
23
answered Why was TDataSource created originally?
Oct
23
answered Book recommendation for moving from Delphi 6 to Delphi 2010
Oct
21
answered Delphi 2010: New RTTI, setting propertyvalue to arbitary value
Oct
21
answered Trapping Exception using TSQLQuery & params
Oct
21
comment Where can I find a good Delphi or Object Pascal implementation for a circular buffer
+1 for the "teach a man to fish" metaphor analogy instead of just turning the results over.
Oct
21
answered Rules to Develop a Delphi Windows 7 App
Oct
20
comment Gooogle OAuth with Indy in Delphi
Glad you got it to work! No, I'm not François Piette...
Oct
19
accepted Complete XML Schema Validation
Oct
19
accepted Gooogle OAuth with Indy in Delphi
Oct
18
answered What Design Patterns do you implement in common Delphi programming?
Oct
18
answered Complete XML Schema Validation
Oct
18
comment Delphi, VirtualStringTree - rebuilding tree, restoring state (expanded nodes)
Rob, I think he refers to the situation where you want to "refresh" data while keeping the topology as best as you can. You'll want to reopen the opened nodes even if a new node is inserted in between. Thus you need the "id" of the open nodes.
Oct
16
answered Memory profiling tool for Delphi?
Oct
15
answered Gooogle OAuth with Indy in Delphi
Oct
15
answered How to hunt a Heisenbug
Oct
8
accepted TXMLDocument in Delphi
Oct
8
comment TXMLDocument in Delphi
Would be good if you provided the Delphi version you're using. See my answer in case of D2007.
Oct
8
comment TXMLDocument in Delphi
in D2007 TXmlDocument.AddChild creates the DocumentNode if not already there and calls its AddChild. So it's not the problem.
Oct
8
answered TXMLDocument in Delphi
Oct
1
answered Delphi - TStoredProc.Close (does it empty the set?)
Sep
29
comment How to pass a parameter to a windows service once and for all at install instead of each start
Good try, but it does not seem to work... (at least not like with properties or sc start)
Sep
28
comment How to pass a parameter to a windows service once and for all at install instead of each start
Equivalent to edit the ImagePath registry entry. Not specific to the service itself. But a good way to manage that entry anyway, thanks.
Sep
28
comment How to pass a parameter to a windows service once and for all at install instead of each start
Testing at both Exe and service level would be a solution for a single service Exe. But it would require to rewrite the service and would not work also with multiple services in the same Exe.
Sep
28
revised How to pass a parameter to a windows service once and for all at install instead of each start
want service specific param
Sep
28
asked How to pass a parameter to a windows service once and for all at install instead of each start
Sep
28
accepted Does Delphi VCL provide a regular expression library ?
Sep
28
awarded  Nice Answer
Sep
26
comment Findfirst, findnext listing files but not directories… ?
@Omair. Please read the help entry for FindFirst. If you want only the directories, just use the flag faDirectory. Go and look at where it is defined and you'll see all available option that you can combine with or. (faAnyfile being already a combination in itself). Now as Rob explained, build the flag to encompass all the files you need and select those you really want inside the loop with an if condition meeting your specific criteria.