Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I express Disabled Effect in Picture object ???
Message
From
21/10/1998 09:52:06
 
 
To
21/10/1998 01:52:56
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00148380
Message ID:
00148871
Views:
17
>Thanks for your kindly reply...
>
>But afraid,that isn't answer what I want to.....
>
>I want to know is 'WHAT CAN I EXPRESS DISABLED EFFECT in PICTURE Control
>like in Button control.
>
>Button control's picture is disabled automatically( gray scale and 3d effect ? ) when the Button is disabled.
>
>In picture,,, how can i express like that ??
>or
>any tools? and any trick?
>
>thanks....
>
>www.vfp.co.kr
>funnyfox@vfp.co.kr

What is disabling the Picture control?

If it is your code, you could also change the picture... perhaps create a grey scale picture of the normal picture. When you disable the picture just change the picture property of it.

Or, if you are in 6.0 you could create a enable_assign event and in that code do something like...

lparameters llEnable

if llEnable
this.picture = 'color.bmp'
else
this.picture = 'grey.bmp'
endif
this.refresh (not sure if you need this)

return llEnable

BOb
Previous
Reply
Map
View

Click here to load this message in the networking platform