Jump to content

Recommended Posts

Mi problema es el siguiente

 

Tengo una arreglo bidimensional pero no se como selencionar solo el primer indice de mi arego de forma dinamica no manual osea que vaya llenando dependiendo la cantidad de datos en el archivo en este caso xml

 

El codigo esta asi

 

Dim array_forms(,) As String

Dim instancia As New Xml_BD

array_forms = instancia.Lee_xml_Base_datos

 

Me.grilla_bd.Columns.Add("Nombre", "Nombre")

Me.grilla_bd.Columns.Add("Usuario", "Usuario")

Me.grilla_bd.Columns.Add("Password", "Password")

Me.grilla_bd.Columns.Add("Filial", "Filial")

Me.grilla_bd.Columns("Filial").Visible = False

Me.grilla_bd.Columns("Nombre").Width = 190

Me.grilla_bd.Columns("Usuario").Width = 190

Me.grilla_bd.Columns("Password").Width = 190

Me.grilla_bd.Rows.Add(10)

Dim cont As Integer = 0

 

Try

 

If Me.grilla_bd.Rows.Count > 0 Then

For j As Integer = 0 To 10

 

For i As Integer = 0 To 4

Me.grilla_bd.Item("Nombre", cont).Value = array_forms(j, i)

Me.grilla_bd.Item("Usuario", cont).Value = array_forms(j, i + 1)

Me.grilla_bd.Item("Password", cont).Value = array_forms(j, i + 2)

cont += 1

Exit For

Next

Next

 

End If

Catch ex As Exception

End Try

 

Necesito q en el primer for lo se lecciones del primer indice del arreglo

 

Espero me ayuden saudos

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...