0
votes
Avoiding Dialog Boilerplate in Delphi and /or C++
Binding controls to data works well in Delphi, but unfortunately only when that data resides in a TDataSet descendant. You could write a TDataSet descendant that uses an object for data storage, an …
3
votes
Get Application exe size easily
For the sake of future compatibility, you should choose an implementation that does not require pointers or Windows API functions when possible. The TFileStream based solution provided by skamradt …
2
votes
What features would you like to see in the win32 Delphi Compiler?
Set operations that work on strings, object references etc.
Remove limit on the number of items in sets (even if performance suffers)
Attributes and reflection in the native …
4
votes
Get string return value from C DLL in Delphi
p2 isn't initialized. StrPCopy copies the string to a random memory location. And most likely the calling convention is stdcall.
…
4
votes
Will you use Delphi Prism
At our company we already have C# developers on board, and they have no interest in switching to an obscure third party language.
Management and auditors are worried about the future of Del …
0
votes
Multiselect listbox binded to database in Delphi 6.
In a TDbLookupListBox you have the option to bind two different things to data; first you can bind the list to a dataset (ListSource/ListField/KeyField), second you can bind the selected item to a …
8
votes
What is the simplest way to work with associative strings (key/values)?
Yes, assignment can be done this way instead, avoiding manual string concatenation:
MyStringList.Values[Key1] := Value1;
…
2
votes
Serial port WriteFile() freeze
If you google for the words writefile hangs, you'll find a number of discussions on this problem. Some leads are buffer overruns, sizing your buffer correctly, a defective COM port, cleari …
1
vote
What Delphi coding standards document(s) do you follow?
It really doesn't matter as long as you pick one and stick to it. A coding standard is like a dialect, and as long as everyone on the team speaks the same dialect, you're fine.
That said, w …
3
votes
Can a TClientDataSet Nested (one-to-many) DataSets be created at runtime
Nesting DataSets in ClientDataSets by Cary Jensen should answer your question. Also look for other articles on this site by Cary fo …
2
votes
How to make Delphi DUnit test fail when TSQLConnection.Connected = true
GExperts has a "Set Component Properties" expert that we configure to close database connections on every compile. Since doing that, we have not had the problem.
…
8
votes
Switching Control Types (but not names) for Lots of Controls on a Form in Delphi
If you don't feel like using any external tools, you could always try switching to view the form as text, then search and replace TEdit to TSpinEdit. When you switch back and save the form, the IDE …
1
vote
Filtering A TClientDataSet On A NestedDataSet Field
Try adding an OnFilterRecord handler to the master dataset and use Locate on the nested dataset inside the handler to see if the record exists.
…
1
vote
How can I check that Properties linking to components is not “lost”?
When you add a form, data module or frame to a project, the IDE inserts a little comment "tag" after the unit name in the dpr file. It has been my experience that if for any reason this tag is not …
1
vote
Registering a form in Object Repository (automated, by code or any other means)
Since nobody else is giving answers, let me tell you would I would try.
I would go to the registry and export a copy of the Delphi branch before registering the form in the repository, then …
