https://github.com/ozzies-code/mivinculoweb
Aplicacion sencilla que conecta a Visual Basic con un vinculo web.
https://github.com/ozzies-code/mivinculoweb
visual-basic visual-studio weblink
Last synced: 2 months ago
JSON representation
Aplicacion sencilla que conecta a Visual Basic con un vinculo web.
- Host: GitHub
- URL: https://github.com/ozzies-code/mivinculoweb
- Owner: ozzies-code
- Created: 2025-01-04T02:56:59.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-01-04T03:06:07.000Z (5 months ago)
- Last Synced: 2025-01-21T12:13:05.056Z (4 months ago)
- Topics: visual-basic, visual-studio, weblink
- Language: Visual Basic .NET
- Homepage: https://github.com/ozzies-code/MiVinculoWeb/tree/master
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiVinculoWeb
# Descripcion
Este proyecto consiste en una aplicacion que le permite a Visual Basic
abrir un vinculo web a un sitio Online .
# Actualizacion: 03/01/2025
# Hora: 23:03Detalles técnicos del proyecto:
Idioma: Visual Basic.NET
Versión del framework: 4.7.2# MyWebLink
# Description
This project consists of an application that allows Visual Basic
to open a web link to an online site.# Update: 01/03/2025
# Time: 23:03Technical details of the project:
Language: Visual Basic.NET
Framework version: 4.7.2
Code of the Project:
Imports System.Diagnostics
Public Class Form1
Private Sub LinkLabel1_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
' Cambiar el color del vínculo al configurar LinkVisited como True
LinkLabel1.LinkVisited = True
' Usar el método Process.Start para abrir el explorador predeterminado
System.Diagnostics.Process.Start _
("http://www.mcgraw-hill.com.mx/Mexico/Default.htm")' Si el explorador predeterminado no es Internet Explorer, se puede abrir el sitio web en Internet Explorer
' System.Diagnostics.Process.Start("iexplore.exe", "http://www.mcgraw-hill.com.mx/Mexico/Default.htm")
End Sub
End Class