Subject Re: [IBO] REPOST - Display of Memo field in TIB_Grid
Author Helen Borrie
At 07:54 AM 26-08-02 +0200, you wrote:
>I'm trying to display a Memo field (Text Blob) in an IB_GRID but with mixed
>results.
>
>I have dropped a TIB_MEMO onto the form and linked it to the TEXT field -
>Product_Desc - and set the Visible property to false. When the grid displays
>the fields is displayed as follows: -
>
>(PRODUCT_DESC)
>
>ie. in every row thats whats display for that column. However, after
>clicking on a row the actual data is displayed and stays displayed after
>moving off the row!!!! SO basically to get each row to display the contents
>correctly I have to click on each one. Alternatively, click on the first row
>and then use the Down Arrow key to scroll down the dataset.
>
>This is obviously not right - so what do I need to do to change it?

Have you read up the help on TIB_memo? The AutoDisplay property will
probably be of interest. To quote:

This property determines whether the contents of the memo should be
automatically loaded from the server.
Applies to TIB_Memo
Declaration property AutoDisplay;
Description
If this is set to False, the memo contents will be displayed on demand,
when the user double-clicks on the control or presses the ENTER key when it
has the focus.

Helen