PDA

View Full Version : Lack of contrast in VDFQuery 2.3



Pepe
11-Dec-2006, 03:08 PM
I have just been through Wasp checking for all threads of "vdfquery" to
see if this happens to anyone, and I guess it just happens to me.

In vdfquery on the "selection" tab there is barely any contrast on the
"type" and "value" columns (see .jpg attached for how it looks .... in
Spanish).

Has anyone the same problem? If so, have you solved it?

TIA

Pepe Guimarães

pkarminsky
11-Dec-2006, 03:19 PM
Hola Pepe

It looks the same in my applications, but I didn't care... until now

Saludos
Pedro

"Pepe Guimarães" <pg@moose-software.com> escribió en el mensaje
news:LK4caAWHHHA.1680@dacmail.dataaccess.com...
> I have just been through Wasp checking for all threads of "vdfquery" to
> see if this happens to anyone, and I guess it just happens to me.
>
> In vdfquery on the "selection" tab there is barely any contrast on the
> "type" and "value" columns (see .jpg attached for how it looks .... in
> Spanish).
>
> Has anyone the same problem? If so, have you solved it?
>
> TIA
>
> Pepe Guimarães
>


----------------------------------------------------------------------------
----

Tod Brannen
11-Dec-2006, 03:20 PM
Pepe,

I think It has always been that way. It is the same here.

Tod Brannen

Sture Andersen
11-Dec-2006, 05:44 PM
He there,

As soon I get some time I will attempt to fix this issue. It has been
bothering me as well.

-Sture

wila
12-Dec-2006, 04:20 AM
Well let me save you 4 minutes...
In my vdfquery.utl, line 3139 (object tree as my line nr might be off...
is oVdfQuery_View -> oTabs -> oTab2 -> oGrp -> oGrd )

Add the following "exciting lines" of code:

Set pbUseDisabledColor To True
Set peDisabledColor To clBtnShadow
Set peDisabledTextColor To clBtnText

There you go, have fun!
--
Wil

Sture Andersen wrote:
> He there,
>
> As soon I get some time I will attempt to fix this issue. It has been
> bothering me as well.
>
> -Sture
>
>

Pepe
12-Dec-2006, 06:23 AM
Thanks Will!! Problem solved.

Just in case anyone needs it here is the piece of code where it should go

set p_auto_column to 0
object oGrd is a aps.Grid <--------------- approximate line
# 3407
set peResizeColumn to rcAll
set peAnchors to (anTop+anLeft+anRight+anBottom)
if giVdfQuery_Expressions_State set Size to 87 0
else set Size to 100 0
set Line_Width to 3 0
set Form_Margin item 0 to 20
:
:
:
set CurrentRowColor to clHighlight
set CurrentRowTextColor to clHighlightText

//******************** Moose 12/12/2006
//To solve lack of contrast in selectd items
Set pbUseDisabledColor To True
Set peDisabledColor To clBtnShadow
Set peDisabledTextColor To clBtnText
//***************************************

set Select_Mode to MULTI_SELECT
set Auto_Top_Item_State to false
on_key kdelete_record send delete_row


Regards

Pepe