Fernando_Ramos Posted May 16, 2004 Report Share Posted May 16, 2004 como fazer para colocar variaveis que possam ser usadas em todos os forms do meu projeto? Quote Link to comment Share on other sites More sharing options...
0 Corposemalma Posted May 16, 2004 Report Share Posted May 16, 2004 Coloque a variavel como do form (não de procedimento e funcoes)type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; nomevariavel: tipo; // AQUIe vai precisar colocar um form como uses do outro Quote Link to comment Share on other sites More sharing options...
0 Fernando_Ramos Posted May 17, 2004 Author Report Share Posted May 17, 2004 e como faz para colocar um form uses do outro?? Quote Link to comment Share on other sites More sharing options...
0 Corposemalma Posted May 17, 2004 Report Share Posted May 17, 2004 lá no cabeçalho tem o USES e varios itens, é só colocar lá o nome pelo qual o form está salvo...unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, NomeDoForm; Quote Link to comment Share on other sites More sharing options...
Question
Fernando_Ramos
como fazer para colocar variaveis que possam ser usadas em todos os forms do meu projeto?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.