Thank you for the code suggestions, made the code so much smaller!
ok now it looks like this
CheckGrid.Combos.Clear
With CheckGrid
.Combos.Add("FirstRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(1, 1) = igCellCombo
.CellCtrlKey(1, 1) = "FirstRow"
.CellValue(1, 1) = "2"
.Combos.Add("SecondRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(2, 1) = igCellCombo
.CellCtrlKey(2, 1) = "SecondRow"
.Combos.Add("ThirdRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(3, 1) = igCellCombo
.CellCtrlKey(3, 1) = "ThirdRow"
.Combos.Add("ForthRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(4, 1) = igCellCombo
.CellCtrlKey(4, 1) = "ForthRow"
.Combos.Add("FifthRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(5, 1) = igCellCombo
.CellCtrlKey(5, 1) = "FifthRow"
.Combos.Add("SixthRow").FillFromRS tbl_Chk_Account_oRS, "cDept_name", "lAcc_id"
.CellType(6, 1) = igCellCombo
.CellCtrlKey(6, 1) = "SixthRow"
End With
tbl_Chk_Account_oRS.Close
CheckGrid.ShowControlsInAllCells = True
as you can see i set .cellvalue(1, 1) = 2 for the FirstRow .combos.add
on this image it shows them all loaded, perfect.

Click to View Image164 View(s)
This image shows them all in there and if i click on one of them it puts it in the box to see

Click to View Image160 View(s)
like this

Click to View Image156 View(s)
this is what it looks like when i use the .cellvalue set to 2 in the first combobox, I want it to show the listing like it does when i click on it.

Click to View Image164 View(s)
I was hoping to make it look like this when it loads it from the code so it shows up like this as the default

Click to View Image156 View(s)
with out them having to have clicked on it.
Thank you for taking the time to work on this. JAnd the quick responses, this is an awesome learning experience for me