Welcome
Someone know? how to change property (Multiline) for a TextBox to True in run - time with simultaneous change his size (height)
Always, when I trying it finish with a get of error >> Can’t assign to read-only property <<
I try to do in this way:
VB Code:
Private Sub Command1_Click() With Text1 .MultiLine = True .ScrollBars = 2 .Height = 300 End With End Sub
But something is a wrong, how correctly to make this?
Thanks in advance




Reply With Quote