Listo compañeros lo solucione de esta forma:
Código:
Dim cCriterio As String = String.Empty
For Each tp As TabPage In tmultiple.TabPages
For Each ctl As Control In tp.Controls
If TypeOf ctl Is ComboBox Then
If ctl.Tag = "codigo_linea" Or ctl.Tag = "sector" Or ctl.Tag = "codigo_planta" Or ctl.Tag = "codigo_filtra" Or ctl.Tag = "codigo_tipo" Then
If ctl.Text <> vbNullString Then
cCriterio = cCriterio + ctl.Tag + " = " + Convert.ToString(CType(ctl, System.Windows.Forms.ComboBox).SelectedValue) + " AND "
End If
End If
End If
Next
Next
Saludos y Gracias por todo.