Tag Archives: bundle

Include PDF file in vbproj

       Add the pdf file in Resources 

        Dim pdf As Byte() = My.Resources.Help
        Using tmp As New FileStream("Help.pdf", FileMode.Create)
            tmp.Write(pdf, 0, pdf.Length)
        End Using
        Process.Start("Help.pdf")