惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
人人都是产品经理
人人都是产品经理
美团技术团队
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
博客园 - 【当耐特】
V
V2EX
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
量子位
罗磊的独立博客
月光博客
月光博客
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
博客园_首页
P
Proofpoint News Feed
Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
腾讯CDC

博客园 - 阮

Database access assembly build program. - 阮 Remoting: Server encountered an internal error. - 阮 昨天忽然发现被加到training团队中了,遂来发一篇。 利用Brush修改图片,并写入Response一例(网上BBS中贴可变文字图片的例子)。 Avalon 与 3D。 关于QQ的临时消息 Google Search for dot net nuke. 初识 Avalon VRML Merry Chirstmas. 继续昨天的问题。 What's wrong? 构建安全的 ASP.NET 应用程序。(转) 检测Win Form Datagrid点击cell值的代码,from msdn。 Google search for DNN 终于写完了。 DataGrid不能绑定Field? 试了试Dot Net Nuke还真爽。 取得天气的WEB地址,weather.com 终于,从System.Windows.Forms.Control继承了一下。
通过程序控制Windows传真发送。
· 2005-01-18 · via 博客园 - 阮

///////////////////////////////////////
//
    Title:    Fax send sample code
//
    Date:     2005-1-18
//
    Author:   runmin@tom.com
//
/////////////////////////////////////

//    Get the fax server
var faxServer = new ActiveXObject("FAXCOMEX.FaxServer");

faxServer.Connect(
"");

//    Create a fax document
var doc = new ActiveXObject("FAXCOMEX.FaxDocument");

//    Specify a content file, any printable file.
doc.Body = "C:\\Program Files\\Kingsoft\\Powerword 2003\\Tips.txt";

doc.DocumentName 
= "Fax Test Sample";

//    Recipients
doc.Recipients.Add("820")    //    to fax number here

//    Sender properties
doc.Sender.Name = "mruan"

doc.Sender.FaxNumber 
= "806"    //    from fax number here

//    Send the fax doc
doc.ConnectedSubmit(faxServer)