TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sandhya Chandrasekharan
NA
10
29.1k
print html from service
Oct 1 2010 7:24 AM
We have a requirement to print html text from a service. We have used InternetExplorerClass [ExecWB(OLECMDID.OLECMDID_PRINT, OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER, ref missing, ref missing)] . The code prints the html file when in a windows application. But in a service, it is printed to the document writer instead of the printer. Are there any settings/permissions to be given when it is run as a service?
InternetExplorer
ie =
new
InternetExplorerClass
();
ie.DocumentComplete +=
new
DWebBrowserEvents2_DocumentCompleteEventHandler
(ie_DocumentComplete);
ie.PrintTemplateTeardown +=
new
DWebBrowserEvents2_PrintTemplateTeardownEventHandler
(ie_PrintTemplateTeardown);
object
missing =
Missing
.Value;
ie.Navigate(htmlFilename,
ref
missing,
ref
missing,
ref
missing,
ref
missing);
while
(!documentLoaded && ie.QueryStatusWB(
OLECMDID
.OLECMDID_PRINT) !=
OLECMDF
.OLECMDF_ENABLED)
Thread
.Sleep(100);
ie.ExecWB(
OLECMDID
.OLECMDID_PRINT,
OLECMDEXECOPT
.OLECMDEXECOPT_DONTPROMPTUSER,
ref
missing,
ref
missing);
while
(!documentPrinted)
Thread
.Sleep(100);
ie.DocumentComplete -= ie_DocumentComplete;
ie.PrintTemplateTeardown -= ie_PrintTemplateTeardown;
ie.Quit() ;
Reply
Answers (
7
)
Use CommandLine for Calculate
Need help with checkboxlist to database