Object reference not set to an instance of an object

29/08/2006 - 04:10 por neualex | Informe spam
Hola foro
Queriendo rellenar un combobox, mi codigo me arroja este error:

Object reference not set to an instance of an object

He buscado en Google, pero ninguno ofrece solucion a esto.
Alguna sugerencia?
Saludos.

Mi codigo:

Dim w_dsClient as new DataSet --esta a nivel de clase

Dim strSQL As String
strSQL = "SELECT * FROM County ORDER BY CountyName"

Dim w_daTable As New OleDbDataAdapter(strSQL, objGlobal.getConnectionString)
w_daTable.Fill(w_dsClient, "County")

cboCounty.DataSource = w_dsClient.Tables.Item(0) --el error sucede ACA
cboCounty.DisplayMember = "CountyName"
cboCounty.ValueMember = "CountyID"
 

Leer las respuestas

#1 Alberto Poblacion
29/08/2006 - 09:26 | Informe spam
"neualex" wrote in message
news:%
mi codigo me arroja este error: Object reference not set to an instance of
an object



Significa que estás tratando de acceder a un objeto que vale "Nothing"
(no se le ha hecho todavía el "New").

cboCounty.DataSource = w_dsClient.Tables.Item(0) --el error sucede ACA



Sigue el programa con el debugger y comprueba cuál de los objetos que
hay en esa línea vale Nothing. Podría ser el propio combo (cboCounty), por
ejemplo, si has metido tu código en el constructor de clase de un Form antes
de la llamada al InitializeComponent, que es el que hace el New del combo.

Preguntas similares