After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
yes oldest error never corrected , asked also I many days ago
byte-one wrote:After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
Günther,
It would help if you would put your software versions in your automatic signature line.
James, FWH 1812
Dear Günther
Do not have a small example to check your problem?
Cristobal, simple do a oFld:disabletab(nOtion) and later a oFld:enabletab(nOtion). Then the tab is enabled and can clicked but all the controls inside this tab are inactive.
Function ActDesactDlgs( lEnable )
local x
DEFAULT lEnable := .F.
For x = 2 to Len( oFolder:aDialogs )
if lEnable
oFolder:EnableTab( x )
else
oFolder:DisableTab( x )
endif
Next x
Return nilFunction ActDesactDlgs( lEnable )
local x
For x = 2 to Len( oFolder:aDialogs )
oFolder:DisableTab( x )
oFolder:EnableTab( x )
Next x
Return nilSorry Günther
This run also OK for me