AddItem adds a new row to the combobox so
Me.cmboCategory.AddItem rst!CategoryID, 1
Me.cmboCategory.AddItem rst!CategoryName, 2
adds CategoryID to row 1, column 1 and then CategoryName to row 2, column 1
You need to concantenate both items, seperated by a semi-colon at the time of the AddItem...