I made some corrections on this suberb class.
(animate: go left and right; speed from processorspeed, backgroundcolor: lTransparent, font: from parentdialog)
Antonio, can you insert this in next build!?
(edited by Daniel)
Enhanced TFOLDEREX
- Daniel Garcia-Gil
- Posts: 2365
- Joined: Wed Nov 02, 2005 11:46 pm
- Location: Isla de Margarita
- Contact:
Re: Enhanced TFOLDEREX
Gunther
we can not public all class, only change
you can send the file to Antonio (or me), we review the changes and public your suggestions,
Thanks
we can not public all class, only change
you can send the file to Antonio (or me), we review the changes and public your suggestions,
Thanks
our best documentation is the source code
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Re: Enhanced TFOLDEREX
Hello Günther,
does Your solution fix my transparent-painting-problem of different Controls ?
I want to display transparent Radios, Checkboxes and Says
on Color, Gradient, Brush- or Image-Folder-backgrounds.
Transparency onTab-Area works.
viewtopic.php?f=3&t=19889
Best Regards
Uwe
does Your solution fix my transparent-painting-problem of different Controls ?
I want to display transparent Radios, Checkboxes and Says
on Color, Gradient, Brush- or Image-Folder-backgrounds.
Transparency onTab-Area works.
viewtopic.php?f=3&t=19889
Best Regards
Uwe

Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: Enhanced TFOLDEREX
I send to Antonio a new version today. The enhancements are to big to post it here. I am sure, Antonio brings this on next build!?
Re: Enhanced TFOLDEREX
Daniel, Antonio!
In New and Redefine this should be corrected!
should be:
In New and Redefine this should be corrected!
Code: Select all | Expand
if aBitmaps == NIL
aHelps = Array( nLen )
endif
should be:
Code: Select all | Expand
if aBitmaps == NIL
aBitmaps = Array( nLen )
endif
Re: Enhanced TFOLDEREX
Hello Günther,
there is something wrong with < oFld:ROUND := 20
The Tab-bottom is shown rounded as well. Can You fix it ?
Only Folder-Color works ( green )
Using Gradient, Brush or Image, Controls are not transparent.




Best Regards
Uwe
there is something wrong with < oFld:ROUND := 20
The Tab-bottom is shown rounded as well. Can You fix it ?
Only Folder-Color works ( green )
Using Gradient, Brush or Image, Controls are not transparent.




Best Regards
Uwe

Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: Enhanced TFOLDEREX
In the case, no Helpids defined should the help from the parent dialog to be used! Also in the normal Folder-class!?
Code: Select all | Expand
DEFINE DIALOG oDlg OF Self RESOURCE ::aDialogs[ n ] PIXEL;
.......
HELPID If( Len( ::aHelps ) >= n .and. ::aHelps[ n ] <> NIL , ::aHelps[ n ] , ::oWnd:nHelpId )