C# datagridview1 and Access Database font problem
I have visual studio 2015 datagridview1 in C# connected with MS Access Database. The data entry form is both in English and Bangla. Database is ok with Calibri font. datagridview1 celldefault in sutonnyMJ font. Whatever in Database I want to see in datagrridview1 one column in English and another column in Bangla. Is it possible?
Manikandan MurugesanPosted Aug 15, 2017, 12:54 AM
This is how I'm doing it...
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.Font = new Font(dataGridView.Font, FontStyle.Bold);
dataGridView.Rows[0].DefaultCellStyle = style;
Then I can just pick any row I want ( Rows[#] )and have it displayed the way I want.
Thanks
Shovan SahaPosted Aug 15, 2017, 11:25 AM