我有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位 怎么做
答案 0 :(得分:2)
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