On a dialog I'd like to place two rows of buttons. Here is how it looks now:
But I need more buttons. I'm thinking a 2nd row would work. Is it possible?
Here my code:
- Code: Select all Expand view
DEFINE BUTTONBAR oBar SIZE 26,26 TOP OF ::oDlg CURSOR oCursor _2007
DEFINE BUTTON OF oBar RESOURCE "save16" ;
TRANSPARENT ;
MESSAGE "Save text" TOOLTIP "Save" ;
WHEN !oSelf:oActive:lReadOnly ;
ACTION oSelf:SaveTranscription()
DEFINE BUTTON OF oBar RESOURCE "Printer16" ;
TRANSPARENT ;
MESSAGE "Print" TOOLTIP "Print" ;
ACTION ( CursorArrow(), ;
ReleaseCapture(), ;
oSelf:oActive:Print( oSelf:oActive:cFileName ) )
Thank you,
Reinaldo.