Quote combo box entry in message box

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
 
K

Ken Snell [MVP]

Example:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top