how to fax a txt file?
-
-
Hi, I'm a intermediate java programmer and i just started learning C#.I would like to write an application that takes a txt file and send it to a fax machine. What is the best way I can do this? Thanks in advance ,any help would be gladly appreciated
wrote:
I'm a intermediate java programmer and i just started learning C#
As a former Java developer myself, welcome to the wonderful world of C#. :) Regarding your question, have you looked at any of the articles on this site? This article[^], for example, talks about how to fax an image. It shouldn't be too hard to figure out from there. Also note that all file-related APIs are nice and organized in System.IO namespace (a "namespace" is like Java's "package"). For example, to read all text from a file, you can simply go
System.IO.File.ReadAllText("theFile.txt");
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Check out this cutie The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
wrote:
I'm a intermediate java programmer and i just started learning C#
As a former Java developer myself, welcome to the wonderful world of C#. :) Regarding your question, have you looked at any of the articles on this site? This article[^], for example, talks about how to fax an image. It shouldn't be too hard to figure out from there. Also note that all file-related APIs are nice and organized in System.IO namespace (a "namespace" is like Java's "package"). For example, to read all text from a file, you can simply go
System.IO.File.ReadAllText("theFile.txt");
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Check out this cutie The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Hi, I'm a intermediate java programmer and i just started learning C#.I would like to write an application that takes a txt file and send it to a fax machine. What is the best way I can do this? Thanks in advance ,any help would be gladly appreciated
GEt a driver that faxes printed documents, and send it to the printer.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
-
wrote:
I'm a intermediate java programmer and i just started learning C#
As a former Java developer myself, welcome to the wonderful world of C#. :) Regarding your question, have you looked at any of the articles on this site? This article[^], for example, talks about how to fax an image. It shouldn't be too hard to figure out from there. Also note that all file-related APIs are nice and organized in System.IO namespace (a "namespace" is like Java's "package"). For example, to read all text from a file, you can simply go
System.IO.File.ReadAllText("theFile.txt");
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Check out this cutie The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
I get the following error when I try to send the fax. com object with clsid{d73733c8-cc80-11d0-b225-00c04fb6c2f5} is either not valid or not registered How do I reference to the faxcom lib?
Eddy, sounds like you'll need the FaxCom faxing object installed. (At least, that article uses that component.) Does this post[^] help?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Check out this cutie The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Eddy, sounds like you'll need the FaxCom faxing object installed. (At least, that article uses that component.) Does this post[^] help?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Check out this cutie The apostle Paul, modernly speaking: Epistles of Paul Judah Himango