I have a top level form and I use the file config.fpw to hide the vfp desktop. And in the form there is a grid with memo field. My prob. is that I can not open the memo field, nothing happends, and the form stops working.
plz help
Be sure the table is open when the form is active. Also, if u r displaying the memo field in the grid, U just edit the grid drag and drop the edit tool from the toolbox to the column where the memo field is, and select the currentcontrol property of that column to the Edit box.
Also, make the stretch property of that column to .f.
This is not a proper answer but a workaround until you determine the cause of the problem.
In the .Init() event of your toplevel form put :-
WITH THIS
[tab]_SCREEN.Height = .Height
[tab]_SCREEN.Left = .Left
[tab]_SCREEN.Top = .Top
[tab]_SCREEN.Width = .Width
[tab]_SCREEN.Visible = .T.
ENDW HTH
Holm,
Either replace the TextBox with an EditBox in your grid, or add code to your textbox to override the default behaviour and open your own form/window to display the memo field.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.