Hi All
My form VB2005 has 4 comboboxes and I would like when form is open each combobox show value ALL. I coded in LOAD procedure like this
Code:
        Me.EmpComboBox.Text = "ALL"
        Me.DeptComboBox.Text = "ALL"
        Me.TypeComboBox.Text = "ALL"
        Me.YearComboBox.Text = "ALL"
and when form is open I have other items from each list not like I expecte. What is my error?
Thanks.