Maybe the problem is not the formatting of the table/form whatever, but it's the input. You could use code to insert a bullet by using a specific key, but keypress events can slow things down to the point where it becomes a problem.
Code:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
On Error GoTo errHandler
If KeyCode = vbKeyF# 'substitute a number you want to use
ClipBoard_SetText Chr(149) & Chr(32)
DoCmd.RunCommand acCmdPaste
KeyCode = 0
End If
exitHere:
Exit Sub
errHandler:
MsgBox Err.Number & ": " & Err.Description, , "messagebox title here"
Resume exitHere
End Sub
You shouldn't have to import rtf files as data, but that is another way.
Last edited by Micron; 12-29-2015 at 03:39 PM.
Reason: commented on slow keyupress event
The more we hear silence, the more we begin to think about our value in this universe.
Paraphrase of Professor Brian Cox.