I am using the following code to send a fax via VFP:
lo_f = createobject("faxserver.faxserver")
lo_f.connect("")
lo_d = lo_f.createdocument(ofile)
lo_d.faxnumber = alltrim(g_fax)
lo_d.send
lo_f.disconnect
release lo_f
However, as soon as this code executes, the modem starts dialing the phone
# without checking if there is dialtone or if the line is being used. I
have checked my modem properties to make sure the item 'Wait for dialtone
before dialing' is checked. Is there any other way to make sure that the
program checks for an "available" line before dialing?
Thanks
Zoom