Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Textmerge()- vfp7
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00463864
Message ID:
00463882
Views:
15
>Has anyone made a function like the textmerge function in VFP 7 that they would like to share?

If you put your string into a memo field, you can process it this way:

cString = "<>"
CREATE CURSOR temp (string M)
APPEND BLANK
REPLACE string WITH cString
SET TEXTMERGE ON NOSHOW
SET TEXTMERGE TO merge.tmp
\\<>
SET TEXTMERGE TO
SET TEXTMERGE OFF
USE IN temp
cTranslated = FILETOSTR("merge.tmp")
ERASE merge.tmp
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform