Private Sub Catálogo_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim archivo As String
archivo = "Q:\Peg\Catalogo\Catalogo.pdf"
Try
PDFLoad.LoadFile(archivo)
Catch er As Exception
MsgBox(er.Message.ToString, MsgBoxStyle.Information, "Información")
End Try
End Sub
Private Sub ButDownloadPdf_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim catalogo As New Catálogo()
catalogo.WindowState = FormWindowState.Normal
catalogo.Show()
End Sub