VB题目:对通用对话框选择什么方法,可显示字体对话框。

来源:百度知道 编辑:UC知道 时间:2024/06/23 04:04:06

VB6:
CommonDialog1.ShowFont

VB2005:
FontDialog.ShowDialog()

commondialog1.showfont'显示字体对话框
.showopen'显示打开
.showsave '显示保存框
.showcolor'颜色框

这样即可。
===========
CommonDialog1.Flags = 1
CommonDialog1.ShowFont