ActiveX Control deleting information after printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a form using the form wizard. When the activex checkboxes are clicked on, they show that way on the screen, but as soon as the form is printed, the checkboxes all click to off. Can someone help me?
 
I guess my first question is:

Is this a display problem or do the values really change?

Maybe you can look at the linked cell or even a little macro:

Option Explicit
Sub testme()

With Worksheets("sheet1").CheckBox1
If IsNull(.Value) Then
MsgBox "Null"
Else
MsgBox .Value
End If
End With

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top