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 XPO
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
118 Views
no comments
 
C#
namespace Nowcom.Quicksilver
{
  public interface IMessage
  {
  }
}
 
namespace Nowcom.Quicksilver
{
    using System.ComponentModel.Composition;
595 Views
no comments
 
<PersistentAlias("Iif(ApprovedBy != null AND ApprovedBy > 0, True, False)")> _
Public Property IsApproved() As Boolean
    Get
        Return Convert.ToBoolean(EvaluateAlias("IsApproved"))
    End Get
    Set(ByVal Approve As Boolean)
        If IsReady() Then
            If Approve Then
                ApprovedOn = Base.BMSRemote.GetServerDate
                ApprovedBy = Base.CurrentUser(Session)
by AussieALF   March 18, 2010 @ 4:16am
198 Views
no comments
 
'Form1.vb
#Region " Import Declaratives "
 
Imports DevExpress.XtraEditors
Imports DevExpress.Utils.Menu
Imports System.IO
Imports System.Xml.Serialization
 
#End Region
by Thom Lamb   February 11, 2010 @ 6:53am
2276 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
933 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