VB 控件问题紧急请教
CommandButton 和 checkbox, 图片显示在控件上。如果button 的enabled设置为false, 控件上面的图片都变为灰色,也不能click。我现在想在enabled = true的情况下,用程序达到同样的效果:1。 当commandbutton.enabled=true时,让按钮上的图片显示为灰色,就像Commandbutton.enabled=false时的效果一样。
2。 当commandbutton.enabled=true时,按钮的click事件将被激活,如何用程序实现即使enable=ture, 当按下按钮时让它没有相应,就像Commandbutton.enabled=false时的效果一样呢?
万分感激 --------------------编程问答-------------------- 2.
private sub command1_click()
if not check1 then exit sub
'......
end sub --------------------编程问答-------------------- 我也是这么写的 但是当我按下按钮的时候,如何不让按钮按下去呢? --------------------编程问答-------------------- 不要用CommandButton了,用个picturebox接受click事件吧。保证不会被按下去!呵呵
补充:VB , 基础类