Cri_Lancelot Posted May 25, 2011 Report Share Posted May 25, 2011 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 More sharing options...
Argel Posted May 25, 2011 Report Share Posted May 25, 2011 Si le pones array_forms.GetUpperBounds(0) Obtendrias el tamaño de la dimension 0 de la matriz, le cambias el parametro y obtienes el tamaño de la otra dimension Link to comment Share on other sites More sharing options...
Cri_Lancelot Posted May 26, 2011 Author Report Share Posted May 26, 2011 Graxias por tu ayuda me sirvio muxo Saludos :3 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now