Tagged Questions
8
votes
7answers
2k views
How to improve the use of Delphi Frames
I've used frames in Delphi for years, and they are one of the most powerful features of the VCL, but standard use of them seems to have some risk such as:
It's easy to accidentally move or edit the ...
8
votes
3answers
1k views
Should I use delphi tframes for multi-pages forms?
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 about that file in a grid, ...
6
votes
2answers
176 views
Why isn't my TFrame “seeing” a posted message?
I just recently begun using TFrames heavily (OK, yes, I've been living under a rock...). I thought frames supported Message hander method declaration--and I've seen many examples of that. So why does ...
6
votes
9answers
3k views
Delphi, frames vs forms. What for multi-document interface?
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 sheets.
Someone pointed ...
6
votes
4answers
2k 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 descendant's properties ...
5
votes
2answers
366 views
How to avoid issues when embedding a TForm in another TForm?
I often embed a TForm descendant into another TForm descendant like this:
var
Form1: TForm1;
Form2: TForm2;
begin
Form2.Parent := Form1;
Form2.BorderStyle := bsNone;
Form2.Align ...
4
votes
5answers
1k 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 header/caption, borders, ...
3
votes
1answer
199 views
Delphi: frame properties do not update when I expect them to (they get stuck)
I have a frame on a form. When I change the frame (add/delete buttons, labels) no changes appear on the form or controls have other positions in the form that in the frame. If to delete the frame from ...
3
votes
6answers
2k views
The control 'xxx' has no parent window
I'm was trying to write a dll library in Delphi wih a function that creates an instance of a TFrame descendant and returns it. But when I imported this function in an application, every time I called ...
3
votes
1answer
333 views
EventHandler inside a TFrame?
I have a TForm (TVehicleEditForm) with 3 identical TFrames (TVehicleUnitFrame) inside.
The idea was that every instance of the frame handle own events by a eventhandler inside the frame. The problem ...
2
votes
1answer
131 views
Why don't forms receive WM_NOTIFY messages for children of a TFrame?
The WM_NOTIFY message is often used for in-place "tool tips" (message balloon) and other control notifications, but if I place a control on a TFrame, then WM_NOTIFY messages never occur for those ...
2
votes
0answers
153 views
Delphi 7 - Handling MouseWheel events for Embedded Frames in Forms?
Hi I have a form with several frames inside.
For some of the frames, i wish to scroll the contents (or at least handle the mousewheel event).
I have tried the following:
Simply assigning a ...
2
votes
2answers
155 views
Delphi: refer to control from thread in frame
There is a FRAME (not a form) and a thread. How to refer to Frame's control from the thread? For example I want to disable a button from a thread. But I don't have a pointer to the button, no global ...
2
votes
4answers
826 views
How to simulate an OnDestroy event on a TFrame in Delphi?
How can i simulate an OnDestroy event for a TFrame in Delphi?
i nievely added a constructor and destructor to my frame, thinking that is what TForm does:
TframeEditCustomer = class(TFrame)
...
...
2
votes
3answers
217 views
Is it possible to visually design a custom component at design time?
I am venturing into making my own components in Delphi. Im having difficulty getting started with component development.
I want to make a composite control ie a control made up of serveral other ...
2
votes
0answers
339 views
TFrame component : Resource not found
Tool: Delphi 6 Pro
I created a new component in my main components package that is a descendant of TFrame using the Component -> New Component option. When I try to draw the component on a form ...
2
votes
1answer
166 views
Set designed Tframe on some Tpanel
I am totally novice in C++ Builder.
Never tried working with VCL frames.
So, i have some Tform with Tpanel and two frames designed.
How can i display designed frames on my forms panel?
Tired ...
2
votes
4answers
661 views
What is the accepted way to use frames in Delphi?
I was having my usual stroll around SO and bumped on some frames discussions.
I'm mainly a Delphi hobbyist and not a professional so I had to learn how to use TFrames my own way witch is:
Create a ...
2
votes
1answer
277 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 compelling. I then register ...
2
votes
6answers
1k views
Registering a custom Frame
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 frame as an IDE wizard to ...
2
votes
5answers
1k 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 possible to use the ...
2
votes
2answers
817 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:
Specifics:
...
1
vote
1answer
182 views
Delphi: frame+colorbox=bug
Delphi XE (It works fine in Delphi 2010).
Try: create a frame and a color box inside it. The color box -> set a Selected color other than black and a style = cbCustomColor (not cbCustomColors); paste ...
1
vote
3answers
392 views
Delphi: Managing multiple instances of TFrames
In this article there is an explanation of how to use TFrames as an alternative to TTabSheets in a Delphi PageControl.
I've been pondering a similar exercise, which the above doesn't seem to provide ...
1
vote
3answers
412 views
create Tframes on runtime:
is it posible to create runtime frame and add existing panels like setting the parent of panel to the frame? and when it added, dulplicate the frame and use it?
like:
f:= Tframe. create(..)
...
...
1
vote
1answer
334 views
Load Tframe from bpl to application
I am trying to load a tframe inside a delphi package (bpl) to be shown in my main app
please give me code for both package and application.
1
vote
2answers
414 views
how to load delphi tframe from dll to delphi application
i have created a dll with tframe .
how can i load it inside my application, i dont like to use bpls , i only want to destribute exe and dlls with my app
1
vote
4answers
577 views
How to implement the OnResizeEnd Event for TFrame?
in the middle of the application is a frame. After resizing i need to rearrange controls on this panel (doing this in the resizing event is too busy).
Its more useful if this can be done once after ...
0
votes
1answer
84 views
Why is my TScrollBox not showing scrollbars?
This seems like a very simple problem, but I cannot get a scrollbox to display scrollbars, and it is driving me crazy.
Here is the situation. I need to display a variable number of frames in a ...
0
votes
2answers
123 views
Delphi: Frame and State of ActionList - Error?
I have an Action List on a Form and a Frame (a unit of a Form is impelemented in the Frame).
I set Form2.General.State:=asSuspended in the Frame, and I have an error: Undeclared identifier: ...
0
votes
1answer
71 views
Setting the Site Property of TFrame
I am attempting to create a CustomControl in C# which contains a Delphi TFrame, which can be dragged from the VisualStudio toolbox onto a Form. This much I have working correctly, however when I ...
0
votes
1answer
199 views
Load Frames from packages
I have three frames inside separate three bpls,
in my main application i have created three buttons and , i want to call the frames dynamically(one at a time )when the respective button is clicked ...
0
votes
2answers
171 views
Problem with size of a Toolbar2000 with an embedded Frame
I have Jordan Russel's Toolbar2000 toolbars that I create at runtime with an embedded TFrame and dock on the application main form. This frame has an embedded pane that in turn
contains other panels ...