Bullet points in a message?

cos

Registered User.
Local time
Today, 17:02
Joined
Jul 13, 2012
Messages
81
Hi guys,

is there any way of inserting bullet points into a message box? i've got my message in a macro, and if its not possible in macro, maybe there's an idiots guide on how to do it in code?
 
In the front side of access when using macros you can't add bullet or simulated bullets, but you can show something like a dot in a message box in the VBA screen. Example below: Copy the below into a module sheet and then stay in the code and press F5 and it will show you the message with multiple lines

Sub BulletPoint()
MsgBox "Here are the list of things to watch out for" & vbCr & _
"." & "Item 1" & vbCr & _
"." & "Item 2"

End Sub
 

Users who are viewing this thread

Back
Top Bottom