RtTool/Delphi10/开发档案/Dp10RepoV1/public10/design/U_globalVar.pas
2025-05-06 10:02:32 +08:00

29 lines
487 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

unit U_globalVar;
interface
uses
Messages;
var
gUserName:string;
gUserId:string;
gDllFileName :string;
gDllFileCaption :string;
gConString:string ;
gIsCanDesign:Boolean;
gGridNativeSet:boolean;
gFontSize:integer;
gFontName:string;
gIsUseSkin:boolean;
gIsNoUseBuffer:boolean;
gStructVer:string;
gSystemId:string;
gIsYsUse:boolean;
gTeamWorker:string;
gQueryTime:integer; //0按日1按月
const
WM_CloseForm = WM_USER + 100 ;
implementation
end.