【VB开源代码栏目提醒】:本文主要为网学会员提供3.4.4.frm,希望对需要3.4.4.frm网友有所帮助,学习一下!
VERSION 5.00
Begin VB.Form Form9
Caption = "Form9"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form9"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form9"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim a As String
Dim b As String
Dim x As Boolean
'定义变量a,b为字符串型,x为布尔型
a = "abc"
b = "aBcd"
x = a > b
'比较其值
Print x
'输出结果
End Sub