Hi Friends,
I have one button and a textbox. When i press the button the value assigned to the button will come in the textbox. It will always come to the last of textbox. I want this value to appear where the mouse is clicked (Last by default).
Please help me on this.
I have one button and a textbox. When i press the button the value assigned to the button will come in the textbox. It will always come to the last of textbox. I want this value to appear where the mouse is clicked (Last by default).
Code:
Private Sub Button_Click()
If TextBox2.Text = "" Then
TextBox2.Text = " + "
Else
TextBox2.Text = TextBox2.Text + " + "
End If
End Sub
Please help me on this.
Last edited: