B
Bryan Dickerson
I'm trying to fill a listbox...
------------------------------
Dim oC As New localhost.Service1
Dim oSR As System.IO.StringReader
oSR = New
System.IO.StringReader(oC.GetAllContacts(oELookup.CustomerNum,
oELookup.CustomerType))
oDS.ReadXml(oSR)
lbContacts.DataSource = oDS.Tables("Table").Rows
lbContacts.DisplayMember =
oDS.Tables("Table").Columns("CI_NAME").ToString
lbContacts.ValueMember = oDS.Tables("Table").Columns("ID").ToString
------------------------------
Dim oC As New localhost.Service1
Dim oSR As System.IO.StringReader
oSR = New
System.IO.StringReader(oC.GetAllContacts(oELookup.CustomerNum,
oELookup.CustomerType))
oDS.ReadXml(oSR)
lbContacts.DataSource = oDS.Tables("Table").Rows
lbContacts.DisplayMember =
oDS.Tables("Table").Columns("CI_NAME").ToString
lbContacts.ValueMember = oDS.Tables("Table").Columns("ID").ToString