Ok, I have a Question, I am trying to print something, that uses the font "Terminal" and ascii, but when I print it, it don't print out correctly,
can anyone help me out
Code:
    Printer.Font = "Terminal"
    Debug.Print txtNfo.Font
    Printer.FontSize = 24
    Printer.FontBold = True
    Printer.ForeColor = vbBlue
    'Printer.Print Tab((Len("My Title") - 80) / 2); "My Title" 'Center the title and print in bold blue text
    'Printer.Print String(80, "-")
    Printer.FontSize = 12
    Printer.FontBold = False
    Printer.ForeColor = vbBlack
    Printer.Print txtNfo.Text
    Printer.EndDoc 'Send to print spooler for printing.