Results 1 to 40 of 260

Thread: [vb6] Project Scanner

Hybrid View

  1. #1
    PowerPoster
    Join Date
    Sep 2012
    Posts
    2,083

    Re: [vb6] Project Scanner

    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
    Code:
    Option Explicit
    
    Public 编号 As String
    Public 姓名  As String
    Public 性别 As String
    Form1.frm
    Code:
    Option Explicit
    
    Private mEmployee As New 员工      'Class: 员工
    
    Private Sub Form_Load()
    
        mEmployee.编号 = "0001"
        mEmployee.姓名 = "Tom.Zhang"
        
        MsgBox mEmployee.编号 & ", " & mEmployee.姓名
        
    End Sub
    Last edited by dreammanor; Dec 22nd, 2018 at 09:11 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width