ant
June 17th, 2001, 11:35 AM
i have a program, that when you click on a command button it takes the text from 2 different textboxes in 2 different forms and combines them into 1 richtextbox on another form. so far i have a code like this:
Dim f as Form7
set f = new Form7
f.richtextbox1.text = form3.richtextbox1.text & form4.richtextbox`.text
f.show
I also have a command that creates a new form
The problem is when i click on the button, it creates a new form, but it doesn't
combine the 2 text boxes and put the text in the new textbox in the form.
What's wrong??
--Ant
--------------------------------------------------
check out my newest freeware
E-mail me at: cgeorge@thevortex.com
for the address
Dim f as Form7
set f = new Form7
f.richtextbox1.text = form3.richtextbox1.text & form4.richtextbox`.text
f.show
I also have a command that creates a new form
The problem is when i click on the button, it creates a new form, but it doesn't
combine the 2 text boxes and put the text in the new textbox in the form.
What's wrong??
--Ant
--------------------------------------------------
check out my newest freeware
E-mail me at: cgeorge@thevortex.com
for the address