MsgBoxes

kbreiss

Registered User.
Local time
Today, 05:26
Joined
Oct 1, 2002
Messages
228
I would think this should be easy, but I'm having a diffiicult time and keep receiving an error.

I want to display a message box with a label I have for the title.

Dim strTitle as String
strTitle = lblTaxes
MsgBox (txtTaxes), vbOKOnly, strTitle

lblTaxes is a my label that I want to display as the title of my message box. Its throwing a fit with because of this title. Any insight would be helpful.

Thanks,
Kacy
________
SEX REHAB FORUM
 
Last edited:
Try:
Code:
strTitle = lblTaxes.Caption
 

Users who are viewing this thread

Back
Top Bottom