Msgbox question!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How much characters can a msgbox contain.
I have about 22 lines in my msgbox and about 1011 characters (with spaces)
but its truncating this infor to 973 characters (with spaces)
 
I am SO sorry for your users having to read all that tiny print!

Instead of a standard Msgbox, create your own out of an unbound form. Put
the text in a label and add buttons to your heart's content. Set the Modal
and Pop Up properties of the form to do what you want. Change the format for
things like scroll bars until it looks good enough.
 
JOM said:
How much characters can a msgbox contain.
I have about 22 lines in my msgbox and about 1011 characters (with
spaces) but its truncating this infor to 973 characters (with spaces)

From the help topic on "MsgBox Function":

<quote>
The maximum length of prompt is approximately 1024 characters, depending
on the width of the characters used. If prompt consists of more than one
line, you can separate the lines using a carriage return character
(Chr(13)), a linefeed character (Chr(10)), or carriage return - linefeed
character combination (Chr(13) & Chr(10)) between each line.
</quote>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top