PrintPreviewControl - How do I...?

T

Tim

Hi,

I want to use a PrintPreviewControl instead of the dialog which is too
restrictive. I have found a basic tutorial but I have lots of other
questions:

1. How do I implement next and previous buttons?
2. How do I change the cursor only when it is over the document?
3. How do I implement zoom buttons?
4. What about showing multiple pages per screen?

Thanks

Tim
 
G

Guest

1. How do I implement next and previous buttons?

Increment and decrement the controls StartPage property to specify the page
you want any page group to start with (or single page if that is all you have
shown at a time).

2. How do I change the cursor only when it is over the document?

I do not know how to set the cursor to a different image when it is just
over the document, however you can set the cursor to change to something else
when it is over the control by setting the controls Cursor property to a
different cursor, such as those found within System.Windows.Forms.Cursor.

3. How do I implement zoom buttons?

Increment and decrement the controls Zoom property.

4. What about showing multiple pages per screen?

Set the Rows and Columns properties to specify how many pages you want in a
given grid area at a time.

Brendan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top