I posted earlier about a problem I had with MsgBox only allowing 1024 characters. Someone suggested using a form, but part of the problem is the message to be displayed has some conditional statements, like...
"You are going to send <this>.
(If make default is set to true) You are going to change the default to <that>.
(If another setting is set to true) You are going to..."
This is easy with a MsgBox statement, because I can just make a String and add things to it if the conditions are true, and otherwise, not add them; the problem is that the values of <this> and <that> can reasonably contain a larger number of characters which would not be supported by a MsgBox.
Any suggestions about the easiest way to do this? Is it still reasonable to use a form for this problem?
"You are going to send <this>.
(If make default is set to true) You are going to change the default to <that>.
(If another setting is set to true) You are going to..."
This is easy with a MsgBox statement, because I can just make a String and add things to it if the conditions are true, and otherwise, not add them; the problem is that the values of <this> and <that> can reasonably contain a larger number of characters which would not be supported by a MsgBox.
Any suggestions about the easiest way to do this? Is it still reasonable to use a form for this problem?