Bug on Tfolderex

Post Reply
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Bug on Tfolderex

Post by byte-one »

After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: Bug on Tfolderex

Post by Silvio.Falconi »

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
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Bug on Tfolderex

Post by cnavarro »

byte-one wrote:After oFld:enabletab(nOtion) the controls inside this tab becomes not active.
For me it's OK
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.
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Re: Bug on Tfolderex

Post by James Bott »

Günther,

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
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Re: Bug on Tfolderex

Post by byte-one »

James, FWH 1812
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Bug on Tfolderex

Post by cnavarro »

Dear Günther
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.
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Re: Bug on Tfolderex

Post by byte-one »

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.
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Bug on Tfolderex

Post by cnavarro »

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.
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Re: Bug on Tfolderex

Post by byte-one »

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
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Bug on Tfolderex

Post by cnavarro »

Sorry Günther
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.
Post Reply