I am working on a spreadsheet that asks the user to input a description into an ActiveX textbox. The textbox is mirrored on another sheet. Below is the code. The problem I have is the ActiveX TextBox1 will not allow the user to paste text into the box. Is there a property setting I can use to allow pasting? [TABLE="width: 160"]
<tbody>[TR]
[TD="colspan: 2"]Private Sub TextBox1_Change()
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Dim StrTestInput As String
[/TD]
[/TR]
[TR]
[TD="colspan: 2"]StrTestInput = TextBox1.Text
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Sheet2.TextBox1.Text = StrTestInput
[/TD]
[/TR]
[TR]
[TD]End Sub
[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
<tbody>[TR]
[TD="colspan: 2"]Private Sub TextBox1_Change()
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Dim StrTestInput As String
[/TD]
[/TR]
[TR]
[TD="colspan: 2"]StrTestInput = TextBox1.Text
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Sheet2.TextBox1.Text = StrTestInput
[/TD]
[/TR]
[TR]
[TD]End Sub
[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]