Imprimer PDF à l'aide de VB.NET

Dim myWord As Microsoft.Office.Interop.Word.ApplicationClass
 'Start Word and open the document.
 myWord = CreateObject("Word.Application")
 myWord.Visible = True
 myWord.Documents.Open("C:\myWordDocument.docx")
Breakable Bug