Product Information > JADE Encyclopaedia of Classes – Volume 2 > Chapter 1 - System Classes > signOnUserCode

signOnUserCode

Type: String[30]

Availability: Read-only

The signOnUserCode property of the Process class contains the user code specified when signing on to the application.

The following example shows the use of the signOnUserCode property.

load() updating;
begin
    self.centreWindow;
    self.caption        := process.signOnUserCode;
    connectionName.text := app.computerName;
    sendIt.value        := true;
end;