Question : adding color and font  charicteristics to a msgbox

How can I make the following msg = VBRed, larger font and Bold? If it couldt blink that would be cool too...

l_Msg = l_Msg & "Be sure to evaluate the Culture_Days, Viable, and Volume variables prior to making the calculation as data entry errors may exist." & l_LFCR & l_LFCR

Answer : adding color and font  charicteristics to a msgbox

if you want to (or have to) do this in code:

    txtUpdNote = "The calculated CVC value ..."  ' etc.
    txtUpdNote.BackColor = vbGreen
    txtUpdNote.ForeColor = vbRed
    txtUpdNote.FontSize = 12  ' Or bigger!
    txtUpdNote.FontBold = True
    txtUpdNote.Visible = True
Random Solutions  
  •  How can I print using a Clipper (DOS) application under Windows 7
  •  can i use right([ClientName] to get the last part of a string in a Microsoft Access query if i don't know how long the last part is?
  •  DNS root hints not working Windows 2008
  •  Expert Notify Thread - For Experts only (those answering questions in the MS Access Zone).
  •  Append from Access to SQL Server key violation on any second query
  •  How do I remove special characters in a query?
  •  VPN client (Check point Secure client) not able to browse to any website on the machine once connected to the VPN.
  •  Mixed tooltips using AddTool (GetDlgItem (IDC_THIS), IDC_THIS) and AddTool (this, LPSTR_TEXTCALLBACK) how to.
  •  How do you import outlook express 6 messages into Windows Live Mail and have them in the proper folders?
  •  Dropdowns in grid view 'edit item template' not working
  •  
    programming4us programming4us