DataTableCollec tion dta = myDataSet.Table s;
DataRowCollecti on dra = myDataSet.Table s["Plyty"].Rows;
DataRow dr = dra[0];
textTytul.Text = dr[0].ToString; !!!!!!!!!!!!!! ( ERROR : Method
'int.ToString(s tring)' referenced without parentheses )
What shuld I do?? What is wrong...
DataRowCollecti on dra = myDataSet.Table s["Plyty"].Rows;
DataRow dr = dra[0];
textTytul.Text = dr[0].ToString; !!!!!!!!!!!!!! ( ERROR : Method
'int.ToString(s tring)' referenced without parentheses )
What shuld I do?? What is wrong...
Comment