Is it possible to make a Multiline Textbox control readonly so that the user cannot change the contents?
[SIZE=2][COLOR=#0000ff]Sub [/COLOR][/SIZE][SIZE=2]TextBox1_KeyPress (key)[/SIZE]
[SIZE=2]textbox1.IgnoreKey[/SIZE]
[SIZE=2][COLOR=#0000ff]End Sub[/COLOR][/SIZE]
But if you catch LostFocus event too, you can restore it's value again
Sub YourTextbox_Gotfocus
InvisibleTextbox.Focus
End Sub