Search results for query: *

  1. A

    Printdocument prints too many pages

    Help, I have a problem where PrintDocument is printing too many pages for no obvious reason Unfortunately the error is a bit difficult to reproduce. I have never been able to reproduce it during testing. It is ony when users are printing documents it will fail. Usually they print documents...
  2. A

    Question How to load Crystal Report from string name?

    I have a need for a method that receives a string (e.g. CrystalReport1) and returns a ReportClass instance of the report with the specified name. I decided to test if this could be done, but came up with nothing but exceptions the code I have is like this: ReportClass t = new ReportClass()...
  3. A

    Question Problems with user control and public properties

    Turns out removing Serializable fixes the problem :smug:
  4. A

    Question Problems with user control and public properties

    I'm currently trying to create a user control, where one of the properties is a list of an MenuItem class. Here's the code I have so far: private List<MenuItem> menuItems = new List<MenuItem>(); [Browsable(true)] public List<MenuItem> MenuItems { get...
Back
Top Bottom