Jump to content

Recommended Posts

Posted

Hello!

 

How (or better, WHERE) can I to declare a global variable "sessioned"?

 

A global variable to be used in all forms/units and different for each session?

 

I want to use it like USERNAME for my authentication engine. Each session have a diferent user, and this variable will be used in all forms (to test grants).

 

Thanks for help.

 

Luiz

Posted

You can declare them  inside mainmodule

 

type
  TUniMainModule = class(TUniGUIMainModule)
    procedure UniGUIMainModuleCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
    globalVariableForEachSession: String;
  end;
 

 

Posted

Hello!

 

Sorry my ignorance, but I am doing something wrong.

 

I declared the variable in MainModule:

 

 

type
  TUniMainModule = class(TUniGUIMainModule)
  private
    { Private declarations }
  public
     gNome : String;
     { Public declarations }
  end;
...

 

 

 

And I am trying to use the variable in MainForm:

 

 

uses
  uniGUIVars, MainModule;

function MainForm: TMainForm;
begin
  Result := TMainForm(UniMainModule.GetFormInstance(TMainForm));
end;

procedure TMainForm.UniButton1Click(Sender: TObject);
begin
  gNome := UniEdit1.Text;
end;
 

 

I try to use:

 

gNome := UniEdit1.Text;

 

or

 

MainModule.gNome := UniEdit1.Text;

 

The error is the same:

 

[DCC Error] Main.pas(40): E2003 Undeclared identifier: 'gNome'

 

What I am doing wrong?

 

thanks.

 

Luiz

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...