Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 15th, 2004, 01:54 PM
Chris Ulliott Chris Ulliott is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 9 Chris Ulliott User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Accessing form public variables .. newbie

Hi All,

Im writing a forcasting application in Delphi7. I have most of it done but need to set some child window attributes from the Main Form.

It is an MDI. The Main Form has control and I want to set a child windows attributes BEFORE IT IS DISPLAYED. But I cannot seem to set the attributed as the compiler says the variable for the child is not yet initialized. How should this be done?

procedure TMyMainForm(...)
Var
Child: TMDIChild;
Begin
// Initialize
Child.m_dtDate := m_MyDate;
// Show
Child := TMDIChild.Create(Application);
End;
End.

Any ideas how to get around this would be greatly appreciated.

Thanks,

Chris

Reply With Quote
  #2  
Old May 18th, 2004, 12:09 PM
Scorpions4ever's Avatar
Scorpions4ever Scorpions4ever is offline
Banned ;)
Dev Shed God 9th Plane (9000 - 9499 posts)
 
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
Posts: 9,406 Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 10 h 20 m 32 sec
Reputation Power: 4080
One way is to have global variables that you set. Another way is to create the form, set the variables and then call an update function to update controls on the form as required.
Code:
var
	frm2: TForm2;
begin
	frm2 := TForm2.Create(self);
	frm2.x := 23;
	frm2.s := 'Hello World';       
	frm2.UpdateControls;
end;
__________________
Up the Irons
What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home.
"Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest
Down with Sharon Osbourne

Reply With Quote
  #3  
Old June 2nd, 2004, 04:08 PM
pcoveney100 pcoveney100 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 1 pcoveney100 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Accessing form public variables .. newbie

Chris,

There is a protected method Loaded() that VCL form classes inherit.

This method is called automatically from the inherited constructor after the form data is loaded, but before it is shown. You can override Loaded() in your child window class and perform any custom initialization there. So, adjusting your code...

procedure TMyMainForm(...)
Var
Child: TMDIChild;
Begin
// Show
Child := TMDIChild.Create(Application);
End;
End;

procedure TMyChildForm.Loaded;
begin
inherited;
m_dtDate:= m_MyDate;
end; // Loaded

If you override the child form constructor, make sure that you call the inherited constructor or Loaded(0 won't get called.

Phil Coveney

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > Accessing form public variables .. newbie

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap