以下是引用初学者193在2017-3-13 16:03:53的发言:
新建一个命令按钮组,控制其中一个运行之后颜色与其他不同,然后任意点击哪个按钮,这个按钮就会变为单独一个颜色,而其他按钮都是另一种颜色。不知道这样说没说清楚,请教该如何做到上述情况?比如一个命令按钮组有5个按钮,设置第一个运行之后为红色,其他4个白色,然后点击任意一个按钮,这个按钮变为红色,其他4个则变为白色,代码该如何写?谢谢!
比如你命令组有4个命令,名称分别为 Command1,Command2,Command3,Command4
*在Command1.Click 中
this.ForeColor = RGB(0,0,255)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
*在Command2.Click 中
this.ForeColor = RGB(0,0,255)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
*在Command3.Click 中
this.ForeColor = RGB(0,0,255)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
*在Command4.Click 中
this.ForeColor = RGB(0,0,255)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
this. = RGB(0,0,0)
*在每个 Command1.init,Command2.init,Command3.init,Command4.init 中
this.ForeColor = RGB(0,0,0)
[此贴子已经被作者于2017-3-13 17:29编辑过]