{"id":24482238,"url":"https://github.com/ozzies-code/lockeyseven","last_synced_at":"2026-01-02T12:04:32.900Z","repository":{"id":270867831,"uuid":"911701256","full_name":"ozzies-code/LockeySeven","owner":"ozzies-code","description":"Proyecto que consiste en generar numeros aleatorios para hacer visible o no el cuadro de imagen del proyecto dependiendo de los resultados","archived":false,"fork":false,"pushed_at":"2025-01-03T16:46:15.000Z","size":82,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T12:13:05.419Z","etag":null,"topics":["events","invisibility","numbers","random"],"latest_commit_sha":null,"homepage":"https://github.com/ozzies-code/LockeySeven","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":"2025-01-03T16:33:09.000Z","updated_at":"2025-01-03T16:47:30.000Z","dependencies_parsed_at":"2025-01-03T17:32:51.288Z","dependency_job_id":"b32a7a28-3b51-4265-9eb9-95bcd7a19a53","html_url":"https://github.com/ozzies-code/LockeySeven","commit_stats":null,"previous_names":["ozzies-code/lockeyseven"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FLockeySeven","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FLockeySeven/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FLockeySeven/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FLockeySeven/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozzies-code","download_url":"https://codeload.github.com/ozzies-code/LockeySeven/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243633014,"owners_count":20322518,"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","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":["events","invisibility","numbers","random"],"created_at":"2025-01-21T12:13:11.106Z","updated_at":"2026-01-02T12:04:32.851Z","avatar_url":"https://github.com/ozzies-code.png","language":"Visual Basic .NET","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LockeySeven\n\n# Descripcion\n\n Este proyecto consiste en el desarrollo de una aplicacion que emplea\n la invisibilidad del objeto PictureBox del formulario siempre que \n al hacer click sobre el boton Spin la combinacion de numeros que \n apareceran a traves de las etiquetas que los contendran en un \n proceso Aletorio con la funcion Random() de como resultado que ninguno \n de los numeros que aparezcan en las etiquetas contenga al numero 7.\n Cuando el numero 7 aparezca, entonces la imagen del objeto PictureBox\n sera visible al usuario.\n \n # Actualizacion: 03/01/2025\n # Hora: 12:42\n\n Detalles técnicos del proyecto:\nIdioma: Visual Basic.NET\nVersión del framework: 4.7.2\n\n # LockeySeven\n\n# Description\n\nThis project consists of the development of an application that uses\nthe invisibility of the form's PictureBox object whenever\nclicking on the Spin button, the combination of numbers that\nwill appear through the labels that will contain them in a\nRandom process with the Random() function results in none of the\nnumbers that appear in the labels containing the number 7.\nWhen the number 7 appears, then the image of the PictureBox object\nwill be visible to the user.\n\n# Update: 01/03/2025\n# Time: 12:42\n\nTechnical Details of the Project:\nLanguage: Visual Basic.NET\nFramework Version: 4.7.2\n\n![imagen](https://github.com/user-attachments/assets/e224c1e8-71df-4a61-b2c2-1ac2662761f7)\n\nCode of the Project:\n\nImports System.Reflection.Emit\n\nPublic Class frmLockeySeven\n\n    Private Sub btnEnd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEnd.Click\n        End\n    End Sub\n\n    Private Sub btnSpin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSpin.Click\n        PictureBox1.Visible = False 'ocultar imagen\n        lblNum1.Text = CStr(Int(Rnd() * 10)) 'elegir números\n        lblNum2.Text = CStr(Int(Rnd() * 10))\n        lblNum3.Text = CStr(Int(Rnd() * 10))\n        'si algún número es 7 desplegar imagen y hacer un bip\n        If (lblNum1.Text = \"7\") Or (lblNum2.Text = \"7\") _\n    Or (lblNum3.Text = \"7\") Then\n            PictureBox1.Visible = True\n            Beep()\n        End If\n    End Sub\nEnd Class\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Flockeyseven","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozzies-code%2Flockeyseven","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Flockeyseven/lists"}