Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default Font to simulate a tickmark/checkmark

Hello --

On 2002-11-25, PeterDavey )
posted a method to allow douple-clicking a cell to change its value, and
mentions Monotype Sorts as a font to simulate a tick mark.

Does anyone know of a font distributed with Win2000 or otherwise in the
public domain that would have a similar mark, and, how I would use VBA to
test for its value once I got it to work?

Thanks for any help.

Larry Mehl

-------------------------------------
Subject: Newbie: Put CheckBox in a cell and use it to set that cell's
value?

I use the following code in a worksheet to "toggle" the value of a cell in
the named range "sendFlags" between True and False when the cell is double
clicked.

It doesn't look as nice as as a checkbox but it works OK. If you
wanted to display a tick instead of True you could for e.g. use the Monotype
Sorts font and set the value to 4.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel
As Boolean)
If Not Intersect(Target, Me.Range("sendFlags")) Is Nothing Then
Cancel = True
If Target.Value = True Then
Me.Range(Target.Address).Value = False
Else
Me.Range(Target.Address).Value = True
End If
End If
End Sub


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 184
Default Font to simulate a tickmark/checkmark

Hi,

...a font to simulate a tick mark.


I use character "a" of Font "Marlett".

arno



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 691
Default Font to simulate a tickmark/checkmark


some more choices of tickmarks in fonts, see
http://www.mvps.org/dmcritchie/rexx/...bols.htm#ticks
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"arno" wrote .
...a font to simulate a tick mark.
I use character "a" of Font "Marlett".



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default Font to simulate a tickmark/checkmark

Arno and David --

Thanks for the ideas. I think I will use the "a" in Marlett for the
tickmark and blank for a blank. I like the bold-appearing look of the "a".

Larry

"L Mehl" wrote in message
...
Hello --

On 2002-11-25, PeterDavey )
posted a method to allow douple-clicking a cell to change its value, and
mentions Monotype Sorts as a font to simulate a tick mark.

Does anyone know of a font distributed with Win2000 or otherwise in the
public domain that would have a similar mark, and, how I would use VBA to
test for its value once I got it to work?

Thanks for any help.

Larry Mehl

-------------------------------------
Subject: Newbie: Put CheckBox in a cell and use it to set that cell's
value?

I use the following code in a worksheet to "toggle" the value of a cell in
the named range "sendFlags" between True and False when the cell is double
clicked.

It doesn't look as nice as as a checkbox but it works OK. If you
wanted to display a tick instead of True you could for e.g. use the

Monotype
Sorts font and set the value to 4.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range,

Cancel
As Boolean)
If Not Intersect(Target, Me.Range("sendFlags")) Is Nothing Then
Cancel = True
If Target.Value = True Then
Me.Range(Target.Address).Value = False
Else
Me.Range(Target.Address).Value = True
End If
End If
End Sub




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auditor / Tickmark Plug-in eric H Excel Discussion (Misc queries) 0 January 23rd 08 02:11 AM
tickmark Paul Excel Discussion (Misc queries) 1 February 16th 07 03:05 PM
Tickmark - Footnote Keith D. Nielsen Excel Discussion (Misc queries) 0 November 30th 05 03:25 PM
How do I create a new toolbar with different tickmark buttoms? lgpalhares Excel Discussion (Misc queries) 2 October 11th 05 09:35 PM
Automatic TickLabel and TickMark Spacing DataMan[_6_] Excel Programming 1 January 30th 04 01:41 PM


All times are GMT +1. The time now is 03:01 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"