码迷,mamicode.com
首页 > 其他好文 > 详细

vb学习笔记

时间:2015-05-01 14:51:23      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:vb   vb学习笔记   程序   计算器   

技术分享

为了下一个项目用的:

FormPicture属性:图片背景

Labelalignment属性:内容居右

对于布尔变量的交互使用

if Not firstflag Then

            If Not res Then

                dataout.Caption = ""  ‘当点击第一个数字时

                dataout.Caption = dataout.Caption & Index

            Else

                dataout.Caption = Index

                res = False

            End If

            firstflag = True

            

Else                                ‘当点击不是第一次时

            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

 

vb学习笔记

标签:vb   vb学习笔记   程序   计算器   

原文地址:http://blog.csdn.net/u013457167/article/details/45418889

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!