On Thu, Oct 09, 2003 at 06:59:41AM -0700, Gene Buckle wrote:
> > Hello
> >
> > How ist possible to make initialize in fpc a multiline label. Something like
> >
> > Lbl := gtk_label_new('Line1 \n Line2');
> >
> > I guess but with what do I have to replace the "\n" ?
> >
> > Thank's for any help
> Hello
>
> How ist possible to make initialize in fpc a multiline label. Something like
>
> Lbl := gtk_label_new('Line1 \n Line2');
>
> I guess but with what do I have to replace the "\n" ?
>
> Thank's for any help
>
Would gtk_label_new('Line1' + #13 + 'Line2'); work?
g.
___
Thank's for the answer. Both solutions work.
Pedro
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Am Donnerstag, 9. Oktober 2003 09:18 schrieb Peter Huesser:
Hi,
> How ist possible to make initialize in fpc a multiline label. Something
> like
> Lbl := gtk_label_new('Line1 \n Line2');
> I guess but with what do I have to replace the "\n" ?
T
Hello
Is the GTKArrowType not implemented yet in the GTK2 (Version 1.0.5). If not: is there
a list
what is allready implemented in GTK2 and what not ?
Thank's
Pedro
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/l
Hello!
> How ist possible to make initialize in fpc a multiline label. Something like
>
> Lbl := gtk_label_new('Line1 \n Line2');
I did't test it, but something like this should work:
Lbl := gtk_label_new('Line1 ' + #10 + ' Line2');
Ciao,
Olaf
__
> How ist possible to make initialize in fpc a multiline label.
> Something like
>
> Lbl := gtk_label_new('Line1 \n Line2');
>
> I guess but with what do I have to replace the "\n" ?
>
> Thank's for any help
>
> Pedro
>
one possibility is:
Lbl := gtk_label_new('Line1 '#10' Line
Hello
How ist possible to make initialize in fpc a multiline label. Something like
Lbl := gtk_label_new('Line1 \n Line2');
I guess but with what do I have to replace the "\n" ?
Thank's for any help
Pedro
___
fpc-pascal maillist - [EMAIL PROTEC