Cogiendo el ejemplo TESTFLD2.PRG, y poniendo;
REDEFINE FOLDER oFld1 ID 110 OF oDlg ;
PROMPT "&Clipper", "&and", "&Windows", "&Magic" ;
DIALOGS "Sub1", "Sub2" ;
--> COLOR CLR_GREEN, CLR_BLUE
Según la documentación es posible, pues no coge los colores.
¿ Existe alguna manera de poner un color a un folder o es un bug ?
Folder Color
Folder Color
Saludos
Rafa Carmona ( rafa.thefullARROBAgmail.com___quitalineas__)
Rafa Carmona ( rafa.thefullARROBAgmail.com___quitalineas__)
- Detlef Hoefner
- Posts: 312
- Joined: Sat Oct 08, 2005 9:12 am
- Location: Germany
- Contact:
thefull,
maybe this could help you?
Regards,
Detlef
maybe this could help you?
Code: Select all
ACTIVATE DIALOG oDlg;
ON INIT ;
aEval( oFold:aDialogs,;
{ |oD| oD:bEraseBkGnd := NIL,;
oD:SetColor( COLOR CLR_GREEN, CLR_BLUE ) } )
Detlef
Yeah! Thank you!Detlef Hoefner wrote:thefull,
maybe this could help you?
Regards,Code: Select all
ACTIVATE DIALOG oDlg; ON INIT ; aEval( oFold:aDialogs,; { |oD| oD:bEraseBkGnd := NIL,; oD:SetColor( COLOR CLR_GREEN, CLR_BLUE ) } )
Detlef
Code: Select all
aEval( oFolder:aDialogs, { |oD| oD:bEraseBkGnd := NIL, oD:SetColor( CLR_GREEN, CLR_BLUE ) } )
I think not is correct documentation, is the folder is 32 bits.
Please Antonio, Can you revised this documentation and put this option,
paint folder 32 btis in documentation ?
Thanks.
Rafa Carmona
Saludos
Rafa Carmona ( rafa.thefullARROBAgmail.com___quitalineas__)
Rafa Carmona ( rafa.thefullARROBAgmail.com___quitalineas__)