I use the form "ChooseList" from multiple places so fLstField is set in
different places.
Below are some examples:
--In this example I get TeamLeader_1 in the column header.
SET VAR fLstTable = 'QICharter'
SET VAR fLstField = 'TeamLeader'
SET VAR fKFLD = 'TeamLeader'
SET VAR fLWhere = ('Where QINo in (select qino from qiparagraphs' & .vWhere +
')')
EDIT USING ChooseList
--In this example I get QINo_1, QIName in the column header.
SET VAR fLstTable = 'QICharter'
SET VAR fLstField = 'QINo, QIName'
SET VAR fKFLD = 'QINo'
set var fLWhere = ('Where QINo in (select qino from qiparagraphs' & .vWhere +
')')
EDIT USING ChooseList
--In this example I get StfMbr_1 in the column header.
SET VAR fLstTable = 'QIParagraphs'
SET VAR fLstField = 'StfMbr'
SET VAR fKFLD = 'StfMbr'
EDIT USING ChooseList
________________________________
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Lawrence Lustig
Posted At: Friday, May 30, 2008 11:39 AM
Posted To: RB7-L
Conversation: [BULK] [RBASE-L] - Re: _1 in ListView Column Header
Subject: [BULK] [RBASE-L] - Re: _1 in ListView Column Header
Importance: Low
<<
Is there a way to remove the "_1" that appears in the ListView Column Header?
I tried:
property fChooseList LstTable .fLstTable
property fChooseList LstField .fLstField
property rbase_form_action ColumnHeaders ''
>>
It's coming from the text in fLstField. If you look in there, you'll probably
see the column name with the _1 in it. Where is that variable defined?
--
Larry