Tagged Questions

4
votes
8answers
418 views

Delphi, frames vs forms. What for multi-document interface?

Hi, yesterday I've started discussion on "MDI vs tabbed interface". I've asked whether should I continue developing my app as MDI-based, or should I embed the child forms into tab …
2
votes
1answer
104 views

Frame inheritance and duplicate files in packages

I have been developing a number of components using TFrames and ModelMaker -- I've found the combination of visual design/development + inheritance + ModelMaker to be very compelli …
7
votes
3answers
420 views

Should I use delphi tframes for multi-pages forms ?

Hello I have some forms in my application which have different "states" depending on what the user is doing; for exemple when listing through his files the form displays some data …
2
votes
5answers
461 views

Registering a custom Frame

Hi, In Delphi 2009, In one of my projects, I have a custom frame with some controls on it which I want to use as the base class for some other controls. I want to register this fr …
2
votes
2answers
271 views

TFrame inheritance refactoring

Yet another TFrame IDE-registered-component question from me. Thanks for all the help, fellow programmers. : ) Playing around with Darrian's TFrame inheritance suggestion here: …
0
votes
4answers
472 views

Passing parameters to a delphi TFrame

To avoid singletons and global variables I'd like to be able to pass parameters to a TFrame component. However since a TFrame normally is included on form at design time it is only …
2
votes
4answers
427 views

Delphi IDE treating TFrame as if it were a Form

Every once in a while when I am tweaking my TFrame classes (adding properties, methods, etc), the IDE gets confused and acts as if it thinks the frame is a form, complete with head …
5
votes
4answers
795 views

Showing TFrame descendant’s additional properties on the object inspector

Delphi object inspector doesn't show TFrame descendants's additional properties by design. People tend to suggest using a known trick which is commonly used for showing TForm desce …