Wrox Programmer Forums
|
VS.NET 2002/2003 Discussions about the Visual Studio.NET programming environment, the 2002 (1.0) and 2003 (1.1). ** Please don't post code questions here ** For issues specific to a particular language in .NET, please see the other forum categories.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VS.NET 2002/2003 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 11th, 2004, 09:12 AM
Authorized User
 
Join Date: May 2004
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Default open print dialog

Anyone know how to call windows' print dialog?

Thank you

 
Old July 13th, 2004, 03:04 PM
Registered User
 
Join Date: Jul 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default

from where?

magnus



 
Old July 15th, 2004, 01:14 AM
Authorized User
 
Join Date: May 2004
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Default

from webform to call print setup in IE

 
Old July 22nd, 2004, 01:10 PM
Registered User
 
Join Date: Jul 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default

1. Copy and paste the following code in between the <HEAD> and </HEAD> tags of the document that you want printed:

<script>
<!--

function printpage() {
window.print();
}

//-->
</script>

2. Add the following to your <BODY> tag:
onload="printpage()"

So, your body tag should look something like this:

<body bgcolor="#FFFFFF" onload="printpage()">


3. Customize it to fit your needs.

Cheers



 
Old July 26th, 2004, 11:21 PM
Authorized User
 
Join Date: May 2004
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Default

oh

Thanks






Similar Threads
Thread Thread Starter Forum Replies Last Post
get the printer name chosen in print dialog deep_ocean Classic ASP Basics 0 March 14th, 2007 10:27 AM
Open Print Dialog Vision G Access 4 July 16th, 2006 02:41 AM
Print Dialog when Faxing rodmcleay General .NET 1 May 12th, 2006 07:59 AM
print the hidden page without the print dialog box kayzem Classic ASP Basics 0 April 21st, 2005 11:31 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.