TAGENABLE
Posted: Sun Mar 06, 2011 10:05 am
Hi Roger,
When using the TAGENABLE clause of DCBROWSE for a database without the TAG field, is an array automatically created which I can use?
I had placed the TAG field into my database (works wonderfully), but as it is simultaneously accessed in a multiuser environment, each users individual TAGs interfere with proper operation. Therefore an array per user session would be the better solution for my purpose.
I am uncertain if I have to place additional code into a DCBROWSE EVAL or if you already create an array behind the scenes for this use.
Thanks,
Rick
When using the TAGENABLE clause of DCBROWSE for a database without the TAG field, is an array automatically created which I can use?
I had placed the TAG field into my database (works wonderfully), but as it is simultaneously accessed in a multiuser environment, each users individual TAGs interfere with proper operation. Therefore an array per user session would be the better solution for my purpose.
I am uncertain if I have to place additional code into a DCBROWSE EVAL or if you already create an array behind the scenes for this use.
Code: Select all
@ 0,0 DCBROWSE oBrowse ALIAS "Hearing"
TAGENABLE ;
TAGCOLOR GRA_CLR_RED, GRA_CLR_YELLOW ;
TAGMODE DCGUI_TAGMODE_SET ;
ITEMMARKED {|| Dc_GetRefresh(oButton) } ;
ITEMSELECTED {|| Dc_ReadGuiEvent(DCGUI_EXIT_OK, GetList) }
Rick