Anzeige
Anzeige
HERBERS
Excel-Forum (Archiv)
20+ Jahre Excel-Kompetenz: Von Anwendern, für Anwender
Inhaltsverzeichnis

looping Userforms

Forumthread: looping Userforms

looping Userforms
30.04.2003 13:42:13
Carmen
I have several uswerforms set up due to the variation of what I want to display for each userform....my goal is to loop these userforms one at a time while accepting inpüut from each userform. at the end of the series, begin the loop again while storing the answers in an Excel DB.

Is this possible and if so how?

Anzeige

2
Beiträge zum Forumthread
Beiträge zu diesem Forumthread

Betreff
Datum
Anwender
Anzeige
Re: looping Userforms
30.04.2003 13:52:35
ChrisL

Dear Carmen

I don't quite get it. Should the UF Loop be automatic or triggered by CommandButton? If automatic how can anybody make inputs. If by CommandButton, why don't just Link the UF's by Button, like

Load UF1
UF1.Show

Unload UF1
Load UF2
UF2.Show

Unload UF2
Load UF3
UF3.Show

Unload UF3
Load UF1
UF1.Show

Regards,
Chris

Anzeige
Re: looping Userforms
30.04.2003 14:02:34
Nike

Hi,
I`m pretty sure this is possible.
Just write the results into certain Cells and
read them from these cells, when opening the next userform.

e.g.
Private Sub CommandButton1_Click()
Range("A1").Value = TextBox1.Text
End Sub

Private Sub UserForm_Initialize()
TextBox1.Text = Range("A1").Value
End Sub

Bye

Nike

Anzeige
;

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Entdecke mehr
Finde genau, was du suchst

Die erweiterte Suchfunktion hilft dir, gezielt die besten Antworten zu finden

Suche nach den besten Antworten
Unsere beliebtesten Threads

Entdecke unsere meistgeklickten Beiträge in der Google Suche

Top 100 Threads jetzt ansehen
Anzeige