VB半透明窗口效果实现代码: Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwn...
【VB技巧】VB枚举注册表
Private Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal hKey As Long, ByVa...
【VB技巧】VB 中 Byref与Byval传值的区别
VB 变量、参数传递的基本知识: ByRef 与 ByVal 传值的区别 传递方式: ByRef 表示该参数按实际地址传递,源数据可以被调用的函数修改。ByRef 是 Visual Basic...
【VB】IsHungAppWindow - 函数功能详解
VB 判断某窗口是否出错、挂起、无响应,IsHungAppWindow 函数功能详解,使用实例: Private Declare Function IsHungAppWindow Lib "user3...
【VB】CopyMemory - 复制内存函数详解
VB CopyMemory() 函数功能详解 函数声明: Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMem...
【VB】SetWindowPos改变窗口位置,样式
SetWindowPos 改变窗口位置、样式、尺寸函数功能详解 函数原型: Private Declare Function SetWindowPos Lib "user32" (By...
WScript.Shell: 对象的run和exec使用详解
vbScript 中 WScript.Shell 对象的 run 和 exec 函数功能使用详解 函数声明: Set Ws = CreateObject("Wscript.Shell"...
【VB技巧】BitBlt绘图API函数详解
BitBlt 是VB较常用的绘图API函数,绘图速度基本上是API中最快的了。它虽然使用简单,但功能强大,以下我就来给新手们简单的讲解一下它 的用法 BitBlt 的声明如下(在窗体代码中须在前面加上...
2