Changes

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search

Strange Errors & Behavior in VB6

341 bytes added, 03:33, 13 February 2008
/* Check Boxes Sometimes vbChecked/vbUnchecked (1/0) and Sometimes True/False */
The following lines were added (+) and removed (-):
Option Explicit Private Sub cForms2_Click()  tStandard.Text = cStandard.Value  tForms2.Text = cForms2.Value End Sub Private Sub cStandard_Click()  tStandard.Text = cStandard.Value  tForms2.Text = cForms2.Value End Sub Private Sub Form_Load()  tStandard.Text = cStandard.Value  tForms2.Text = cForms2.Value End Sub