S shanmu Unregistered / Unconfirmed GUEST, unregistred user! 2007-01-31 #1 SpeedButton15.Caption:='资'+#13+'料'+#13+'录'+#13+'入'; 比如要想把 资料录入 设为黑体,15号,怎么写代码呢?
L laker6274 Unregistered / Unconfirmed GUEST, unregistred user! 2007-01-31 #2 SpeedButton15.Font.Name:= SpeedButton15.Font.Size:=
Z zdwjetlee Unregistered / Unconfirmed GUEST, unregistred user! 2007-01-31 #4 SpeedButton1 不是有个font属性吗 font前面右面‘+’号 你点开 里面有charset ,height,color.... 你直接在程序里对这些细化属性赋值…… SpeedButton1.font.charset:=... SpeedButton1.font.height:=...
SpeedButton1 不是有个font属性吗 font前面右面‘+’号 你点开 里面有charset ,height,color.... 你直接在程序里对这些细化属性赋值…… SpeedButton1.font.charset:=... SpeedButton1.font.height:=...
S shanmu Unregistered / Unconfirmed GUEST, unregistred user! 2007-01-31 #5 zdwjetlee你好,关键是我要的是字竖起来的,你说的那些我也知道。但没看到有让字竖起来的属性。
N newsmile Unregistered / Unconfirmed GUEST, unregistred user! 2007-01-31 #6 SpeedButton没有竖排属性,要想竖排只能如下(在一个按钮或formcreate里面写): SpeedButton1.Caption:='资'+#13+'料'+#13+'录'+#13+'入'; SpeedButton1.Font.Charset:=GB2312_CHARSET; SpeedButton1.Font.Name:='黑体'; SpeedButton1.Font.Size:=15;
SpeedButton没有竖排属性,要想竖排只能如下(在一个按钮或formcreate里面写): SpeedButton1.Caption:='资'+#13+'料'+#13+'录'+#13+'入'; SpeedButton1.Font.Charset:=GB2312_CHARSET; SpeedButton1.Font.Name:='黑体'; SpeedButton1.Font.Size:=15;