|
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
|
|
|