Hi, it's possible to print or send data (text data) to windows printer? Gianni
giannimaione Well-Known Member Licensed User Longtime User Jun 16, 2007 #1 Hi, it's possible to print or send data (text data) to windows printer? Gianni
Erel B4X founder Staff member Licensed User Longtime User Jun 16, 2007 #2 You can send the file to Notepad (or other application). Something like: file = "somefile.txt" Shell ("Notepad.exe","/p " & file) If the file path includes spaces you should add chr(34) before and after the file.
You can send the file to Notepad (or other application). Something like: file = "somefile.txt" Shell ("Notepad.exe","/p " & file) If the file path includes spaces you should add chr(34) before and after the file.