- Код: Выделить всё
#Const DEBUG_MODE = 1
...
#If DEBUG_MODE = 1 Then
MsgBox "Debug", vbInformation
#Else
MsgBox "Non debug", vbInformation
#End If
В Project properties->Make->Conditional Compilation Arguments: DEBUG_MODE = 0.
Однако и в готовом и в отладочном варианте отображается "Debug". Что тут не так?