Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
AnswerRe: ObjectPolicy Pin
Eddy Vluggen13-Sep-10 10:43
professionalEddy Vluggen13-Sep-10 10:43 
GeneralRe: ObjectPolicy Pin
hove8213-Sep-10 10:56
hove8213-Sep-10 10:56 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen13-Sep-10 11:36
professionalEddy Vluggen13-Sep-10 11:36 
GeneralRe: ObjectPolicy Pin
PIEBALDconsult13-Sep-10 14:43
mvePIEBALDconsult13-Sep-10 14:43 
GeneralRe: ObjectPolicy [modified] Pin
hove8213-Sep-10 19:54
hove8213-Sep-10 19:54 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen14-Sep-10 7:52
professionalEddy Vluggen14-Sep-10 7:52 
GeneralRe: ObjectPolicy Pin
hove8214-Sep-10 8:09
hove8214-Sep-10 8:09 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen14-Sep-10 8:58
professionalEddy Vluggen14-Sep-10 8:58 
GeneralRe: ObjectPolicy Pin
hove8214-Sep-10 9:13
hove8214-Sep-10 9:13 
AnswerRe: ObjectPolicy Pin
Pete O'Hanlon13-Sep-10 10:45
mvePete O'Hanlon13-Sep-10 10:45 
GeneralRe: ObjectPolicy Pin
hove8213-Sep-10 10:59
hove8213-Sep-10 10:59 
QuestionGet only modified data at form exit Pin
manchukuo13-Sep-10 8:30
manchukuo13-Sep-10 8:30 
AnswerRe: Get only modified data at form exit Pin
Henry Minute13-Sep-10 9:52
Henry Minute13-Sep-10 9:52 
GeneralRe: Get only modified data at form exit Pin
Luc Pattyn13-Sep-10 10:31
sitebuilderLuc Pattyn13-Sep-10 10:31 
GeneralRe: Get only modified data at form exit Pin
Henry Minute13-Sep-10 12:32
Henry Minute13-Sep-10 12:32 
GeneralRe: Get only modified data at form exit Pin
Luc Pattyn13-Sep-10 13:10
sitebuilderLuc Pattyn13-Sep-10 13:10 
AnswerRe: Get only modified data at form exit Pin
Dave Kreskowiak13-Sep-10 10:21
mveDave Kreskowiak13-Sep-10 10:21 
GeneralRe: Get only modified data at form exit Pin
manchukuo13-Sep-10 10:51
manchukuo13-Sep-10 10:51 
AnswerRe: Get only modified data at form exit Pin
AspDotNetDev13-Sep-10 11:27
protectorAspDotNetDev13-Sep-10 11:27 
GeneralRe: Get only modified data at form exit Pin
manchukuo13-Sep-10 11:41
manchukuo13-Sep-10 11:41 
Questionreporting issue in c# application Pin
bapu288913-Sep-10 8:12
bapu288913-Sep-10 8:12 
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
AnswerRe: reporting issue in c# application Pin
bapu288913-Sep-10 20:07
bapu288913-Sep-10 20:07 
Questionhow to send file with bluetooth with secket programing Pin
behzadcp13-Sep-10 3:49
professionalbehzadcp13-Sep-10 3:49 
AnswerRe: how to send file with bluetooth with secket programing Pin
Giorgi Dalakishvili13-Sep-10 20:57
mentorGiorgi Dalakishvili13-Sep-10 20:57 
QuestionA Queston about Transformations Pin
BobInNJ13-Sep-10 3:38
BobInNJ13-Sep-10 3:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.