ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   checkbox dilemma- need larger checkboxes (https://www.excelbanter.com/excel-programming/318183-checkbox-dilemma-need-larger-checkboxes.html)

LoboNetwork[_3_]

checkbox dilemma- need larger checkboxes
 
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

LoboNetwork[_3_]

checkbox dilemma- need larger checkboxes
 
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!

"LoboNetwork" wrote:

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


WickedTribe

Any other ways?
 
Well that is one solution, and I'm sure it works, but it's not something that
I want to run around doing for all my users in all their spreadsheets. Does
Excel not provide a way to resize them?

"LoboNetwork" wrote:

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!

"LoboNetwork" wrote:

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



All times are GMT +1. The time now is 07:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com