C
Charlie Brown
Out of curiosity, what is the advantage of the following...
opacity = CInt(IIf(pressed, &HCC, &H7F))
Over...
opacity = CInt(IIf(pressed, 204, 127))
opacity = CInt(IIf(pressed, &HCC, &H7F))
Over...
opacity = CInt(IIf(pressed, 204, 127))