0

我有 vb4 16 位应用程序。我想转换这两个库...

Declare Function IsCharLower Lib "User" (ByVal cChar As Integer) As Integer
Declare Function IsCharUpper Lib "User" (ByVal cChar As Integer) As Integer

我想转换为 32 位 vb6 怎么做

4

1 回答 1

2

User在 VB4 中是User32在 VB6 中(以及引用它的其他 Windows 语言)。

Declare Function IsCharLower Lib "User32" (ByVal cChar As Integer) As Integer
Declare Function IsCharUpper Lib "User32" (ByVal cChar As Integer) As Integer   

IsCharLower文件

IsCharUpper文件

于 2013-07-02T17:02:54.727 回答