Pass Boolean type variable to a function : Boolean « Data Type « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
VBA / Excel / Access / Word » Data Type » Boolean 
Pass Boolean type variable to a function
 

Function MakeIceCream(VanillaToBeAdded As BooleanAs String
    If VanillaToBeAdded Then
        MakeIceCream = "Vanilla"
    Else
        MakeIceCream = "No Vanilla"
    End If
End Function
Sub Hungry()
    Debug.Print MakeIceCream(True)
End Sub

 
Related examples in the same category
1.The Boolean data type accepts one of two values, True or False. You may also assign the value 1 (True) or 0 (False) to a Boolean variable.
2.A Boolean variable can be set only to True or False. You can use the keywords True and False to set the value of a Boolean variable
3.Use if statement with boolean variable
4.Use True literal in If statement
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.