I don't use combo boxes very much, so I basically forgot how to use them. Im connecting to an SQL database and I just want to populate a combo box with a users first name. Heres what I have so far:
DBATimeOff.SelectCommand.CommandText = "SELECT FName FROM tblEmployee"
DBATimeOff.Fill(DataTimeOff)
CmbEmployee.DisplayMember = "FName"
CmbEmployee.ValueMember = "EmployeeID"
Am I even close?
Thanks in advance