Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Rich text
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Titre:
Divers
Thread ID:
00249538
Message ID:
00249666
Vues:
22
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform