VERSION 5.00 Begin VB.Form HideDiff BorderStyle = 3 'Fixed Dialog Caption = "P4ForOffice Options" ClientHeight = 3195 ClientLeft = 2760 ClientTop = 3750 ClientWidth = 6030 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 3195 ScaleWidth = 6030 ShowInTaskbar = 0 'False Begin VB.CheckBox HideAdvanced Caption = "Hide advanced menu items" Height = 375 Left = 720 TabIndex = 3 Top = 960 Width = 3255 End Begin VB.CheckBox HideDiff Caption = "Hide diff question dialog" Height = 375 Left = 720 TabIndex = 2 Top = 480 Width = 3255 End Begin VB.CommandButton CancelButton Caption = "Cancel" Height = 375 Left = 3120 TabIndex = 1 Top = 2640 Width = 1215 End Begin VB.CommandButton OKButton Caption = "OK" Height = 375 Left = 1320 TabIndex = 0 Top = 2640 Width = 1215 End End Attribute VB_Name = "HideDiff" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub CancelButton_Click() Unload Me End Sub Private Sub Form_Load() ' Initialise the options HideAdvanced.Value = HideAdvancedMenuOption() HideDiff.Value = HideDiffDialogOption() End Sub Private Sub OKButton_Click() SetHideDiffDialogOption HideDiff.Value SetHideAdvancedMenuOption HideAdvanced.Value End Sub