https://github.com/ozzies-code/triviamusical2
Proyecto de Visual Basic que muestra como programar la visibilidad de los objetos
https://github.com/ozzies-code/triviamusical2
Last synced: 5 months ago
JSON representation
Proyecto de Visual Basic que muestra como programar la visibilidad de los objetos
- Host: GitHub
- URL: https://github.com/ozzies-code/triviamusical2
- Owner: ozzies-code
- Created: 2025-01-03T14:37:03.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-03T14:56:40.000Z (over 1 year ago)
- Last Synced: 2025-06-29T15:40:01.009Z (12 months ago)
- Language: Visual Basic .NET
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TriviaMusical
# Descripcion
Este proyecto consiste en el desarrollo de una aplicacion que emplea
la invisibilidad de los objetos del formulario a traves de las
propiedades de la etiqueta: label.Visible = False y caambia el valor
de la propiedad a traves del codigo cuando ocurre el evento Click
sobre el Boton Responder.
# Actualizacion: 03/01/2025
# Hora: 10:53
Detalles técnicos del proyecto:
Idioma: Visual Basic.NET
Versión del framework: 4.7.2
# MusicalTrivia
# Description
This project consists of the development of an application that uses
the invisibility of the form objects through the
label properties: label.Visible = False and changes the value
of the property through the code when the Click event occurs
on the Reply Button.
# Update: 01/03/2025
# Time: 10:53
Technical Details of the Project:
Language: Visual Basic.NET
Framework Version: 4.7.2

Code of the Project:
Imports System.Reflection.Emit
Public Class frmTriviaMusical
Private Sub btnResponder_Click(sender As Object, e As EventArgs) Handles btnResponder.Click
lblBajo.Visible = True
bbTriviaM.Visible = True
End Sub
Private Sub btnSalir_Click(sender As Object, e As EventArgs) Handles btnSalir.Click
End
End Sub
End Class