Mega Code Archive

 
Categories / VisualBasic Script / Language Basics
 

With the compiler directive

#Const Language = 1 Sub ConditionalIf()    #If Language = 1 Then       msgBox "Hola, Que Tal?"    #Else       msgBox "Hello, How Are You?"    #End If End Sub