Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Oldies question no1: how to show memo content in browse?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9
Database:
Visual FoxPro
Divers
Thread ID:
01019782
Message ID:
01019785
Vues:
40
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform