drosenkranz
Programmer
I know VB allows you to use constatns like vbCrLf to indicate a carriage return when you format text for a msgbox(). EX:
lc_text = "This project is the property of CCBSS. " & vbcrlf & vbcrlf
lc_text = lc_text + "Copyright (c) 2001 All rights reserved."
messagebox(lc_text, ,"Attention"
Displays: This project is the property of CCBSS.
Copyright (c) 2001 All rights reserved.
How do you achieve this in VFP?
lc_text = "This project is the property of CCBSS. " & vbcrlf & vbcrlf
lc_text = lc_text + "Copyright (c) 2001 All rights reserved."
messagebox(lc_text, ,"Attention"
Displays: This project is the property of CCBSS.
Copyright (c) 2001 All rights reserved.
How do you achieve this in VFP?