Now here is another problem i have.. Or should i create a new message??
Anyways..
---------------------------------------------------------
Randomize Timer
For i = 1 To 100 Step 1
a = Rnd() * 10 + 10
Me.Controls("te xt" & CStr(i)).Text = Me.Controls("te xt" & CStr(a)).Text
Next i
-----------------------------------------------------
I would like the random to be into a new form.. Exemple.. Form2...
I tried this
Randomize Timer
For i = 1 To 100 Step 1
a = Rnd() * 10 + 10
Me.Controls("te xt" & CStr(i)).Text = form2.Me.Controls("t ext" & CStr(a)).Text
But it didn't work, am i putting it at the right place or should i place it somewhere else??
Thank you for answering.
Vad!
Anyways..
---------------------------------------------------------
Randomize Timer
For i = 1 To 100 Step 1
a = Rnd() * 10 + 10
Me.Controls("te xt" & CStr(i)).Text = Me.Controls("te xt" & CStr(a)).Text
Next i
-----------------------------------------------------
I would like the random to be into a new form.. Exemple.. Form2...
I tried this
Randomize Timer
For i = 1 To 100 Step 1
a = Rnd() * 10 + 10
Me.Controls("te xt" & CStr(i)).Text = form2.Me.Controls("t ext" & CStr(a)).Text
But it didn't work, am i putting it at the right place or should i place it somewhere else??
Thank you for answering.
Vad!
Comment