大家谁知道如何用计算机来接收传真啊?对方用传真机或电脑发传真。我用计算机接收(100分)

  • 主题发起人 主题发起人 ninidonghj
  • 开始时间 开始时间
N

ninidonghj

Unregistered / Unconfirmed
GUEST, unregistred user!
大家谁知道如何用计算机来接收传真啊?对方用传真机或电脑发传真。我用计算机接收
 
你是用MODEM上的吗?如果是,我有个软件(13M),需要的话发给你。宽带的我没有,你得自己找了
 
有现成的软件
 
wjhx,请你把你的那个软件发给我吧,是你编的吗?我现在主要是想也做一个这样的软件,用于接收传真。我的QQ:115398(会员),可以用QQ传给我。呵。
 
win2000自带
 
我不是需要这种软件,我是需要编程实现这个功能的资料,相关API说明和思路,请在家多多帮忙。
 
有现成的您就将就着用吧
好象是什么winfax,记不清了以前用过
感觉挺好用的 还有汉化包呢 呵呵
 
2000和xp都有自带的.
 
我前两天刚在书店看到这种书卖,书名记不太清了。好象什么串口通信编程之类的,你可以去找找。我记得里面说得挺细的,示例也挺说细的。
 
winfax我就用這東東,網上大把拉,還是免費的
 
用Symantec WinFax, 要编程可嵌入。
 
Automating WinFax
I know nothing about WinFax. However, Neil Frewer has kindly provided some sample code, using variants. Thanks, Neil!

// OLE EXAMPLE CODE FOR WINFAX
// -----------------------------------------

Result := 0;
try
oWinFax := CreateOleObject('WinFax.SDKSend');
except
ShowMessage('Could not create a WinFax.SDKSend API object');
Result := 1;
bFail := TRUE;
Exit;
end;

oWinFax.LeaveRunning;
if oWinFax.AddAttachmentFile('') = 1 then
ShowMessage('Could not add file');
if oWinFax.SetPrintFromApp(1) = 1 then
ShowMessage('Failed Set print');
oWinFax.SetTo(Details^.FaxRecipientName);

{Set the fax details in winfax}
if oWinFax.SetNumber(Details^.FaxNumber) = 1 then
ShowMessage('Could not set number');
if oWinFax.SetAreaCode('') = 1 then
ShowMessage('Could set area code');

if oWinFax.AddRecipient = 1 then
ShowMessage('Could not add fax recipient');
if oWinFax.SetPreviewFax(0) = 1 then
ShowMessage('Could not set preview');
if oWinFax.SetUseCover(0) = 1 then
ShowMessage('Could not set use cover');
if oWinFax.SetResolution(0) = 1 then
ShowMessage('Could not set resolution');
oWinFax.Send(0);

{ Wait for the fax program to get ready }
while oWinFax.IsReadyToPrint = 0 do;

Sleep(100)
{Need this to allow winfax to run. Without this
there will be times when winfax will ask for the fax
number to call}

{Wait for an ID from win fax}
if not bFail then oWinFax.Done;

 
给你一个网址
http://www.djpate.freeserve.co.uk/WinFax.htm
http://www.djpate.freeserve.co.uk/Index.htm
 
我现在也在搞这个,大家一起努力呀
 
多人接受答案了。
 

Similar threads

回复
0
查看
864
不得闲
D
回复
0
查看
1K
DelphiTeacher的专栏
D
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部