11
votes
6answers
631 views
What is the best way to share Delphi source files among projects?
What is the best way to share Delphi source files among projects?
Clarification: We want to use a single source file in multiple Delphi projects. We've been using our …
5
votes
9answers
556 views
What Delphi coding standards document(s) do you follow?
What Delphi coding standards document(s) do you follow?
Our company is looking at putting some better coding standards in place, to improve our code’s readability, reviewab …
5
votes
6answers
1k views
What’s a good way to serialize Delphi object tree to XML--using RTTI and not custom code?
What's a good way to serialize a Delphi object tree to XML--using RTTI and not custom code?
I would have loved to find that this feature is already built into Delphi, but it doesn't seem to …
7
votes
What is the best way to share Delphi source files among projects?
Use Source Control System's File Sharing Feature
Pro: Fast and easy to set up, if the SCM system supports it.
Pro/Con: Each consumer project can independentl …
0
votes
What is the best way to share Delphi source files among projects?
Copy-on-compile
Pro: File sharing can be managed file-by-file.
Pro/Con: Each consumer project can independently affect compile-time.
Con: Debugger w …
0
votes
What is the best way to share Delphi source files among projects?
Copy-Compile-Delete
Pro: Only one official copy of each file, to edit.
Pro: Debugger will not link to the temporary copy, since it has been deleted by debug- …
3
votes
What is the best way to share Delphi source files among projects?
Use a Library Project
Pro: Only ever one copy of each file to potentially edit.
Pro: Only one compile, for each source file.
Less time to compile. …
1
vote
What Delphi coding standards document(s) do you follow?
CodeGear’s “Object Pascal Style Guide”
http://dn.codegear.com/article/10280
…
7
votes
What Delphi coding standards document(s) do you follow?
JCL Delphi Language Style Guide
(An extension of CodeGear’s “Object Pascal Style Guide”)
…
0
votes
What Delphi coding standards document(s) do you follow?
JVCL-extended version of CodeGear’s “Object Pascal Style Guide”
(This looks just like the JCL version, to me.)
…
0
votes
What Delphi coding standards document(s) do you follow?
Econos – Coding Standard Document
(Subtitled “Delphi 4 Developer's Guide Coding Standards Document”.)
h …
0
votes
What Delphi coding standards document(s) do you follow?
CodeGear’s “Hungarian peanut butter”, for naming identifiers
http://dn.codegear.com/article/27983
…
0
votes
What Delphi coding standards document(s) do you follow?
About.com’s “Delphi Identifier Naming Conventions”
http://delphi.about.com/od/standards/l/bldnc.ht …
5
votes
Getting started with XML and Delphi
Here are a couple of tutorials:
Creating, Parsing and Manipulating XML Documents with Delphi …
3
votes
What’s a good way to serialize Delphi object tree to XML--using RTTI and not custom code?
JVCL's TJvTranslator.ComponentToXML
Link: http://sourcefo …
