VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3090 ClientLeft = 60 ClientTop = 450 ClientWidth = 4680 LinkTopic = "Form1" ScaleHeight = 3090 ScaleWidth = 4680 StartUpPosition = 3 'Windows Default End Attribute VB_Name = "Form1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Form_Load() Dim Result As Boolean Result = (3 = 4) And (5 = 7) Debug.Print Result Result = (5 <> 5) Or (3 >= 0) Debug.Print Result Result = Not (7 < 5 Or Not (8 < 9)) Debug.Print Result Result = (Not (7 > 9) And (4 < 9)) Or (1 <> 1) And (6 < 8) Debug.Print Result End Sub