Question “How can I vertically center text in a memo?” Solution Report output consists of a collection of Page.DrawCommands[]. Each time the Memo, generates, it creates a DrawCommand that describes the location and content to be rendered. We can use the Memo.OnDrawCommandCreate event to modify the DrawCommand. We can vetically center the wrapped text by inserting some empty Full Article…
Search the Wiki
Viewing 361 to 363 of 408 items
How To..Clickable DrawCommand with Custom Info
Question “How can I associate custom info with a hot-clickable component on my report?” Solution This example creates a TmyCustomInfo class that stores the CustNo and Country for a customer. The DBText OnDrawCommandCreate event is used to associate an instance of TMyCustInfo with each DrawCommand generated for the page. The DBText OnDrawCommandClick event shows how to access Full Article…
How To…Unique Caption for Each Copy
Question “How do I display a unique caption for each copy of my report?” Solution ReportBuilder 11 introduced two copy related options to the System Variable component. Placing this component on your report and setting it to CopyNo or CopyNoDesc will display the copy number on each separate copy of the report. If more customization Full Article…