I create a calculator in visual basic and I put button from 0 to 9 ... and event click
textbox1.text = textbox1 + "1" (to 9) ..it work good .. but if i press key 0 from keybord nothing is hapens ....who can help me to solve this problem
and the secoun problem .. if I put for example 3.25.89 not 3.2589 how can write in code a "if" for example if textbox1.text -alredy contain a point (.) 3.25 then I click again on button point .. it remain 3.25 but not 3.25.
textbox1.text = textbox1 + "1" (to 9) ..it work good .. but if i press key 0 from keybord nothing is hapens ....who can help me to solve this problem
and the secoun problem .. if I put for example 3.25.89 not 3.2589 how can write in code a "if" for example if textbox1.text -alredy contain a point (.) 3.25 then I click again on button point .. it remain 3.25 but not 3.25.
Comment