⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cursor.via

📁 用VB6写的真正的32位高级语言可视程序编译器
💻 VIA
字号:
// Cursor.lnl

application PE GUI;

include "win32a.inc";

type POINTAPI {
    dword x;
    dword y;
}

POINTAPI p; string buffer;

entry

    GetCursorPos(p);
    Format(buffer,"x=%d : y=%d",p.x,p.y);
    MessageBox(0,buffer,"Current Position",$20);

    if (MessageBox(0,"Do you wan't to apply new coordinates?",
        "New Position",$24)=IDYES) {
        p.x = 200;
        p.y = 200;
        SetCursorPos(p.x,p.y);
    }

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -