Ich habe mal eine Frage. ;-)
Ich habe ein Programm mit mehreren Formularen. Auf dem Hauptformular soll das Ergebnis ausgegeben werden.
Hier der Quelltext:
Hauptformular
Private Sub cmd_Beenden_Click()
End
End Sub
Private Sub cmd_Start_Click()
Form2.Show
Form1.Hide
End Sub
Private Sub Form_Load()
Form1.Show
Form2.Hide
Form3.Hide
End Sub
Nebenformular
Public Sub cmd_Eingabe_Click()
If chk_DRAM.Value = 0 And chk_VRAM.Value = 0 And chk_SRAM.Value = 0 And chk_RDRAM.Value = 0 And chk_EDO.Value = 0 Then
MsgBox "Eingabe erforderlich", 48, "Fehler"
ElseIf chk_DRAM.Value = 1 And chk_VRAM.Value = 0 And chk_SRAM.Value = 0 And chk_RDRAM.Value = 0 And chk_EDO.Value = 0 Then
MsgBox "Sehr schön Ihre Antwort war richtig."
Form1.Hide
Form2.Hide
Form3.Show
Zähler = Zähler + 1 Der Zähler soll im Hauptformular ausgegeben werden
Else
MsgBox "Schade Ihre Antwort war leider falsch."
Form1.Hide
Form2.Hide
Form3.Show
End If
End Sub
Private Sub Form_Load()
chk_VRAM.Value = 0
chk_SRAM.Value = 0
chk_DRAM.Value = 0
chk_RDRAM.Value = 0
chk_EDO.Value = 0
End Sub
Wie und wo muß ich die Variable (Zähler) dimensionieren damit ich den Wert im Hauptformular ausgeben kann?
Ich habe ein Programm mit mehreren Formularen. Auf dem Hauptformular soll das Ergebnis ausgegeben werden.
Hier der Quelltext:
Hauptformular
Private Sub cmd_Beenden_Click()
End
End Sub
Private Sub cmd_Start_Click()
Form2.Show
Form1.Hide
End Sub
Private Sub Form_Load()
Form1.Show
Form2.Hide
Form3.Hide
End Sub
Nebenformular
Public Sub cmd_Eingabe_Click()
If chk_DRAM.Value = 0 And chk_VRAM.Value = 0 And chk_SRAM.Value = 0 And chk_RDRAM.Value = 0 And chk_EDO.Value = 0 Then
MsgBox "Eingabe erforderlich", 48, "Fehler"
ElseIf chk_DRAM.Value = 1 And chk_VRAM.Value = 0 And chk_SRAM.Value = 0 And chk_RDRAM.Value = 0 And chk_EDO.Value = 0 Then
MsgBox "Sehr schön Ihre Antwort war richtig."
Form1.Hide
Form2.Hide
Form3.Show
Zähler = Zähler + 1 Der Zähler soll im Hauptformular ausgegeben werden
Else
MsgBox "Schade Ihre Antwort war leider falsch."
Form1.Hide
Form2.Hide
Form3.Show
End If
End Sub
Private Sub Form_Load()
chk_VRAM.Value = 0
chk_SRAM.Value = 0
chk_DRAM.Value = 0
chk_RDRAM.Value = 0
chk_EDO.Value = 0
End Sub
Wie und wo muß ich die Variable (Zähler) dimensionieren damit ich den Wert im Hauptformular ausgeben kann?