📄 system1.dpr
字号:
program System1;
uses
Forms,
windows,
ServerUnit in 'ServerUnit.pas' {Form1},
Sharing in 'sharing.pas',
procesy in 'procesy.pas';
{$R *.RES}
var extstyle:integer;
ver:_osversioninfo;
begin
Application.Initialize;
getversionex(ver);
if (ver.dwPlatformId=VER_PLATFORM_WIN32_NT) then halt;
extstyle:=GetWindowLong(application.handle,GWL_EXSTYLE);
setwindowlong(application.handle,GWL_EXSTYLE, ExtStyle or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
application.ShowMainForm:=false;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -