Witam. Czy jest ktoś w stanie powiedzieć mi jak ustawić kolejność wyskakujących okienek (Form2 i Form3) Program wygląda tak. Mamy 2 Combobox Gdy w 1 nie wybierzemy nic wyskakuje error 1.
Gdy w drugim combobox nic nie wybierzemy wyskakuje error 2.
Jeśli oba combobox są puste wyskakuje na raz error 1 i error 2 tylko chciałbym by error 1 był wyświetlany nad error 2 by jego najpierw trzeba było wyłączyć.
Kod wygląda następująco:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a As Double If ComboBox1.Text = "" Then Form2.Show() Else a = (a + 1) End If If ComboBox2.Text = "" Then Form3.Show() Else a = (a + 1) End If If a = (2) Then ProgressBar1.Value = 0 Button1.Visible = False ProgressBar1.Visible = True Label1.Visible = True Timer1.Start() End If End Sub
Można zamknąć już sobie z tym poradziłem: Zmieniłem kolejność obliczania które okno jest poprawnie.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a As Double If ComboBox2.Text = "" Then Form3.Show() Else a = (a + 1) End If If ComboBox1.Text = "" Then Form2.Show() Else a = (a + 1) End If If a = (2) Then ProgressBar1.Value = 0 Button1.Visible = False ProgressBar1.Visible = True Label1.Visible = True Timer1.Start() End If End Sub