CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of export
Public Sub ExportToPDF(ByVal _PathFilePDF As String)
        Dim Report As New ReportDocument
        Report.Load(PathReport)
        Report.RecordSelectionFormula = RecordSelectionFormula
        Report.Refresh()
        Report.ExportToDisk(ExportFormatType.PortableDocFormat, _PathFilePDF)
    End Sub
by NelsonAmaya   April 30, 2011 @ 9:01am
116 Views
no comments
 
C#
namespace Nowcom.Quicksilver
{
  public interface IMessage
  {
  }
}
 
namespace Nowcom.Quicksilver
{
    using System.ComponentModel.Composition;
592 Views
no comments
 
C#
class Program
{
    static void Main(string[] args)
    {
        var instance = new Program();
        var cat = new AssemblyCatalog(typeof(Program).Assembly);
        var container = new CompositionContainer(cat);
        container.ComposeParts(instance);
 
        foreach (var plug in instance.Plugins)
by bnaya   January 29, 2010 @ 4:10am
927 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate