Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 11,528 times

Related Categories

Check if Printer is Installed

santhoshn

This function will return true if system as got printer installed.

Public Function PrinterInstalled() As Boolean
   On Error Resume Next
 
   Dim strDummy As String
   strDummy = Printer.DeviceName
   
   If err.Number Then
       PrinterInstalled = False
   Else
       PrinterInstalled = True
   End If
 
End Function

Comments