Conditionally compiles selected blocks of Visual Basic code.
#If expression Then statements[#ElseIf expression-n Then [elseifstatements]][#Else [elsestatements]]#End If
The #If...Then...#Else directive syntax has these parts:
Part | Description |
expression | Any expression, consisting exclusively of one or more conditional compiler constants, literals, and operators, that evaluates to True or False. |
statements | Visual Basic program lines or compiler directives that are evaluated if the associated expression is True. |
expression-n | Same as expression. |
elseifstatements | One or more program lines or compiler directives that are evaluated if expression-n is True. |
elsestatements | One or more program lines or compiler directives that are evaluated if no previous expression or expression-n is True. |
The behavior of the #If...Then...#Else directive is the same as the If...Then...Else statement, except that there is no single-line form of the #If, #Else, #ElseIf, and #End If directives, that is, no other code can appear on the same line as any of the directives. Conditional compilation is typically used to compile the same program for different platforms. It is also used to prevent debugging code from appearing in an executable file. Code excluded during conditional compilation is completely omitted from the final executable file, so it has no size or performance effect.
Regardless of outcome of any evaluation, all expressions are evaluated. Therefore, all constants used in expressions must be defined any undefined constant evaluates as Empty.
Note The Option Compare statement does not affect expressions in #If and #ElseIf statements. Expressions in a conditional-compiler directive are always evaluated with Option Compare Text.
#Const Directive, If...Then...Else Statement.
This example references conditional compiler constants in a #If...Then...#Else construct to determine whether to compile certain statements.
' If Win16 evaluates as true, do the statements following the #If. #If Win16 Then '. Place exclusively 16-bit Windows statements here. '. '. ' Otherwise, if it is a 32-bit Windows program, do this: #ElseIf Win32 Then '. Place exclusively 32-bit Windows statements here. '. '. ' Otherwise, if it is neither, do this: #Else '. Place other platform statements here. '. '. #End If