On Fri, 26 May 2000, Bartis, Robert M (Bob) wrote:

> 
>       I have developed an application for the UNIX environment 5.5.1 or
> later. The app contains a text area which uses the defaults of a white
> background and black text. It also contains a entry widget containing a
> similar white background and black text. 
> 
>       The problem I am having is when the app is run on other machines,
> customer machines the text sometimes appears in white, making it difficult
> to read on a white background. I am assuming this has something to do with a
> color map problem ,but I'm not sure where to start to correct it. Any help
> would be greatly appreciated.

I have problems with Solaris CDE settings overriding Tk defaults, so I use
this in my apps:

    . config -bg grey85
    option add *foreground black user
    option add *background grey85 user
    option add *highlightBackground grey85 user

...RickM...


_______________________________________________
vtcl-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/mailman/listinfo/vtcl-user

Reply via email to