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"