VERSION 5.00 Begin VB.Form frmPuntCodes AutoRedraw = -1 'True BackColor = &H00FFFFFF& BorderStyle = 3 'Fixed Dialog Caption = "PuntCodes" ClientHeight = 1995 ClientLeft = 45 ClientTop = 330 ClientWidth = 7215 ClipControls = 0 'False ControlBox = 0 'False DrawStyle = 2 'Dot LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1995 ScaleWidth = 7215 ShowInTaskbar = 0 'False StartUpPosition = 2 'CenterScreen Begin VB.CommandButton cmdSluitVenster Caption = "Sluit venster" Height = 495 Left = 5760 TabIndex = 0 Top = 720 Width = 1335 End End Attribute VB_Name = "frmPuntCodes" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdSluitVenster_Click() 'Verlaat het form puntcodes Unload frmPuntCodes End Sub Private Sub Form_Load() 'Teken de kleuren van de cirkels frmPuntCodes.ForeColor = QBColor(9) Print "Insteeksloot dijkzijde" frmPuntCodes.ForeColor = QBColor(12) Print "Kant water sloot dijkzijde" frmPuntCodes.ForeColor = QBColor(10) Print "Kant water boezem" frmPuntCodes.ForeColor = QBColor(2) Print "Insteeksloot polderzijde" frmPuntCodes.ForeColor = QBColor(13) Print "Kant water sloot polderzijde" End Sub