`If cboClient.SelectedItem.Text = "Google" then
(code to populate the other combobox with google info)
End if`
`If cboClient.SelectedItem.Text = "Yahoo" then
dim sql as string = "Select firstName+ " " +lastname as empName from
Yahoo table"
dim cmd as sqladapter(sql, con)
dim dt as datatable
cmd.fill(dt)
cboUsers.datasource = dt
cboUsers.Datatextfield = "empName"
cboUsers.Datavaluefield = "empName"
cboUsers.DataBind()
End if
Dim sql2 As String = "Select EQPnumber, EQPdesc from CREW_LINEUP_ACTIVE_EQUIPMENT"
Dim activeEQPadt As New SqlDataAdapter(sql2, IPMS.Settings.conn)
activeEQPadt.Fill(activeDT)
ActiveEQPLstBx.DataSource = activeDT
ActiveEQPLstBx.DataTextField = "EQPdesc"
ActiveEQPLstBx.DataValueField = "EQPnumber"
ActiveEQPLstBx.DataBind()