SteveShanks
Programmer
Hi
I'm using a standard messagbox call to put some text on the screen. I build the message by concatening text into a string variable like this:
strMessage = "WARNING!" & vbCrLf
strMessage = strMessage & "'Completed' date has been removed." & ControlChars.CrLf & ControlChars.CrLf
strMessage = strMessage & "All dependant items will also have the Completed date removed!"
If (MessageBox.Show(strMessage, "Job Completion", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) = DialogResult.OK) Then
End If
The message is getting cut off after 'All dependant items will also have the Completed date' so missing 'removed!' text
What is going on?
Thanks
teve
I'm using a standard messagbox call to put some text on the screen. I build the message by concatening text into a string variable like this:
strMessage = "WARNING!" & vbCrLf
strMessage = strMessage & "'Completed' date has been removed." & ControlChars.CrLf & ControlChars.CrLf
strMessage = strMessage & "All dependant items will also have the Completed date removed!"
If (MessageBox.Show(strMessage, "Job Completion", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) = DialogResult.OK) Then
End If
The message is getting cut off after 'All dependant items will also have the Completed date' so missing 'removed!' text
What is going on?
Thanks
teve