Page 2 of 2

Re: Line break in a Multi-Line Button

Posted: Sat Mar 28, 2009 2:01 am
by Roberto Lopez
rathinagiri wrote:
esgici wrote:Everything is for community; Viva Clipper, Viva Harbour, Viva HMG :!:
Nice words.
I agree!!!

And... using MULTILINE clause you CAN force line breaks with chr(13) in caption string.

(I'm reading messages as fast as I can, please forgive me if I'm missing something).

Regards,

Roberto.

Re: Line break in a Multi-Line Button

Posted: Sat Mar 28, 2009 11:23 am
by esgici
Hi Roberto

Welcome back :D

What happiness hearing you again, we are very hanked you.

With best regards

--

Esgici

Re: Line break in a Multi-Line Button

Posted: Sat Mar 28, 2009 1:12 pm
by esgici
Hi

After Roberto's guidance I must correct my "forcing" way :

Code: Select all

		@ 300 ,100 BUTTON Button_3 ;
			CAPTION "Multiple" + CHR(13) + "Line Button" ;
			ACTION MsgBox( "This is a Multiple Line FORCED Button" ) ;
	     WIDTH 100 ;
			HEIGHT 30 ;
			MULTILINE 
and adding an another example :

Code: Select all

		@ 300 ,250 BUTTON Button_4 ;
			CAPTION "Multiple" + CHR(13) + "Line" + CHR(13) +  "EXAGGERATED"  + CHR(13) + "Button" ;
			ACTION MsgBox( "This is a Multiple Line EXAGGERATED Button" ) ;
	      WIDTH 100 ;
			HEIGHT 100 ;
			MULTILINE 
With Regards

--

Esgici