Date: Halloween Wednesday, 31 Oct 2001 (or 25 Dec 2001) 31 = 25 From: Mark Jacobson 8 10 To: 810-030-01@uni.edu Octal Decimal Subject: CommonDialog1 control.... Base 8 Base 10 ' Using the Microsoft Common Dialog control ' Note: It is obtained by choosing from the Components ' dialog box. Right click on the Toolbox, and ' choose Components from the Popup menu... Private Sub cmdChangeForeColor_Click() CommonDialog1.ShowColor Form1.ForeColor = CommonDialog1.Color End Sub Private Sub Form_Click() Print "Hello World" End Sub ' The new color will NOT show up until you PRINT something new ' on the form object. It will NOT change what had already been ' printed....