Browse By Tags

  • Disable switching tabs on XamTabControl

    I am needing to disable switching tabs when a specific ViewModel type is opened inside a tab.

    I am sharing a dataconext between one ViewModel and the elements contained inside PrintSections on another viewmodel. This is causing the Print Tab to refresh…

  • How to setting PDF permissions to an exported Infragistics document report?

    Hello , I'm trying to export a report with Infragistics.Documents.Report , but I need to set pdf print,extract, save and copy permissions. How i can set off this permissions?

    Thanks in advance.

  • Sample implementation of IEmbeddedVisualPaginator

    I've been looking for a sample or reference implementation of IEmbeddedVisualPaginator, but no luck. Do you have one available somewhere?

  • Exporting a report

    When I export a report and set PageOrientation to Landscape

    it export in Portrait orientation

  • Is a page rendered for print after the paginator executes MoveToPosition?

    I've got the following code in an implementation of IEmbeddedVisualPaginator:

             public bool MoveToNextPage()
            {
                if (_reportSettings.PageRange.PageTo > 0 && _logicalPageNumber >= _reportSettings.PageRange.PageTo)
                    return false;

                IEnumerable…

  • System.Printing.PrintQueueException: PrintTicket provider failed to retrieve PrintCapabilities

    We're using the Report class to print the contents of a XamDataGrid, using a method within a subclass of XamDataGrid that basically looks like this:

    Report report1 = new Report();
    report1.Sections.Add(new EmbeddedVisualReportSection(this));
    report1…

  • ReportView problems

    Hi,

    When I generate a reportview, it is this way.

    But de next page is ok.


    Could someone help me. how to put the height and width fixeds?

     

    Thanks

  • How to Print XamDataGrid containing ListBox

    Hello,

    I am using XamDataGrid and try to print it using PrintReport.

    I create a report and add my grid within a EmbeddedVisualReportSection. Everything is ok excepted two columns which display listbox. Print generates ScrollBar and i don't want this…

  • Enable the end user to select orientation from DocumentViewer

    Hi,

    I am trying to use the XamReportPreview with the XamDataGrid, and the grid is shown correctly in the preview.

    But is it possible to enable the user to select the orientation of the report from the DocumentViewer?

    Like an extra statebutton?

     

  • automatically print a report created by the report exporter (asp.net)

    I'm looking for help with automatically printing the pdf that is created from my .igr when my web page runs. I use a combination of exporter and memorystream to write the pdf to a server folder. (see my previous forum post titled "Emailing a report created…

  • Multiple sections on one page

    I am trying to setup and print a Report that displays a Visual Element (Canvas with bitmap and some other graphical and text elements) and below it a data  grid (using a XamDataGrid).

    I need for both the Visual element and the data grid to print on the…

  • How to print and/or export an rtf formatted document?

    Is there any solution to print and/or export an rtf formatted document page by page?

  • ShowPrintDialog crashes when called from background thread even though thread is STA

    Here is the error.

    The calling thread cannot access this object because a different thread owns it.

    here is an example project.

    The LogIn window starts a new thread to load all the data and main gui and also hands updates to a splash screen. Everything…