in my access database the column "foods" has multiline text..but when i view it in datagridview in my c# form it only has single line text,,, the width and height in datagridview is not the same as in my access database...
my access database looks like this
|primary key||foods||servings|
00000001 | chicken 11/2
fish 1
egg 1
my output in my c# forms looks like this
primarykey|food |servings|
00000001 chickenIIfish 11/211
how can i view my database in datagridview with the same witdth and height as my database is?? thanks..
heres my code in filling datagrid view
OleDbConnection conn1 = new OleDbConnection(@"provider=microsoft.jet.oledb.4.0;data source=C:\Documents and Settings\Anakz\My Documents\Visual Studio 2010\Projects\WindowsFormsApplication1\WindowsFormsApplication1\PDG.mdb");
string query = "SELECT * FROM children";
//create an OleDbDataAdapter to execute the query
OleDbDataAdapter dAdapter = new OleDbDataAdapter(query, conn1);
//create a command builder
OleDbCommandBuilder cBuilder = new OleDbCommandBuilder(dAdapter);
//create a DataTable to hold the query results
DataTable dTable = new DataTable();
//fill the DataTable
dAdapter.Fill(dTable);
//the DataGridView
//BindingSource to sync DataTable and DataGridView
BindingSource bSource = new BindingSource();
//set the BindingSource DataSource
bSource.DataSource = dTable;
//set the DataGridView DataSource
pf.dataGridView1.DataSource = bSource;