> 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' Line2');      // for UNIX or
Lbl := gtk_label_new('Line1 '#10#13' Line2');   // for DOS/Windows

> 
> 
> 
> _______________________________________________
> fpc-pascal maillist  -  [EMAIL PROTECTED]
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
> 

_______________________________________________
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to