首页 热点资讯 义务教育 高等教育 出国留学 考研考公

vb中如何改变控制按钮上的字体颜色

发布网友 发布时间:2022-04-23 05:12

我来回答

5个回答

热心网友 时间:2023-11-02 22:23

Sub s()
    '用颜色常数:
    CommandButton1.ForeColor = vbRed '红
    CommandButton1.ForeColor = vbBlue '蓝
    CommandButton1.ForeColor = vbWhite '白
    
    '用QBColor函数:
    CommandButton1.ForeColor = QBColor(n) 'n的值是0到15
    
    '用RGB函数:
    CommandButton1.ForeColor = RGB(r, g, b) 'r、g、b的值分别是0到255
    
    '直接用颜色值:
    CommandButton1.ForeColor = &HFF& '红
    CommandButton1.ForeColor = &HFF00& '绿
    CommandButton1.ForeColor = &HFF0000 '蓝
End Sub

热心网友 时间:2023-11-02 22:23

CommandButton控件没有ForeColor,因此无法修改字体颜色,但是你可以编辑一个图片,将图片显示在CommandButton控件上:
Command1.Style = 1
Command1.Picture = "c:/a.gif"

热心网友 时间:2023-11-02 22:24

貌似不可以,但可以设置成图形按钮,在里面加载一幅有字的图片。

热心网友 时间:2023-11-02 22:24

command1.forecolor=vbred'(红色)

热心网友 时间:2023-11-02 22:25

按钮的forecolor属性 。如:
command1.forecolor = vbblue

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com