Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Oldies question no1: how to show memo content in browse?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01019782
Message ID:
01019785
Views:
39
This message has been marked as the solution to the initial question of the thread.
>How can i show the memo content instead of the word Memo in the Browse command? I'd like something like when using parenthesis in the grid to see the memo content...
>
Jaime,

Try
CREATE CURSOR Test (fld1 i, fld2 C(3), fld3 M)
INSERT INTO Test VALUES (1, "One", "Text in memo 1")
INSERT INTO Test VALUES (2, "Two", "Text in memo 2")
GO TOP
BROWSE LAST NOWAIT NAME oBr
WITH oBr.Columns(3)
	.ControlSource = "(" + .ControlSource + ")"
ENDWITH 
oBr.AutoFit()
oBr = Null
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform