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

📄 stringsandconversion.via

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

application PE GUI;

include "Windows.inc", "Strings.inc", "Conversion.inc";

dword dwNumber; string buffer; string sString;

entry

// Strings.inc .. with various variants of calling the fram es..

    sString = Left("Left Mid Right",4);
    MessageBox(0,sString,"Template..",$20);

    MessageBox(0,Mid("Left Mid Right",6,3),"Template..",$20);

    MessageBox(0,Right("Left Mid Right",5),"Template..",$20);

    sString = "UPPER aNd lowercase";
    sString = UCase(sString);
    MessageBox(0,sString,"Template..",$20);

    MessageBox(0,LCase("UPPER aNd lowercase"),"Template..",$20);


// Conversion.inc .. with various variants of calling the fram es..

    sString = CStr(123);
    MessageBox(0,sString,"Template..",$20);

    dwNumber = CInt("321");
    MessageBox(0,CStr(dwNumber),"Template..",CInt("32"));
end.

⌨️ 快捷键说明

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