Files
tsUtilidades/Sistema.vb
2025-05-29 17:58:18 +02:00

9 lines
244 B
VB.net

Public Class Sistema
Public Shared Sub EjecutaFichero(Fichero As String)
Dim p As New Process
p.StartInfo = New ProcessStartInfo(Fichero)
p.StartInfo.UseShellExecute = True
p.Start()
End Sub
End Class