[2003] Form issues

jobro

Registered User.
Local time
Yesterday, 19:31
Joined
Nov 3, 2007
Messages
21
First of all it was a while since I been here. Now for my questions:

In a form I've got a popup menu linked to a set of cells. That much is easy done. Now I've got in the same form a textbox that needs to be updated with the correct product chosen.

I also have an editbox containing the amount of that product you want to order. I need to send that amount to another textbox.

I've got more questions but I'll get to them later.

Thanks in advance.
 
Anyone? It would really help if someone here could help me out.
 
It would be something like this.

Now I've got in the same form a textbox that needs to be updated with the correct product chosen.
Code:
userform1.textbox1.value =  thisworkbook.worksheets("Sheet1").range("A1").value
I also have an editbox containing the amount of that product you want to order. I need to send that amount to another textbox.

Code:
userform1.textbox2.value = userform1.textbox1.value
 

Users who are viewing this thread

Back
Top Bottom