我正在将vb4 16位应用程序转换为vb6 32位应用程序。如何转换图书馆

时间:2013-07-02 16:54:53

标签: vb6

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

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

我想转换为vb6 32位 怎么做

1 个答案:

答案 0 :(得分:2)

VB4中的

User在VB6中是User32(以及引用它的其他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文档