THANK YOU - this works.
I'm not impressed that this is not documented anywhere in your product (or on this forum) - this is a *very* standard VB type of thing .. do you mean then that such a majority of your users are C# that there's no need for noting VB particularities? (but if so though, then why are all the examples in VB and not C#).
Anyhow, it works, so on to other things:
a) the Unicode sequencing suggested earlier for non-breaking spaces doesn't work .. could this possibly be yet another VB-specified issue?
b) this use of Unicode .. does it imply then that any Unicode sequence will work, like I can go to Charmap and get a 'degree' or other symbol and poof it should work? (because it doesn't).
c) Page numbering doesn't work. I copied the sample code, and instead of page numbering, I just got the cryptic sequence spit back out on the bottom of the page: "/%/%PR/%/%/%/%SP/%/% of /%/%ST/%/%" - here's the code:
Private Sub doGenerate()
MyDocument = New Document()
Dim documentTemplate As Template = New Template()
MyDocument.Template = documentTemplate
' Page numbering ..
documentTemplate.Elements.Add(New PageNumberingLabel( _
"/%/%PR/%/%/%/%SP/%/% of /%/%ST/%/%", 0, 680, 512, 12, Font.Helvetica, _
12, TextAlign.Center))
MyPage = New ceTe.DynamicPDF.Page()
DoGenerate_PageLayout()
DoGenerate_Page1()
MyDocument.Pages.Add(MyPage)
MyDocument.DrawToWeb(False)
End Sub
Your help is still greatly appreciated.
Regards,
Rick.