Alex's Weblog

Weblog di Ermanno Goletto (Codename Alex - A Learning EXperience)
posts - 438, comments - 4214, trackbacks - 294

My Links

News

Il blog è stato
trasferito al
 seguente link:


DevAdmin Blog

Add my blog to Live

Foto

Curriculum Vitae


Il contenuto di questo blog e di ciascun post viene fornito “così come é”, senza garanzie, e non conferisce alcun diritto. Questo blog riporta il mio personale pensiero che non riflette necessariamente il pensiero del mio datore di lavoro.

Logo Creative Commons Deed


Logo MCTS

Logo MCSA

Logo MCP

Logo Microsoft Certified Business Management Solutions Professional

Microsoft Certified Business Management Solutions Specialist


Logo UGIdotNET UGIdotNET Contributor


Logo UGISS UGISS Contributor


Logo SysAdmin.it SysAdmin.it Staff


Article Categories

Archives

Post Categories

Blogs

Database

Development

Friends

IT

Knowledge Base

Links

MBS

MCP

MVP Sites

User Groups

Virtualization

Ricavare la porta di una stampante

Per ricavare la porta di una stampante in VS 2003 è possibile utilizzare WMI e in particolare la classe Win32_Printer :

Public Shared Function GetPrinterPortName(ByVal printerName As String) As String
     Dim portName As String = String.Empty
     Dim path As String = String.Format("Win32_Printer.DeviceID='{0}'", printerName)
     Dim p As New System.Management.ManagementObject(path)

     p.Get()
     portName = p("PortName").ToString()
     p.Dispose() : p =
Nothing

    Return portName
End Function

Per utilizzare il codice occcore aggiungere un reference a System.Management.

In VS 2005 non ho trovato funzionalità native per ricavare la porta della stampante anche se inizialmente era previsto un My.Computer.Printers come si può leggere nel seguente articolo http://msdn.microsoft.com/msdnmag/issues/04/05/VisualBasic2005/ ma nella versione definitiva pare non sia poi stato implementato chissà se conteneva una funzionalità per ricavare le porte delle stampati?

Print | posted on mercoledì 21 febbraio 2007 18:44 | Filed Under [ Links Code & Snippet .NET Framework .NET Framework 2.0 ]

Feedback

Gravatar

# re: Ricavare la porta di una stampante

Great write up, I like the questions you've posed. Bookmarked for sure!LED Car Lights
28/06/2011 11:31 | LED Car Lights
Gravatar

# re: Ricavare la porta di una stampante

I'm excitied for all the articles we are going to read! Spinning Top
20/07/2011 11:23 | Spinning Top
Gravatar

# check cashing Harrisburg

My business is a whole lot enthusiastic soon after examining your site. Your site can be quite considerably impressive and much a good choice for almost any marketplace together with intended for man or women! At this point follow-up check cashing Harrisburg Appreciate it intended for pleasant information.
29/09/2017 23:10 | Pervez
Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET