I have a number of similar forms - the only differences are the composition of a grid and a label caption.
Each form has 7 identical buttons coded as this example
Is there any way I can create a set of buttons and use them on each of the forms?
Thanks
Bryan
Each form has 7 identical buttons coded as this example
Code:
ADD OBJECT cmdexit AS COMMANDBUTTON WITH ;
TOP = 300 + 450, ;
LEFT = 400 + 650, ;
HEIGHT = 27, ;
WIDTH = 84, ;
FONTBOLD = .T. ,;
FORECOLOR = RGB(255,0,0), ;
CAPTION = label_cmdP02 ,;
NAME = "cmdExit"
Is there any way I can create a set of buttons and use them on each of the forms?
Thanks
Bryan