Thanks for taking the time to read this and possibly helping. When I recently updated to windows 7 & Office 2013, I ocassionally keep getting an error "Automation error the object invoked has disconnected from its client" when trying to use a combo box drop down menu on a user form; which causes excel to lock up. I never got this error before when using this file in windows XP with office 2007.
Here is where it says the error is:
I also have the combo box formated for a drop down of selectable dates as seen below:
Here is where it says the error is:
Code:
Private Sub CommandButtonNewPerson_Click()
frmEnterPersonData.Show
End Sub
I also have the combo box formated for a drop down of selectable dates as seen below:
Code:
Private Sub ComboBox4_Change()
Me.ComboBox4.Value = Format(Me.ComboBox4.Value, "mm/dd")
End Sub