I am trying to create a filter program in VB that will be able to heavily interface with a chosen Excel spreadsheet in XLS format. I was wondering if anyone could give me a better way to work with it instead of
adding
Public objExcel As New Excel.Applicati on
under the class title and doing things like:
ComboBox1.Items .Add(objExcel.R ange("a" & cell.ToString). Value.ToString)
to add values to a comboBox.
adding
Public objExcel As New Excel.Applicati on
under the class title and doing things like:
ComboBox1.Items .Add(objExcel.R ange("a" & cell.ToString). Value.ToString)
to add values to a comboBox.
Comment