Tagged Questions

6
votes
2answers
152 views

Is it possible to dynamically create form without having *.dfm and *.pas files?

is it possible to create and show TForm without having source files for it ? I want to create my forms at runtime and having the empty *.dfm and *.pas files seems to me useless. Thank you
5
votes
1answer
127 views

Delphi - overriding hide behaviour of TForm.showModal

I am currently writing a windowing system for an existing Delphi application. Currently, the program consists of a number of full-sized forms which are shown modally in the order they are required ...
5
votes
2answers
354 views

Make 2 forms able to overlap each other?

I would like to have a seperate form that shows "along" with my main form, so it does not overlap the main form. Here's an example: Notice how the main program, overlaps the log? I can't figure out ...
4
votes
1answer
112 views

Is there an event fired in a form when application closes

My application spawns several independent forms. Once when created the application forgets about them. All action is handled in that form itself. When the application closes the form closes also, by ...
4
votes
3answers
136 views

How to reset a delphi TForm to original appearance after use of ScaleBy()

I want to allow a form to be sized by the user with its controls proportionaly resized. ScaleBy( N,M ) works fine for me but there are of course cumulative rounding errors if it is repeated. To ...
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
1answer
194 views

How to make TForm shows scrollbars when BorderStyle=bsNone?

When their BorderStyle is set to bsNone, TForms usually won't show scrollbars even if the AutoScroll is True and some children controls positions exceed ClientWidth/ClientHeight values. So, is there ...
2
votes
2answers
129 views

How to close a window without closing the whole program?

in my application i have two forms let's say, LoginForm and AccountForm The LoginForm is set as the main Form, it is the form when the user is able to login from to his account ( two TEdits and login ...
2
votes
5answers
149 views

How do I catch certain events of a form from outside the form?

I'm working on something which will require monitoring of many forms. From outside the form, and without putting any code inside the form, I need to somehow capture events from these forms, most ...
2
votes
0answers
155 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
1answer
93 views

Tool/utility to refactor Delphi 6 event handler properties?

I have a component that is used widely throughout my application code base (i.e. - multiple applications). I want to change one of the commonly used event handler properties. I need a tool/utility ...
2
votes
5answers
972 views

Dynamic Delphi form creation - ensuring correct mouse message handling

I have an Application layout that is based on a treeView at the left, and a panel on the right. The panel hosts a differnt TForm class depending on the tree node selected (a kind of 'form explorer'). ...
1
vote
1answer
69 views

Forms automatically showing without me telling them to?

Now with at least 300+ variations of manually created forms I've created in the past 5 years, I've never seen this problem. I have of course a main form, and then a bunch of smaller child forms. These ...
1
vote
5answers
164 views

Main Form not displaying when showing modal form in main form's OnShow?

I have created one application in which Main Form Calls Sub Form on FormShow event of Main Form. Sub Form is displayed and gives two options to choose. If First option on sub form is selected then ...
1
vote
2answers
260 views

Organize windows in a SDI Delphi Application

In an Delphi MDI application i can use the Tile,Cascade and ArrangeIcons procedures to organize my child windows, this methods only works when the FormStyle property is set to fsMDIForm, How i can ...
0
votes
2answers
72 views

Delphi - child forms have frame of parent

I have a delphi application with multiple forms. Initially I had tried a setup where each newly opened form was a frame and the "parent" of this form (whichever called to open the form) was hidden as ...
0
votes
5answers
142 views

Why would OnShow not be called for a TForm?

I'm working in a project in Delphi 7 and I'm not extremely intimate with the language or runtime. I'm attempting to debug an issue where a form is made visible and painted and such but for some reason ...
0
votes
4answers
152 views

Using another forms event procedure

Is there any way to allow one form to use the event procedures from another form? E.g. I have a form called PongForm and another called ObstPongForm. There is a ticker on PongForm and another one on ...
0
votes
1answer
203 views

Delphi: a modal form flickers

There is a modal form with: labels, buttons, group boxes. I call from a Form 1 on a button click: Form2.ShowModal; When the form 2 appears first - all is ok because of a blend effect. But next ...
0
votes
3answers
179 views

Delphi: is it possibile in the OnFormShow event to tell a form not to display even for a millisecond?

In the OnFormShow event I need (for a particular set of conditions) not to show the form. Something like "if counter > 15 don't show the form". I could of course refactor and move many things on ...
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
2answers
211 views

Delphi - Capturing the Window/Form which has current focus

I have an MDI application with numerous MDI Children (and also non MDI forms) and would like to track which form is currently activate and has the focus at all times. When a user switches from one ...
0
votes
2answers
164 views

Using commands concerning DBGrid from the main form in another form

I'm making a simple program for use in automotive parts shop. Here's how it's supposed to look: Link The problem is the small window on the left. It should be opened when double clicked on any of the ...
0
votes
2answers
412 views

Delphi - Creating a control that runs in its own process

HI I have a control that accesses a database using proprietary datasets. The database is an old ISAM bases database. The control uses a background thread to query the database using the proprietary ...
0
votes
2answers
517 views

Override default Show behaviour / SetVisible of TForm's descendant (Delphi VCL)

I would like to alter the Show default behaviour of a TForm's descendant (for eg. instead of showing itself on the screen, I would like to place it on a page control as a new tabsheet). How to achive ...
0
votes
3answers
846 views

Registering a form in Object Repository (automated, by code or any other means)

I was doing some customization to my forms, since I want them with some published properties appear on Object Inspector. I've done the simple way: create the form, put it on object repository, created ...
-1
votes
3answers
127 views

How to implement some sort of Form Manager?

I'm in the middle of a project with a number of child forms. Many of the forms may be open at once. I'd like to know if there's already something I can use to manage and keep track of these forms, ...