Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Toolbar button names
Message
 
 
À
25/11/1997 19:26:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00062207
Message ID:
00062369
Vues:
26
>>Does anyone know where I can find all the names of the buttons on the VFP toolbars? I am trying to create a toolbar class but donn't know the names of the buttons to use in "add object". The Dev Guide and on-line help only list a few in the example.
>>
>>TIA
>
>Where did you find the names of those few? What example?
>
>Vlad

In VFP help do a search on "Toolbar Object" (not "Toolbar Objects"). The following is from the Example from that topic.
PUBLIC tbrDesktop
tbrDesktop = CREATEOBJ('mytoolbar')
tbrDesktop.SHOW

DEFINE CLASS myToolBar    AS Toolbar
	ADD OBJECT btnBold    AS CommandButton
	ADD OBJECT sep1	       AS Separator
	ADD OBJECT btnItalics AS CommandButton
	
	btnBold.HEIGHT = 20
	btnBold.WIDTH = 50
	btnBold.Caption = "Bold"
	btnItalics.HEIGHT = 20
	btnItalics.WIDTH = 50
	btnItalics.Caption = "Italic"
	btnItalics.FontBold = .F.
	
	LEFT	= 1
	TOP = 1
	WIDTH = 25

	CAPTION = "Desktop Attributes"
	

PROCEDURE Activate 
	this.btnBold.FontBold = _SCREEN.FONTBOLD
	this.btnItalics.FontItalic = _SCREEN.FONTITALIC
	ENDPROC
	
	PROCEDURE btnBold.CLICK
	_SCREEN.FONTBOLD = !_SCREEN.FONTBOLD
	This.FontBold =_SCREEN.FONTBOLD
	ENDPROC
	
	PROCEDURE btnItalics.CLICK
	_SCREEN.FONTITALIC = !_SCREEN.FONTITALIC
	This.FontItalic = _SCREEN.FONTITALIC
	ENDPROC
ENDDEFINE
I also found it on page 323 of the VFP 5 Developer's Guide. I was wondering where all the toolbar button names can be found. I will probably resort to some guess work like btnCut, btnCopy, btnPaste, etc.
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform