Quote combo box entry in message box

  • Thread starter Thread starter RipperT
  • Start date Start date
R

RipperT

I have some simple code that produces a message box to warn the user of the
ramifications of what he is about to do with data from a cbo selection. Is
there a way to quote the cboBox data in the MsgBox?

Many thanx,

Rip
 
Example:

MsgBox "You are about to modify the data for " & _
Me.ComboBoxName.Value & " in your database." _
 
Back
Top