checkbox dilemma- need larger checkboxes

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

Guest

Hello all,

I just spent the last 2 hours trying to search and look for a solution to my
problem. The problem is I have checkboxes in my document. They are too
small. When you click them, they provide a checkmark in them. But when we
print them.. You can barely see the checkmark and well as stated before the
form is too small.

I am wondernig if vba can help me.. or if there is a simpler solution. Can
anyone please give me some hints, suggestions or possible solutions?

Thanks a lot
Lobo from Canada

p.s. i'm not sure as to what category this falls under... but i usually post
in this one hehe
 
Got it to work, by simulation!
Create a Control Form "Label"
Edit its properties, ie. Font and such. Give it a border... etc.
Add the following code to the sheet that the "simulated checkboxes" are on:
(note that each "check box" needs its own code, so label it properly.

Public blnCheck1 As Boolean

Private Sub Chk1_Click()
Call swapCheck1
End Sub
Private Sub swapCheck1()
blnCheck1 = Not blnCheck1
Chk1.Caption = IIf(blnCheck1, "X", "")
End Sub

----hope that helps anyone who had a similar problem to mine!
 

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