Is there any way to align text into the center in msgbox in VB or VBA? Does VB have any functionality to do the same?
|
|
||||
|
|
|
No. The If you want to change it any further than this, you will need to create your own window and show that instead. On Windows Vista+ you can use TaskDialogs that allow a lot more control. |
||||
|
VBA Some notes: http://access.mvps.org/access/bugs/bugs0035.htm AND http://www.tek-tips.com/viewthread.cfm?qid=435428 However, it is not so difficult to build your own message box, which solves all your problems. |
|||
|
|
|
When you are building your strings you could pad them at the beginning and end with spaces to achieve a target length. If you're using excel the worksheet function rept is handy for this.
As mentioned before if the msgbox still doesn't look good you can use textbox shape object (or other objects) to get the desired effect. |
|||
|
|