You can use the 2 methode:
Code:
Dim oFont As StdFont
Set oFont = New StdFont
oFont.Name = "FixedSys"
oFont.Size = 10
Set Printer.Font = oFont
Or
Code:
Printer.FontName = "FixedSys"
Make sure that your font name is correctly type and that it's a valid font (It's present in the windows font folder)
Stéphane