If ..... Else..End If का MS Access VBA में उपयोग करना Pooja April 13, 2021 Computer science 0 Comments MS Access VBA में If ...else.....End If का उपयोग किसी Condition को check करने के लिए किया जाता है. इसका उपयोग निम्नलिखित तरीके से कर सकते हैं.Syntax in MS Access is:If <condition_1> Then Statment_1Else Statment_2End IfExp:- Dim a As IntegerIf (a = 0) Then MsgBox ("The value of a is 0!")Else MsgBox ("The value of a is other than 0! ")End If Tags Computer science MS Access
0 Comments
Post a Comment