We have a problem in VBA code that is running in GE iFix Version 6.1 on Windows Server 2016. The code itself was imported from a previous install using iFix version 5.8 and has been running without a problem for years. The code itself doesn't seem to be the problem. The problem began when a new hard drive was installed and the operating system and software had to be reloaded. Now when the Picture containing the code is called we get 'Run-time Error '438': Object doesn't support the property or method' When we run the debugger the line ComboBox21.AddItem "Sunday" is highlighted. If we delete ".AddItem" and reenter the "." the method or property drop-down box appears but "AddItem" is not an available option. The other selections are still available but AddItem is missing. We have tried installing Microsoft Office 2013 and reinstalling GE iFix. Does anybody have any ideas? Private Sub CFixPicture_Initialize() user.varPreviousPicture.CurrentValue = user.varCurrentPicture.CurrentValue user.varCurrentPicture.CurrentValue = Me.Name ComboBox21.AddItem "Sunday" ComboBox21.AddItem "Monday" ComboBox21.AddItem "Tuesday" ComboBox21.AddItem "Wednesday" ComboBox21.AddItem "Thursday" ComboBox21.AddItem "Friday" ComboBox21.AddItem "Saturday" ComboBox21.AddItem "Disabled" End Sub