Message Box Formatting

JPritch

Registered User.
Local time
Today, 00:34
Joined
Jan 7, 2005
Messages
55
Aside from creating a Popup Form with custom formatting, is it possible to format a MsgBox using VBA? We have set up a number of message boxes, however some of the text is pretty short and we would like to center it within the message box. Also, some of the message boxes look too big for the text that is in them, and we would like to shrink the message boxes a bit.

Possible via VBA?
 
There is no othger way you can alter the appearance of messgax box.

All you have to do is create a form that will act as your message box
 
For a simple Message box (my case), I used a conjunction of newline and spaces to relative success.

MsgBox "____________Blah Blah Blah____________" & vbCrLf & "____________Blah Blah____________"...

where ____________ = spaces

Apart from this, and like adevera mentioned, create a form that will act as your message box.
 
About the only thing you can do with the text is you can bold the top line [section] of your message box using the EVAL function and the @ symbol. Ensure you keep the single quotes and @ exactly like my example. This will work for all versions of Access.

Code:
If (Eval("MsgBox ('Your Bold Text Here.@Your Normal Text Here.@@',20,' Your Title Here')")) = vbYes Then
    MsgBox "user clicked YES"
Else
    MsgBox "user clicked NO"
End If
You will have to play with the aurgument numbers [20] if you need a different symbol and/or buttons.
 
Thank you. Your code for the bold formatting was exactly what I needed. I saw that access did this in several places, and I had a hard time believing that it couldn't be duplicated.
 
1)In case you want to make a reference to a control on the form and you want your message to break to another line. How do you reformat this.

i.e
Code:
 This is [B]skea[/B] Going 
 To Another Line.
Where skea comes from Me.MyName
 
Last edited:
skea,

MsgBox "This is " & Me.MyName & " Going " & vbCrLf & "To Another Line."

Wayne
 
WayneRyan said:
skea,
MsgBox "This is " & Me.MyName & " Going " & vbCrLf & "To Another Line."
Wayne

I meant using the Eval function and the '@' sign.
All i want is modifying ghudson's example in that format but iam Still failing.
Some thing like.
Code:
Eval ("MsgBox('@This is " & "skea" & " going to@    Another Line@@', " & vbInformation & ",'ERROR SIGNAL!')")
So that the name skea comes out bolded.

Logic tells me that the one '@' added to your message text will break the message into paragraphs, with text before the first @ shown in bold. You are limited to three paragraphs with the "@" symbol following each paragraph. If you only want to break for two paragraphs, you must use two @@ symbols at the end of the second paragraph. But how can boldness be placed in the middle of these '@' signs.
Thanks
 
Last edited:
Give this function a try skea... I liked the idea of giving emphasis to some of my msgbox's that I tried to incorporate ghudson's code into this function:

Code:
Function CustomMsgBox(BoldPrompt As Variant, Prompt As Variant, _
                    Optional Buttons As VbMsgBoxStyle = vbOKOnly, _
                    Optional Title As Variant = "Message") As VbMsgBoxResult

    CustomMsgBox = Eval("MsgBox ('" & Replace(BoldPrompt, "'", "") & "@" & _
                                Replace(Prompt, "'", "") & "@@'," & Buttons & ",'" & _
                                Replace(Title, "'", "") & "')")
End Function

i practiced a little and found that you can call it just like you do the regular VBA MsgBox

hope it helps

Scott
 
This give me the same thing as ghudson's example.
Any more ideas?
 
Is it worth the effort? Only you can decide that one.

Last resort [more work] would be to create a form to mimick a custom message box. There is a sample somewhere around here that somebody posted for using a form as a message box.
 
Thanks
I give up too... This should be some thing in access Wish List. Thanks
 
Last edited:
Demo-MsgBx contains a fully functioning version of Gramsoft's Multi Purpose MessageBox for Access 2003.
You can use parts of it of the whole package as a module. The command MsgBx can act in 6 different modes

There is a limitation placed on new members. If you tried to post a free example or a free code offering, it didn't work because you are still counted as a new member. Note also that if this evolves into a form of advertising for products to be sold, that such advertising is not allowed.
 

Users who are viewing this thread

Back
Top Bottom