A Anthony Bollinger Feb 9, 2006 #1 How do I default an unbound combobox to the value of the first column, first row? .Column(0,0) does not work. Thanks, Tony
How do I default an unbound combobox to the value of the first column, first row? .Column(0,0) does not work. Thanks, Tony
M Marshall Barton Feb 9, 2006 #2 Anthony said: How do I default an unbound combobox to the value of the first column, first row? .Column(0,0) does not work. Click to expand... As long as the BoundColumn is the first column, that should work. Maybe you're using it in the wrong place?? The standard way to do that is to use: .ItemData(0)
Anthony said: How do I default an unbound combobox to the value of the first column, first row? .Column(0,0) does not work. Click to expand... As long as the BoundColumn is the first column, that should work. Maybe you're using it in the wrong place?? The standard way to do that is to use: .ItemData(0)
A Anthony Bollinger Feb 10, 2006 #3 In the load event of the form I have code: cboBuyerKey = cboBuyerKey.Column(0,0). I have also tried .Column(0). I will give .ItemData(0) a try later today. Thanks, Tony
In the load event of the form I have code: cboBuyerKey = cboBuyerKey.Column(0,0). I have also tried .Column(0). I will give .ItemData(0) a try later today. Thanks, Tony