Option Explicit Main Sub Main If Test1 And Test2 Then MsgBox "True." Else MsgBox "False." End If End Sub Function Test1 MsgBox "Test1." Test1 = False End Function Function Test2 MsgBox "Test2." Test2 = False End Function
戻る