This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Tuesday, October 31, 2006 6:06:48 AM(UTC)
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! :)
#2
Posted
:
Wednesday, November 1, 2006 7:11:11 AM(UTC)
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.