Group:  Microsoft Outlook ยป microsoft.public.outlook.fax
Thread: Error: 800710DB received for ConnectedSubmit

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

Error: 800710DB received for ConnectedSubmit
"rs250" <rippleshah[ at ]msn.com> 21.06.2006 17:39:25
I receive error: 800710D8 when trying to fax through VB. After
searching the error
on Google, I found out that the error means that the fax printer isn't
installed on the client machine.

The network fax that is installed on my PC (Win XP Pro SP2) is the fax
modem on the server. The fax icon in "Printers and Faxes" is a MS
Shared Fax Driver and clicking on opens up Fax Console. So I should be

able to send a fax through the vb code and that fax should appear in
the Fax Console.

If I have a MS Fax Shared Driver installed then why the error?

Here is the code:

Dim objFaxServer As FAXCOMEXLib.FaxServer
Dim objFaxDocument As FAXCOMEXLib.FaxDocument
Dim objFaxDevice As FAXCOMEXLib.FaxDevice
Dim jobid As Variant

On Error GoTo Error_Handler

Set objFaxServer = New FAXCOMEXLib.FaxServer
Set objFaxDocument = New FAXCOMEXLib.FaxDocument
objFaxServer.Connect "svrimage.centurysd.com"
Set objFaxDevice = objFaxServer.GetDevices.Item(3)
objFaxDevice.SendEnabled = True 'Not sure if I need this proprety
objFaxDevice.Save 'Not sure if I need this proprety
objFaxDocument.Body = "C:Test.txt"
objFaxDocument.Recipients.Add "fax #", "Test"
jobid = objFaxDocument.ConnectedSubmit(objFaxServer)
MsgBox "The jobid is " & jobid
Set objFaxServer = Nothing
Set objFaxDocument = Nothing
Set objFaxDevice = Nothing

Error_Handler:

MsgBox "Error number: " & Hex(Err.Number) & ", " & Err.Description

Thanks.

Re: Error: 800710DB received for ConnectedSubmit
"Russ Valentine [MVP-Outlook]" <russval[ at ]gmail.com> 21.06.2006 19:48:51
You'll find these non-Outlook issues addressed in m.p.o.win2000.fax
--
Russ Valentine
[MVP-Outlook]
"rs250" <rippleshah[ at ]msn.com> wrote in message
news:1150911565.285567.186940[ at ]y41g2000cwy.googlegroups.com...
[Quoted Text]
>I receive error: 800710D8 when trying to fax through VB. After
> searching the error
> on Google, I found out that the error means that the fax printer isn't
> installed on the client machine.
>
> The network fax that is installed on my PC (Win XP Pro SP2) is the fax
> modem on the server. The fax icon in "Printers and Faxes" is a MS
> Shared Fax Driver and clicking on opens up Fax Console. So I should be
>
> able to send a fax through the vb code and that fax should appear in
> the Fax Console.
>
> If I have a MS Fax Shared Driver installed then why the error?
>
> Here is the code:
>
> Dim objFaxServer As FAXCOMEXLib.FaxServer
> Dim objFaxDocument As FAXCOMEXLib.FaxDocument
> Dim objFaxDevice As FAXCOMEXLib.FaxDevice
> Dim jobid As Variant
>
> On Error GoTo Error_Handler
>
> Set objFaxServer = New FAXCOMEXLib.FaxServer
> Set objFaxDocument = New FAXCOMEXLib.FaxDocument
> objFaxServer.Connect "svrimage.centurysd.com"
> Set objFaxDevice = objFaxServer.GetDevices.Item(3)
> objFaxDevice.SendEnabled = True 'Not sure if I need this proprety
> objFaxDevice.Save 'Not sure if I need this proprety
> objFaxDocument.Body = "C:Test.txt"
> objFaxDocument.Recipients.Add "fax #", "Test"
> jobid = objFaxDocument.ConnectedSubmit(objFaxServer)
> MsgBox "The jobid is " & jobid
> Set objFaxServer = Nothing
> Set objFaxDocument = Nothing
> Set objFaxDevice = Nothing
>
> Error_Handler:
>
> MsgBox "Error number: " & Hex(Err.Number) & ", " & Err.Description
>
> Thanks.
>


Re: Error: 800710DB received for ConnectedSubmit
"rs250" <rippleshah[ at ]msn.com> 23.06.2006 12:14:05
The question I have hasn't been addressed. If I send a message
directly to someone, will the reply be sent to the forum or my e-mail
address? For example, in the "To:" section if I click on the radio btn
Russ Valentine, will your reply be sent to a forum or my e-mail
address?

Thanks!

Russ Valentine [MVP-Outlook] wrote:
[Quoted Text]
> You'll find these non-Outlook issues addressed in m.p.o.win2000.fax
> --
> Russ Valentine
> [MVP-Outlook]
> "rs250" <rippleshah[ at ]msn.com> wrote in message
> news:1150911565.285567.186940[ at ]y41g2000cwy.googlegroups.com...
> >I receive error: 800710D8 when trying to fax through VB. After
> > searching the error
> > on Google, I found out that the error means that the fax printer isn't
> > installed on the client machine.
> >
> > The network fax that is installed on my PC (Win XP Pro SP2) is the fax
> > modem on the server. The fax icon in "Printers and Faxes" is a MS
> > Shared Fax Driver and clicking on opens up Fax Console. So I should be
> >
> > able to send a fax through the vb code and that fax should appear in
> > the Fax Console.
> >
> > If I have a MS Fax Shared Driver installed then why the error?
> >
> > Here is the code:
> >
> > Dim objFaxServer As FAXCOMEXLib.FaxServer
> > Dim objFaxDocument As FAXCOMEXLib.FaxDocument
> > Dim objFaxDevice As FAXCOMEXLib.FaxDevice
> > Dim jobid As Variant
> >
> > On Error GoTo Error_Handler
> >
> > Set objFaxServer = New FAXCOMEXLib.FaxServer
> > Set objFaxDocument = New FAXCOMEXLib.FaxDocument
> > objFaxServer.Connect "svrimage.centurysd.com"
> > Set objFaxDevice = objFaxServer.GetDevices.Item(3)
> > objFaxDevice.SendEnabled = True 'Not sure if I need this proprety
> > objFaxDevice.Save 'Not sure if I need this proprety
> > objFaxDocument.Body = "C:Test.txt"
> > objFaxDocument.Recipients.Add "fax #", "Test"
> > jobid = objFaxDocument.ConnectedSubmit(objFaxServer)
> > MsgBox "The jobid is " & jobid
> > Set objFaxServer = Nothing
> > Set objFaxDocument = Nothing
> > Set objFaxDevice = Nothing
> >
> > Error_Handler:
> >
> > MsgBox "Error number: " & Hex(Err.Number) & ", " & Err.Description
> >
> > Thanks.
> >

Re: Error: 800710DB received for ConnectedSubmit
"Russ Valentine [MVP-Outlook]" <russval[ at ]gmail.com> 23.06.2006 21:15:28
Most likely there will be no reply. These are newgroups, not personal email
support. Most people post with invalid email addresses.
--
Russ Valentine
[MVP-Outlook]
"rs250" <rippleshah[ at ]msn.com> wrote in message
news:1151064845.351676.220960[ at ]m73g2000cwd.googlegroups.com...
[Quoted Text]
> The question I have hasn't been addressed. If I send a message
> directly to someone, will the reply be sent to the forum or my e-mail
> address? For example, in the "To:" section if I click on the radio btn
> Russ Valentine, will your reply be sent to a forum or my e-mail
> address?
>
> Thanks!
>
> Russ Valentine [MVP-Outlook] wrote:
>> You'll find these non-Outlook issues addressed in m.p.o.win2000.fax
>> --
>> Russ Valentine
>> [MVP-Outlook]
>> "rs250" <rippleshah[ at ]msn.com> wrote in message
>> news:1150911565.285567.186940[ at ]y41g2000cwy.googlegroups.com...
>> >I receive error: 800710D8 when trying to fax through VB. After
>> > searching the error
>> > on Google, I found out that the error means that the fax printer isn't
>> > installed on the client machine.
>> >
>> > The network fax that is installed on my PC (Win XP Pro SP2) is the fax
>> > modem on the server. The fax icon in "Printers and Faxes" is a MS
>> > Shared Fax Driver and clicking on opens up Fax Console. So I should be
>> >
>> > able to send a fax through the vb code and that fax should appear in
>> > the Fax Console.
>> >
>> > If I have a MS Fax Shared Driver installed then why the error?
>> >
>> > Here is the code:
>> >
>> > Dim objFaxServer As FAXCOMEXLib.FaxServer
>> > Dim objFaxDocument As FAXCOMEXLib.FaxDocument
>> > Dim objFaxDevice As FAXCOMEXLib.FaxDevice
>> > Dim jobid As Variant
>> >
>> > On Error GoTo Error_Handler
>> >
>> > Set objFaxServer = New FAXCOMEXLib.FaxServer
>> > Set objFaxDocument = New FAXCOMEXLib.FaxDocument
>> > objFaxServer.Connect "svrimage.centurysd.com"
>> > Set objFaxDevice = objFaxServer.GetDevices.Item(3)
>> > objFaxDevice.SendEnabled = True 'Not sure if I need this proprety
>> > objFaxDevice.Save 'Not sure if I need this proprety
>> > objFaxDocument.Body = "C:Test.txt"
>> > objFaxDocument.Recipients.Add "fax #", "Test"
>> > jobid = objFaxDocument.ConnectedSubmit(objFaxServer)
>> > MsgBox "The jobid is " & jobid
>> > Set objFaxServer = Nothing
>> > Set objFaxDocument = Nothing
>> > Set objFaxDevice = Nothing
>> >
>> > Error_Handler:
>> >
>> > MsgBox "Error number: " & Hex(Err.Number) & ", " & Err.Description
>> >
>> > Thanks.
>> >
>


Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net