vb学习笔记

前端之家收集整理的这篇文章主要介绍了vb学习笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


为了下1个项目用的:

FormPicture属性图片背景

Labelalignment属性内容居右

对布尔变量的交互使用

if Not firstflag Then

            If Not res Then

                dataout.Caption = ""  '当点击第1个数字时

                dataout.Caption = dataout.Caption & Index

            Else

                dataout.Caption = Index

                res = False

            End If

            firstflag = True

            

Else                                '当点击不是第1次时

            If Not res Then

                'dataout.Caption = ""

                dataout.Caption = dataout.Caption & Index

            Else

                dataout.Caption = Index

                res = False

            End If

End If

 

关于不等的利用:

If (dataout.Caption <> "") Then

End if 

 

 

毛病缘由:未写endif

 

猜你在找的PHP相关文章