VB文本框中 怎么改变字体大小

2025-05-14 07:56:47
推荐回答(1个)
回答1:

'改变fontsize属性,如
Private Sub Command1_Click()
   Text1.FontSize = Text1.FontSize + 2
End Sub