Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Control Face ID's

Does anyone know of a website or macro to display all of the possible "Face
ID's" for control buttons?

Thanks in advance,

Christmas May
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Control Face ID's

Hi Christmas,

See:

http://www.j-walk.com/ss/excel/tips/tip67.htm


---
Regards,
Norman



"Christmas May" wrote in message
...
Does anyone know of a website or macro to display all of the possible
"Face
ID's" for control buttons?

Thanks in advance,

Christmas May



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default Control Face ID's

Norman-

The shortcoming of John's utility is that it is a "picture" of the icon
faces in Excel 97. The way I did my utility is to show the actually faces
available in the user's version of Excel. There are many more faces in more
recent Excels than in Excel 97.

--
Jim
"Norman Jones" wrote in message
...
| Hi Christmas,
|
| See:
|
| http://www.j-walk.com/ss/excel/tips/tip67.htm
|
|
| ---
| Regards,
| Norman
|
|
|
| "Christmas May" wrote in message
| ...
| Does anyone know of a website or macro to display all of the possible
| "Face
| ID's" for control buttons?
|
| Thanks in advance,
|
| Christmas May
|
|


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Control Face ID's

Hi Jim,

I am am not sure how I have contrived to miss your BtnFaces addin but, now
that I have found it, I must say that I like it a lot.

Thank you (and david) for drawing it to my attention.

---
Regards,
Norman



"Jim Rech" wrote in message
...
Norman-

The shortcoming of John's utility is that it is a "picture" of the icon
faces in Excel 97. The way I did my utility is to show the actually faces
available in the user's version of Excel. There are many more faces in
more
recent Excels than in Excel 97.

--
Jim
"Norman Jones" wrote in message
...
| Hi Christmas,
|
| See:
|
| http://www.j-walk.com/ss/excel/tips/tip67.htm
|
|
| ---
| Regards,
| Norman
|
|
|
| "Christmas May" wrote in
message
| ...
| Does anyone know of a website or macro to display all of the possible
| "Face
| ID's" for control buttons?
|
| Thanks in advance,
|
| Christmas May
|
|




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 903
Default Control Face ID's


Hi Christmas,
one such program is Jim Rech's
Button Faces (BtnFaces), Jim Rech, download from Stephen Bullen's MVP page.
http://www.oaltd.co.uk/MVP/Default.htm

for more information see
Identification of Toolbars Buttons (icons) (#identify)
http://www.mvps.org/dmcritchie/excel...s.htm#identify
---
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

"Christmas May" wrote in message ...
Does anyone know of a website or macro to display all of the possible "Face
ID's" for control buttons?

Thanks in advance,

Christmas May





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default Control Face ID's

Hi Christmas,

Other learned members of the community seem to have provided a number of
useful options that should meet your need. Just in case it hasn't been,
here's another option ...

Sub CreateFace()
Dim i As Integer
Dim TempItem(256)
On Error Resume Next
CommandBars("Temporary").Delete
' Create a temporary toolbar to hold and display button faces.
Set TempBar = CommandBars.Add(Name:="Temporary",
Position:=msoBarFloating, Temporary:=True)
TempBar.Visible = True

For i = 1 To 128 ' Increase/Decrease as desired e.g. i = 2049 to
2304. Dim TempItem() accordingly.
Set TempItem(i) = TempBar.Controls.Add(Type:=msoControlButton,
Temporary:=True)
With TempItem(i)
.FaceId = i
.Caption = .FaceId
.Style = msoButtonIconAndCaption
' Replace 2586 with the face you like.
If .FaceId = 2586 Then .CopyFace
' .CopyFace copies this face (image) to the clipboard.
' You can then paste the image into other programs.
End With
Next
End Sub

(Resize the resulting toolbar as desired).

Office 2003 has in excess of 2,000 button faces available!

Regards, Sean.

"David McRitchie" wrote:


Hi Christmas,
one such program is Jim Rech's
Button Faces (BtnFaces), Jim Rech, download from Stephen Bullen's MVP page.
http://www.oaltd.co.uk/MVP/Default.htm

for more information see
Identification of Toolbars Buttons (icons) (#identify)
http://www.mvps.org/dmcritchie/excel...s.htm#identify
---
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

"Christmas May" wrote in message ...
Does anyone know of a website or macro to display all of the possible "Face
ID's" for control buttons?

Thanks in advance,

Christmas May




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
Need a list of command button face ID's (images) mikeburg[_30_] Excel Programming 6 September 23rd 05 12:59 AM
Creating custom face ID's Karoo News Excel Programming 3 August 19th 05 03:46 PM
Collection of Face ID's available somewhere? J_J[_2_] Excel Programming 4 January 22nd 05 08:53 PM
Face ID's Michael Excel Discussion (Misc queries) 1 December 22nd 04 04:04 PM
Listing of Face Id's... Darin Kramer Excel Programming 3 December 14th 04 12:52 PM


All times are GMT +1. The time now is 12:34 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"