Fax Console Outbox queue

Z

Zed Gorski

Hi All,

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

Thanks

Zed
 
A

Arindam Basak [MSFT]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top