I would have 3 subs to transition to each of your states. Here is the example for how to get to State1. You would repeat similar logic for State2 and State3 based on your description
Private Sub State1()
ComboBox_1.Enabled = True
ComboBox_1.SetFocus
TextBox_2.Enabled = True
ComboBox_3.Enabled = False
TextBox_4.Enabled = False
ComboBox_5.Enabled = False
CheckBox_6.Enabled = False
TextBox_7.Enabled = False
CommandButton_8.Enabled = False
CommandButton_9.Enabled = False
CommandButton_10.Enabled = False
CommandButton_11.Enabled = True
End Sub
Private Sub CommandButton_8_Click()
' do an INSERT or UPDATE over the SQL table, clears all objects
State1
End Sub
Private Sub CommandButton_9_Click()
' do a DELETE over the SQL table, clears all objects
State1
End Sub
Private Sub CommandButton_10_Click()
' clear all objects
State1
End Sub
Private Sub CommandButton_11_Click()
' clear all objects
State1
Me.Hide
End Sub
Bookmarks