{"id":24482233,"url":"https://github.com/ozzies-code/listtree","last_synced_at":"2026-02-19T15:02:48.349Z","repository":{"id":270379742,"uuid":"910173333","full_name":"ozzies-code/ListTree","owner":"ozzies-code","description":"Proyecto que describe el manejo de listas, arboles y sus nodos","archived":false,"fork":false,"pushed_at":"2024-12-30T17:42:07.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-11T19:44:12.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Visual Basic .NET","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ozzies-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-30T17:11:23.000Z","updated_at":"2024-12-30T17:42:11.000Z","dependencies_parsed_at":"2024-12-30T18:31:22.255Z","dependency_job_id":"47f61b99-6e02-4edb-b70b-26ae1cd1ecf9","html_url":"https://github.com/ozzies-code/ListTree","commit_stats":null,"previous_names":["ozzies-code/listtree"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ozzies-code/ListTree","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FListTree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FListTree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FListTree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FListTree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozzies-code","download_url":"https://codeload.github.com/ozzies-code/ListTree/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FListTree/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279019058,"owners_count":26086512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-21T12:13:10.645Z","updated_at":"2025-10-14T11:09:05.679Z","avatar_url":"https://github.com/ozzies-code.png","language":"Visual Basic .NET","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ListTree\n\n Este proyecto se basa en el uso de listas y arboles para mostrar diferentes elementos y nodos\n de manera jerarquica y de forma indexada, lo que permite manejarlos a traves de diferentes \n metodos como agregar, mostrar, elminar o limpiar toda la lista y el arbol de nodos.\n\n # Actualizacion: 30/12/2024\n # Hora: 13:33\n\n Se agrego una actualizacion en la rama master para contar con la \n version actualizada del proyecto.\n\nDetalles Tecnicos del Proyecto:\nLenguaje: Visual Basic.NET\nVersion del Framawork: 4.7.2\n\nThis project is based on the use of lists and trees to display different elements and nodes\nin a hierarchical and indexed manner, which allows them to be handled through different\nmethods such as adding, showing, deleting or clearing the entire list and node tree.\n\n# Update: 12/30/2024\n# Time: 1:33 PM\n\nAn update was added to the master branch to have the updated\nversion of the project.\n\nTechnical Details of the Project:\nLanguage: Visual Basic.NET\nFramework Version: 4.7.2\n\n![imagen](https://github.com/user-attachments/assets/e2c904d8-b20e-4c81-a49f-4fe13a7578bb)\n\nCode of the Project:\n\n    Public Class frmListTree\n\n    Private Sub frmListTree_Load(sender As Object, e As EventArgs) Handles MyBase.Load\n\n        'lstMiListView.Items.Add(\"Miguel Cano\")\n        'lstMiListView.Items.Add(\"Manuel Soto\", 0)\n        'Se agregan elementos de la lista al cargarse el programa\n        Dim objElementoLista As ListViewItem\n        objElementoLista = lstMiListView.Items.Add(\"Miguel Huertas\", 2)\n        objElementoLista.SubItems.Add(\"Valencia\")\n\n\n    End Sub\n\n    Private Sub btnMostrar_Click(sender As Object, e As EventArgs) Handles btnMostrar.Click\n        If lstMiListView.SelectedItems.Count \u003e 0 Then\n            MessageBox.Show(lstMiListView.SelectedItems(0).Text)\n            'Muestra los elementos seleccionados de la lista\n        End If\n    End Sub\n\n    Private Sub btnQuitar_Click(sender As Object, e As EventArgs) Handles btnQuitar.Click\n        lstMiListView.Items.Remove(lstMiListView.SelectedItems(0))\n        'Elimina elementos de la lista\n    End Sub\n\n    Private Sub btnLimpiar_Click(sender As Object, e As EventArgs) Handles btnLimpiar.Click\n        lstMiListView.Items.Clear()\n        'limpia la lista\n    End Sub\n\n    Private Sub btnAgregarNodo_Click(sender As Object, e As EventArgs) Handles btnAgregarNodo.Click\n        tvwLenguajes.Nodes.Add(\"Jaime\")\n        tvwLenguajes.Nodes.Add(\"Visual Basic\")\n        'Agrega un nodo Padre\n    End Sub\n\n    Private Sub btnNodoHijo_Click(sender As Object, e As EventArgs) Handles btnNodoHijo.Click\n\n        Dim objNodo As TreeNode\n        objNodo = tvwLenguajes.Nodes.Add(\"Jaime\")\n        objNodo.Nodes.Add(\"Visual Basic\")\n        'Agrega un nodo hijo\n    End Sub\n\n    Private Sub btnEliminarNodo_Click(sender As Object, e As EventArgs) Handles btnEliminarNodo.Click\n        tvwLenguajes.Nodes.Remove(tvwLenguajes.SelectedNode)\n\n        'Elimina el nodo seleccionado\n\n        'If Not (tvwLenguajes.SelectedNode Is Nothing) Then\n        'tvwLenguajes.Nodes.Remove(tvwLenguajes.SelectedNode)\n        'End If\n    End Sub\n\n    Private Sub BtnEliminarNodos_Click(sender As Object, e As EventArgs) Handles BtnEliminarNodos.Click\n        tvwLenguajes.Nodes.Clear()\n        'limpia todos los nodos\n    End Sub\nEnd Class\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Flisttree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozzies-code%2Flisttree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Flisttree/lists"}