homer_j
05-21-2001, 11:17 AM
I currently have an option button that I want, when clicked on, to have information passed from one text to another text box. So in essence, I am working with three different controls.
|
View Full Version : If..Then..Else....Help homer_j 05-21-2001, 11:17 AM I currently have an option button that I want, when clicked on, to have information passed from one text to another text box. So in essence, I am working with three different controls. Robert Saye 05-21-2001, 02:25 PM Hey Homer, Try this create an event procedure on the command buttons click event. Type me.text2 = me.text1 If you want to clear text box 1 then just add after that me.text1 = "". HTH Robert |