vb學習筆記

wsqyouth發表於2015-05-01


為了下一個專案用的:

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