Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there anyway to specify a font size in a MsgBox?
(defun MsgBox (/ return WshShell)
(setq WshShell (vlax-create-object "WScript.Shell"))
(setq return (vlax-invoke
WshShell
'Popup
"THIS IS A TEST"
'vlax-vbOKOnly
)
)
(vlax-release-object WshShell)
return
)
Solved! Go to Solution.