Bug on Tfolderex
Bug on Tfolderex
After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Bug on Tfolderex
yes oldest error never corrected , asked also I many days ago
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: Bug on Tfolderex
For me it's OKbyte-one wrote:After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
Please put a example for test your problem
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
- James Bott
- Posts: 4654
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Re: Bug on Tfolderex
Günther,
It would help if you would put your software versions in your automatic signature line.
It would help if you would put your software versions in your automatic signature line.
FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Re: Bug on Tfolderex
James, FWH 1812
Re: Bug on Tfolderex
Dear Günther
Do not have a small example to check your problem?
Do not have a small example to check your problem?
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Bug on Tfolderex
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.
Re: Bug on Tfolderex
Günther, I tested using valid of a get in first folder and run ok
Code: Select all
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 nil
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Bug on Tfolderex
Please test this code. Except the first tab in all others the controls inside all are inactive!
Code: Select all
Function ActDesactDlgs( lEnable )
local x
For x = 2 to Len( oFolder:aDialogs )
oFolder:DisableTab( x )
oFolder:EnableTab( x )
Next x
Return nil
Re: Bug on Tfolderex
Sorry Günther
This run also OK for me
This run also OK for me
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.