Skip to content

Reply To: ghostriderofthenite Ultimate Bot project

#95242

wonder if change code to this for the textbox respectively would work might try it lol

(form1)
 
private sub command1_click ()

    me.hide

    form2.show

    form2.textbox1.text = me.textbox1.text

end sub
 
(form2)
 
private sub command1_click ()

    me.hide

    form1.show

    form1.textbox1.text = me.textbox1.text

end sub