Page 1 of 1

Disable a tab on a folder

PostPosted: Tue Oct 25, 2005 7:10 pm
by Jeff Barnes
Hi Everybody,

Is there a way to disable a tab on a folder, for example something like:

IF nValue <> 1
oFld1:Disable()
ENDIF

This way only oFld1 would not be clickable but the rest would.

Thanks in advance,

Jeff

Re: Disable a tab on a folder

PostPosted: Tue Oct 25, 2005 8:19 pm
by Richard Chidiak
Jeff Barnes wrote:Hi Everybody,

Is there a way to disable a tab on a folder, for example something like:

IF nValue <> 1
oFld1:Disable()
ENDIF

This way only oFld1 would not be clickable but the rest would.

Thanks in advance,

Jeff


Jeff

you can do it this way

oFld1:aEnable = { .f., .t., .t., .T., .T.,.T. }

Richard

PostPosted: Tue Oct 25, 2005 10:21 pm
by Jeff Barnes
Thanks