Fax Console Outbox queue

  • Thread starter Thread starter Zed Gorski
  • Start date Start date
Z

Zed Gorski

Hi All,

How using VBA can I read the content of the Outbox queue in Fax Console

Thanks

Zed
 
Please try this:

Dim tempServer As New FAXCOMLib.FaxServer
Dim stLocSrv As String
stLocSrv = GetLocalServerName()
tempServer.Connect (stLocSrv)
Dim tempJobs As Object
Set tempJobs = tempServer.GetJobs
Dim tempObj As Object
Set tempObj = tempJobs.Item(1)

Also, you can have a look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy_2n1q.asp?frame=true
for related information.
--
Arindam Basak
Microsoft Printing, Imaging and Fax Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Please do not send email directly to this alias.This alias is for newsgroup
purposes only.
 
Back
Top