Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Rich text
Message
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Title:
Miscellaneous
Thread ID:
00249538
Message ID:
00249666
Views:
16
>Can anyone recommend a Richtext control that prints. I have tried everything I know to make the MS Richtext control print using the VFP report writer.

You can assign the contents of the richtextbox to a private variable.
pcText = .OleRTB1.Text. Assign that private to a report textbox in the detail band on your report. Make sure it will expand. You do need to create a dummy cursor though for the report writer so create one that has one dummy blank record in it.

private pctext
pcText = thisform.olertb1.text
select "" as dummy ;
from sometable ;
into cursor c_dummy
report form.............

Steve
Previous
Reply
Map
View

Click here to load this message in the networking platform