?? frametest.via
字號(hào):
// FrameTest.lnl
application PE GUI entry main;
import MessageBox ascii lib "USER32.DLL",4;
dword x;
frame MsgBoxInt(dword x);
local string strMsg[128];
Format(strMsg, "Value = %d", x);
MessageBox(0,strMsg,"Result",$20);
end;
frame main();
x = 2;
MsgBoxInt(x);
end;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -