M
moondaddy
using vb.net 1.1 I have a combobox which I'm trying to get the selected
item's value. the problem is that this class uses Option Explicit On and
Option Strict On so the following line gets a compile error:
m_GoToID = CType(cmbGoTo.SelectedItem.row(0), Int32)
with the blue squiggly under cmbGoTo.SelectedItem.row(0)
and the compile error is:
Option Strict On disallows late binding
I populated the combo by binding it to a dataset table.
Can anyone help on this?
Thanks
item's value. the problem is that this class uses Option Explicit On and
Option Strict On so the following line gets a compile error:
m_GoToID = CType(cmbGoTo.SelectedItem.row(0), Int32)
with the blue squiggly under cmbGoTo.SelectedItem.row(0)
and the compile error is:
Option Strict On disallows late binding
I populated the combo by binding it to a dataset table.
Can anyone help on this?
Thanks