Hi!!!
I have made a window application Form in which there is a textbox in which I am entering string of data.
Also there is a toolbar for entering symbols which are not present on keyboard.
Now for entering each symbol in textbox i have used :
textBoxEquation.AppendText("÷");
this.textBoxEquation.Focus();
but problem is that If I use bracket and try to enter any symbolfrom toolbar inside that, then in that case symbol does not appear inside bracket but it gets appended outside the bracket(because i have used Appendtext)...........
How can I enter symbols or characters using toolbar inside bracket as well as outside bracket.
Kindly provide some solution............ :)