I have Crystal reports in my project that is designed using a data set (Having table with column name inLanguage1, inLanguage2).
This data set is filled with data from one of the tables from a database, each table have two columns that store names in two different languages.
Eg: Table 1 has name in Hindi and English. Table 2 has name in English and Hindi. Table 3 has name in Kannada and Hindi.
While I store names in these tables, using my frontend (C#), I have set the corresponding font type for the textbox to type the name in that language. (For Hindi, I have set the textbox font as 'Devnagri' which I have installed on my system and so will display in textbox property explorer. For English, font-type is Arial). This data is being stored in corresponding table.
Now, when I fetch table data at run time and fill the data sets it works fine. But, I also want to set the font for the column in the report I am going to print.
Eg: For table1, in Crystal reports I want to set 'Devnagri' as first column's font, second column's font as 'Arial' and, if dataset is filled with data from table2, I want to set font property of report's first column to 'Arial' and second column to 'Devnagri'
So, please suggest a way to do this font setting for Crystal reports in C#.