Probably as a field on the form class that you're dealing with.
 
e.g.
 
type
    TWallaceForm = class(TForm)
      btnOK: TButton;
    ...
      txtWallacesHiddenTextBox: TEdit;
    ...
    private
      FWallacesPrivateVar: string;     // use this instead of your
hidden text box.
                                                    // Can create as
many "variables" (or fields as they're known in Delphi parlance, hence
the F prefix)
                                                    // of as many
different types as you like.
    ...
    end;
 
Hope I've understood what you're asking for correctly.
 
HTH,
 
Conor

________________________________

From: [email protected] [mailto:[email protected]]
On Behalf Of Marshland Engineering
Sent: Thursday, 20 January 2011 3:45 p.m.
To: [email protected]
Subject: [DUG] Variabels stored


Is there a way to store variables so I can use them from one procedure
to another?  
 
I have been currently storing them in hidden edit.text boxes on the form
but there must be a better way. 
 
Cheers Wallace
_______________________________________________
NZ Borland Developers Group - Delphi mailing list
Post: [email protected]
Admin: http://delphi.org.nz/mailman/listinfo/delphi
Unsubscribe: send an email to [email protected] with Subject: 
unsubscribe

Reply via email to