I do not see a reason of not working on Win2000.
Because there are no errors, I will try to:
- see if there are some special printer setting on that machine
- see GDI+ library and .NET framework installation on that machine by inspecting the code in:
// OnStartPage()
public virtual Graphics OnStartPage( PrintDocument doc, PrintPageEventArgs pev)
{
// analyze the doc object
//analyze the pev, pev.Graphics object
}
or when:
//PrintPage event is raised for each page to be printed.
private void MyDocument_PrintPage(object sender, PrintPageEventArgs pev)
{
// analyze pev, pev.Graphics objects
}
-obislavu-