Srs. bom dia;
Como negritar uma string dentro de uma msgbox ?
Estou usando o seguinte código:
DoCmd.Beep
If MsgBox("Pagamento MENOR que o vencimento !!!" & Chr(13) & Chr(13) & "Deseja gerar novo pagamento com o saldo restante ? " & Chr(13) & Chr(13) & "R$ " & Format(SaldoBx, "0.00"), vbYesNo, "Aviso de Baixa Parcial") = vbYes Then
End If
Queria que a parte "Format(SaldoBx, "0.00")" ficasse destacada em negrito !
Achei aqui no fórum um ótima contribuição do Sr. JPAULO a função:
Public Function FormattedMsgBox(Prompt As String, _
Optional Buttons As VbMsgBoxStyle = vbOKOnly, _
Optional Title As String = vbNullString, _
Optional HelpFile As Variant, _
Optional Context As Variant) As VbMsgBoxResult
If IsMissing(HelpFile) Or IsMissing(Context) Then
FormattedMsgBox = Eval("MsgBox(""" & Prompt & _
""", " & Buttons & ", """ & Title & """)")
Else
FormattedMsgBox = Eval("MsgBox(""" & Prompt & _
""", " & Buttons & ", """ & Title & """, """ & _
HelpFile & """, " & Context & ")")
End If
End Function
Porem, não estou conseguindo adaptar na minha msgbox, alguma dica ?
Grato
Carniel
Como negritar uma string dentro de uma msgbox ?
Estou usando o seguinte código:
DoCmd.Beep
If MsgBox("Pagamento MENOR que o vencimento !!!" & Chr(13) & Chr(13) & "Deseja gerar novo pagamento com o saldo restante ? " & Chr(13) & Chr(13) & "R$ " & Format(SaldoBx, "0.00"), vbYesNo, "Aviso de Baixa Parcial") = vbYes Then
End If
Queria que a parte "Format(SaldoBx, "0.00")" ficasse destacada em negrito !
Achei aqui no fórum um ótima contribuição do Sr. JPAULO a função:
Public Function FormattedMsgBox(Prompt As String, _
Optional Buttons As VbMsgBoxStyle = vbOKOnly, _
Optional Title As String = vbNullString, _
Optional HelpFile As Variant, _
Optional Context As Variant) As VbMsgBoxResult
If IsMissing(HelpFile) Or IsMissing(Context) Then
FormattedMsgBox = Eval("MsgBox(""" & Prompt & _
""", " & Buttons & ", """ & Title & """)")
Else
FormattedMsgBox = Eval("MsgBox(""" & Prompt & _
""", " & Buttons & ", """ & Title & """, """ & _
HelpFile & """, " & Context & ")")
End If
End Function
Porem, não estou conseguindo adaptar na minha msgbox, alguma dica ?
Grato
Carniel