Hey All;
I'm new to C# and Have been working on finishing this online course I've been taking. I am wondering if you can help me figure out what is wrong with this code, and how to fix it.
This is what I have in my coding:
public partial class fclsMain : Form
{
OleDbConnection m_cnADONetConnection = new OleDbConnection();
m_daDataAdapter DataTable m_dtContacts = new DataTable();
int m_rowPosition = 0;
public fclsMain()
{
This is what its telling me to place it as
You're going to create a module-level DataTable in your project. First, create the DataTable variable by adding the following statement on the line below the statement you entered previously to declare a new module-level m_daDataAdapter object:
DataTable m_dtContacts = new DataTable();
Please help!



LinkBack URL
About LinkBacks


