ID : 367
PrintMsg
格式
PrintMsg 字符串[, 图标 [, 标题]]
指定项目
相关项目
注意事项
- 不能使用分隔符。
- Ver1.7.*以后的版本可指定图标和标题。
- 讯息输出窗口中也不显示图标和标题。
应用示例
'!TITLE“显示信息”
' 显示“Hello World”
Sub Sample_PrintMsg
' 在讯息输出视窗中显示“Hello World”
PrintMsg "Hello World", 1, "Caption"
End Sub
ID : 367