Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Tuesday, October 31, 2006 6:06:48 AM(UTC)

HorusUK  
HorusUK

Groups: Registered
Posts: 2


Can someone help me?  I just need a basic VBScript example for calling ePrint to get me started.

Any help would be very much appreciated! :)
  
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Wednesday, November 1, 2006 7:11:11 AM(UTC)

GregR  
GregR

Groups: Registered, Tech Support, Administrators
Posts: 764


Printing to ePrint via code works the same for any language.  You need to open a file with its native viewer and print to an ePrint printer.  This is a simple webpage that converts a Word Document with ePrint.

<html>
<head>
</head>
<body>

<script type="text/vbscript">
document.write("Printing a word document with ePrint using VBScript")
dim myword
Set myword=CreateObject("Word.Application")
myword.Visible = true
myWord.ActivePrinter = "LEADTOOLS ePrint 5"
myWord.Documents.Open("c:\TESTFILE.doc")
myWord.PrintOut()
</script>

</body>
</html>
 
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.046 seconds.