I am using "msgBox" to show a message to the user. The problem is that the message is so big that 't's getting truncated in between. Is there any limitation on the maximum message length? Is there any way to change it?
Maximum message size allowed
Collapse
X
-
Tags: None
-
Hi,Originally posted by Abhishek BhattI am using "msgBox" to show a message to the user. The problem is that the message is so big that 't's getting truncated in between. Is there any limitation on the maximum message length? Is there any way to change it?
Create your own customized message.:
Add new form to your project and place a TextBox, populate the textbox with your message text. And show the form in Modal.
TextBox can have max of 64k.
Regards
VeenaComment
-
Can we able to know what message you are going to display?Originally posted by Abhishek BhattI am using "msgBox" to show a message to the user. The problem is that the message is so big that 't's getting truncated in between. Is there any limitation on the maximum message length? Is there any way to change it?Comment
-
I am trying to import data from spreadsheet file to the database table. User can upload upto 30 tables at a time. After the whole processing a consolildated message would be shown to the user showing what tables could not be uploaded and due to what reason. So message size can be big.Originally posted by hariharanmcaCan we able to know what message you are going to display?Comment
-
I suggest you to use rich text box to display the bulky text (In message box there is no scroll bars to read message properly).Originally posted by Abhishek BhattI am trying to import data from spreadsheet file to the database table. User can upload upto 30 tables at a time. After the whole processing a consolildated message would be shown to the user showing what tables could not be uploaded and due to what reason. So message size can be big.
So whatever message you want to show just write it in text file and load it to rich text box (make the form model).Comment
-
I agree, also because if you place it in a TextBox or RichTextBox, the user can copy the message for reference purposes, before it disappears forever.Originally posted by hariharanmcaI suggest you to use rich text box to display the bulky text ...Comment
Comment