porque me devuelve 0 en contador???

14/07/2004 - 13:50 por Jordi Maycas | Informe spam
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim contador, bucle As Integer

contador = MotllosDataSet.tipos_molde.Count() ;me devuelve 0 y tengo
registros

contador = MotllosDataSet.centro_inversion.Count() ; lo mismo, me devuelve 0



'For bucle = 1 To contador

'ComboBox1.Items.Add(MotllosDataSet.centro_inversion.Item(bucle))

'Next bucle

End Sub
 

Leer las respuestas

#1 alex
14/07/2004 - 15:26 | Informe spam
El dataset esta lleno? es decir ya llamaste al metodo
fill del adaptador del dataset????


Private Sub Button1_Click(ByVal sender As System.Object,


ByVal e As
System.EventArgs) Handles Button1.Click

Dim contador, bucle As Integer

contador = MotllosDataSet.tipos_molde.Count() ;me


devuelve 0 y tengo
registros

contador = MotllosDataSet.centro_inversion.Count() ; lo


mismo, me devuelve 0



'For bucle = 1 To contador

'ComboBox1.Items.Add(MotllosDataSet.centro_inversion.Item


(bucle))

'Next bucle

End Sub


.

Preguntas similares