reporting issue in c# application
-
hello i working on my assignment for win form app. there are 2 tables related. and now final part is to create crystal report i have created one report showing bill details it works fine there is no issure. now i want to display amounnt in words so i have created one class and to convert number to words and again it's working fine but i am not storing this amount in words in sql database. so in reporting how can i convert this amount in number into words? is there any way to call my numbertoword class into crystal report? or is there any tool in crystal report to do this? this is my code for loading crystal report
public partial class InvoiceBill : Form { public InvoiceBill() { InitializeComponent(); } public GenerateInvoice invRpt = new GenerateInvoice(); private void InvoiceBill\_Load(object sender, EventArgs e) { sqlDataAdapter1.Fill(invoiceDS1 , "BillDetail"); crystalReportViewer1.ReportSource = invRpt; invRpt.SetDataSource(invoiceDS1); }
waiting for your kind help
-
hello i working on my assignment for win form app. there are 2 tables related. and now final part is to create crystal report i have created one report showing bill details it works fine there is no issure. now i want to display amounnt in words so i have created one class and to convert number to words and again it's working fine but i am not storing this amount in words in sql database. so in reporting how can i convert this amount in number into words? is there any way to call my numbertoword class into crystal report? or is there any tool in crystal report to do this? this is my code for loading crystal report
public partial class InvoiceBill : Form { public InvoiceBill() { InitializeComponent(); } public GenerateInvoice invRpt = new GenerateInvoice(); private void InvoiceBill\_Load(object sender, EventArgs e) { sqlDataAdapter1.Fill(invoiceDS1 , "BillDetail"); crystalReportViewer1.ReportSource = invRpt; invRpt.SetDataSource(invoiceDS1); }
waiting for your kind help