Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VbCrLf equivalent (newbie question)
Message
 
 
To
16/02/2004 14:05:27
Mike Cole
Yellow Lab Technologies
Stanley, Iowa, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00877720
Message ID:
00877723
Views:
15
>Hello,
>I am looking at an example of some VB code that I am coding in VFP, and the example is sending vbCrLf to a textbox. What is the equivalent of this command in VFP? Thanks!!
>
>MAC

The vbCrLf isn't command but a VB constant (new line constant). VFP equivalent
#define ccCRLF CHR(13) + CHR(10)
* or 
lcCRLF = CHR(13) + CHR(10)
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform