Hi LaVolpe,
My projects is very large, so pScanner has encountered many new problems while scanning. Even if there is no Chinese chars in some bas files, pScanner still generate errors and exit VB6 IDE.
I'm a little busy these days. When I have free time, I'll fix all the defects in the pScanner and add detailed comments, and then post the modified pScanner source code. But this may be a week later.
In addition, Chinese chars can be used to declare variables, classes, and controls in VB6, although I never do this.
员工.cls
Form1.frmCode:Option Explicit Public 编号 As String Public 姓名 As String Public 性别 As String
Code:Option Explicit Private mEmployee As New 员工 'Class: 员工 Private Sub Form_Load() mEmployee.编号 = "0001" mEmployee.姓名 = "Tom.Zhang" MsgBox mEmployee.编号 & ", " & mEmployee.姓名 End Sub




Reply With Quote