Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 30th, 2012  |  syntax: None  |  size: 0.61 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. XtraReports Not working in V11.2.8 Version
  2. private void simpleButton1_Click(object sender, EventArgs e)
  3.         {
  4.             Portfolio_XtraReport port = new Portfolio_XtraReport();
  5.             string custID = textEdit1.Text.ToString();
  6.             port.Portfolio(custID);
  7.             port.ShowPreview();
  8.         }
  9.        
  10. public Portfolio_XtraReport()
  11.         {
  12.             Portfolio("N");
  13.         }
  14.         public void Portfolio(string custId)
  15.         {
  16.             if (custId != "N")
  17.             {
  18.                 InitializeComponent();
  19.                 sP_PORTFOLIOTableAdapter.GetData(custId);
  20.  
  21.             }
  22.         }