473,785 Members | 3,157 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VisibleClipBoun ds property

I've got some problems printing to a dot matrix printer.
After correctly setting all the charecteristics of my papersize in the
BeginPrint()...

private void pdLabelDoc_Begi nPrint(object sender,
System.Drawing. Printing.PrintE ventArgs e)
{
pdLabelDoc.Prin terSettings.Pri nterName = "Epson LX-300";

printFont = new Font("Arial", 10);
printFontR = new Font("Arial", 8);
printFontBC = new Font("IDAutomat ion.com Code39", 12,
FontStyle.Regul ar);
PaperSize etichette = new PaperSize("Etic hette", 285, 1200);
pdLabelDoc.Defa ultPageSettings .PaperSize = etichette;
Margins margins = new Margins(0,0,0,0 );
pdLabelDoc.Defa ultPageSettings .Margins = margins;
}

I call the PrintPage()...

private void pdLabelDoc_Prin tPage(object sender,
System.Drawing. Printing.PrintP ageEventArgs e)
{
int count = 0;
DataRow articolo;

float yPos = 0;
// My paperSize contains 8 articles. of each article I print
four lines...

// If I have a breakpoint here, paperSize and the other settings are
// correct. The only strange property is VisibleClipBoun ds, that is
// set at (0,0,285,1066)
// VisibleClipBoun ds is a read-only property (the online says it's a
// get-set...) and I don't know how to modify it

while (count < 32 && contaArticoliGe nerale <
listaArticoli.R ows.Count)
{
...
contaArticoliGe nerale++;
}

if (contaArticoliG enerale < listaArticoli.R ows.Count)
{
e.HasMorePages = true;
contaPagine++;
}
else
e.HasMorePages = false;
}
Any suggestion?

TIA

Nov 13 '05 #1
1 3565
No news?

On Wed, 25 Jun 2003 13:27:06 +0200, Francesco
<fr************ **@arcafondi.it > wrote:
I've got some problems printing to a dot matrix printer.
After correctly setting all the charecteristics of my papersize in the
BeginPrint().. .

private void pdLabelDoc_Begi nPrint(object sender,
System.Drawing .Printing.Print EventArgs e)
{
pdLabelDoc.Prin terSettings.Pri nterName = "Epson LX-300";

printFont = new Font("Arial", 10);
printFontR = new Font("Arial", 8);
printFontBC = new Font("IDAutomat ion.com Code39", 12,
FontStyle.Regu lar);
PaperSize etichette = new PaperSize("Etic hette", 285, 1200);
pdLabelDoc.Defa ultPageSettings .PaperSize = etichette;
Margins margins = new Margins(0,0,0,0 );
pdLabelDoc.Defa ultPageSettings .Margins = margins;
}

I call the PrintPage()...

private void pdLabelDoc_Prin tPage(object sender,
System.Drawing .Printing.Print PageEventArgs e)
{
int count = 0;
DataRow articolo;

float yPos = 0;
// My paperSize contains 8 articles. of each article I print
four lines...

// If I have a breakpoint here, paperSize and the other settings are
// correct. The only strange property is VisibleClipBoun ds, that is
// set at (0,0,285,1066)
// VisibleClipBoun ds is a read-only property (the online says it's a
// get-set...) and I don't know how to modify it

while (count < 32 && contaArticoliGe nerale <
listaArticoli. Rows.Count)
{
...
contaArticoliGe nerale++;
}

if (contaArticoliG enerale < listaArticoli.R ows.Count)
{
e.HasMorePages = true;
contaPagine++;
}
else
e.HasMorePages = false;
}
Any suggestion?

TIA


Nov 15 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
396
by: Brett | last post by:
I have a program that prints 2 different reports and I have 2 different printers (hp 9000, hp9050). The first report prints perfectly on both printers. The second only prints pefectly on the 9000. On the 9050, I only get a small square's worth in the upper left corner. I've narrowed the problem down to the VisibleClipBounds(VCB) property of the Graphic object I'm using to do the drawing. For some reason, on the second report the VCB...
3
2499
by: Johnny M | last post by:
using Access 2003 Pardon the subject line, but I don't have a better word for this strange behavior (or behavior I don't understand!!!) I have a class module named DepreciationFactor. One of the properties is a follows (irrelevant code omitted):
7
2615
by: MP | last post by:
Hello, I am trying to write a class that will expose some properties. One of the property is extracted from a SQL database and can be NULL or some integer value. Is there a elegant way of implementing this in C# ? I do not want to use variant (or similar types) because I want to retain a strnong types property. Will I have no choices but to add another property that would set/get the NULL value?
3
5154
by: MattC | last post by:
Hi, I found this code somewhere on the net and need to make some alterations. public class GenericSorter : IComparer { String sortProperty; bool sortOrder; public GenericSorter(String sortBy, bool asc) {
2
1762
by: Edward Diener | last post by:
How does one specify in a component that a property is a pointer to another component ? How is this different from a property that is actually an embedded component ? Finally how is one notified in a component when another component is destroyed ? I have a managed component called P. Let us say that C is another managed component. If on P I have: __property C * get_CComp(); __property void set_CComp(C *);
0
5569
by: Brian Young | last post by:
Hi all. I'm using the Property Grid control in a control to manage a windows service we have developed here. The windows service runs a set of other jobs that need to be managed. The control is used to view the state of the running jobs and schedule new jobs. The control also runs in the context of Internet Explorer (we do this so the administrators of the jobs can always receive the latest control). The property grid is used to...
15
2049
by: Lauren Wilson | last post by:
Owning your ideas: An essential tool for freedom By Daniel Son Thinking about going into business? Have an idea that you think will change the world? What if you were told that there was no way you could prevent someone from stealing your idea and exploiting it to make a profit? What incentive would there be for you to be innovative, creative and ambitious if you couldn’t be sure that your ideas would be protected? Enter intellectual...
1
1356
by: cday119 | last post by:
I have a Class with about 10 properties. All properties return right except for one. It is real annoying and I can't see why its not working. Maybe someone else can see something. It is the NumberLines property. I can set it to 4 but when it returns it is set to 1 Public Class Profile Private ProfileFileName As String Private ProfileDescription As String Private ProfileVersion As Integer Private...
1
3139
by: ata | last post by:
Hi, Consider a custom control, say, MyControl that's being derived from Control. 1. How am I supposed to set the initial size of MyControl? Am I supposed to override the DefaultSize property? 2. If so, the VisibleClipBounds of the control is not actually what I've asked in the DefaultSize property, if the BorderStyle of MyControl is set to FixedSingle or Fixed3D. i.e., if the DefaultSize
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10325
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10148
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3646
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.