From: Steven on 16 Feb 2005 07:43 I am using the VB Script below to send an XLS file to a fax number, the problem is there is no cover page or information to say where the fax is from, who it is for etc, so all the recipient recives is the XLS (Excel)file. Can multiple files be faxed so that I can specify a cover page file as well as the main file that I want to send? or is there a way of entering more code to the example below to create some kind of header to the fax? Set doc=CreateObject("FaxComEx.FaxDocument") Set server=CreateObject("FaxComEx.FaxServer") Dim JobID server.Connect "mhsmngbntsa14" doc.Body="MY XLS FILE" doc.DocumentName="Sample Fax" doc.Recipients.Add "FAX NUMBER" doc.Priority = 1 JobID = doc.ConnectedSubmit(server) Im not a VB programmer so any feedback will have to be in baby talk! Thanks.
From: Roland Hall on 16 Feb 2005 13:00 "Steven" <s_sainsbury(a)hotmail.com> wrote in message news:fa1efec5.0502160443.56237936(a)posting.google.com... :I am using the VB Script below to send an XLS file to a fax number, : the problem is there is no cover page or information to say where the : fax is from, who it is for etc, so all the recipient recives is the : XLS (Excel)file. : : Can multiple files be faxed so that I can specify a cover page file as : well as the main file that I want to send? or is there a way of : entering more code to the example below to create some kind of header : to the fax? : : Set doc=CreateObject("FaxComEx.FaxDocument") : Set server=CreateObject("FaxComEx.FaxServer") : Dim JobID : server.Connect "mhsmngbntsa14" : doc.Body="MY XLS FILE" : doc.DocumentName="Sample Fax" : doc.Recipients.Add "FAX NUMBER" : doc.Priority = 1 : JobID = doc.ConnectedSubmit(server) : : Im not a VB programmer so any feedback will have to be in baby talk! Gushy, gushy, goo... Windows 2000 http://support.microsoft.com/default.aspx?scid=kb;EN-US;227194 Windows XP http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q306550&LN=EN-US -- Roland Hall /* This information is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. */ Technet Script Center - http://www.microsoft.com/technet/scriptcenter/ WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp MSDN Library - http://msdn.microsoft.com/library/default.asp
|
Pages: 1 Prev: Writing REG_BINARY registry value Next: window.opener problem! |