Label1.Caption = ""
For i = 1 To Len(Text1)
Label1.Caption = Label1.Caption &Chr(Asc(Mid(Text1, i, 1)) + Len(Text1))
Next
End Sub
Private Sub Command2_Click()
If Label1.Caption = "456" Then
Static b As Boolean
Label2.Caption = IIf(b, "你坏", "你好")
b = Not b
End If
End Sub
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)