B
bob
What is the correctway to initialize a checkibox so that the check
mark appears? With this initialization, if
strFormBooleanReplaceConfirmEachChangeOption = "True" the program goes
to ChB05_Click
tia
Private Sub UserForm_Initialize()
If (strFormBooleanReplaceConfirmEachChangeOption = "True") Then
ChB05 = "True"
End If
end sub
Private Sub ChB05_Click()
If (bInitializationComplete = True) Then
If (strFormBooleanReplaceConfirmEachChangeOption = "False") Then
strFormBooleanReplaceConfirmEachChangeOption = "True"
Else
strFormBooleanReplaceConfirmEachChangeOption = "False"
End If
End If
End Sub
mark appears? With this initialization, if
strFormBooleanReplaceConfirmEachChangeOption = "True" the program goes
to ChB05_Click
tia
Private Sub UserForm_Initialize()
If (strFormBooleanReplaceConfirmEachChangeOption = "True") Then
ChB05 = "True"
End If
end sub
Private Sub ChB05_Click()
If (bInitializationComplete = True) Then
If (strFormBooleanReplaceConfirmEachChangeOption = "False") Then
strFormBooleanReplaceConfirmEachChangeOption = "True"
Else
strFormBooleanReplaceConfirmEachChangeOption = "False"
End If
End If
End Sub