Schriftmanipulation im Generate Script
Michael Papenhagen
Hallo,ich möchte im Genrate Script die ersten Zeile in Bod darstellen. Folgendes habe ich versucht:
[quote]
textBoxFirst.Font.Bold=PerpetuumSoft.Framework.Drawing.FontStyleMode.On
BillToAdress.Value = Document("CardName") + vbcrlf + GetData("B1_Data.BusinessPartner.CardFName") + vbcrlf
textBoxFirst.Font.Bold=PerpetuumSoft.Framework.Drawing.FontStyleMode.Default
BillToAdress.Value += LD.MultiLine(Document("Address"))
ebenso habe ich probiert:
[quote]
BillToAdress.Value = "<b>" + Document("CardName") + "</b>" + vbcrlf + GetData("B1_Data.BusinessPartner.CardFName") + vbcrlf
BillToAdress.Value += LD.MultiLine(Document("Address"))
Was mache ich verkehrt?
Michael
Manuel Grenacher
Die 2. Variante funktioniert nur mit AdvancedTextBox[u]BillToAdress-->AdvancedTextBox!!![/u]
BillToAdress.Value = "<b>" + Document("CardName") + "</b>" + [u]"</br>" [/u]+ GetData("B1_Data.BusinessPartner.CardFName") + [u]"</br>"[/u]
BillToAdress.Value += LD.[u]MultiLineRTF[/u](Document("Address"))
0
Please sign in to leave a comment.
Comments
0 comments