Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Add combox in gridview - Getting OledbException

Add combox in gridview - Getting OledbException

Scheduled Pinned Locked Moved C#
helpdatabase
2 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    haroon1980
    wrote on last edited by
    #1

    Hi, I get Oledb Exception:"No value given for one or more required parameters." at line below adapter2.Fill(packDT); // error here on this line Basically i am trying to make a combobox in 2nd row of gridview.. Also one more thing i need to add to my above post..that i need to select some columns from one table and then in one of the column of the gridview i need to add combobox in gridview... OleDbDataAdapter adapter1 = new OleDbDataAdapter("select BillD.ProductName,BillD.ProductID,BillD.Saletype,BillD.InQty,BillD.SBtype,BillD.Dis1,BillD.Type,BillD.InPrice from BillDetails BillD", database); OleDbDataAdapter adapter2 = new OleDbDataAdapter("Select P.ProductName,P.ProductID,Packing.PackingName from Packing INNER JOIN Products ON Packing.PackingID=Products.Packing", database);

    void fillData()
    {
    database = new OleDbConnection(connectionS :( :confused:tring);
    database.Open();
    OleDbDataAdapter adapter1 = new OleDbDataAdapter("select BillD.ProductName,BillD.ProductID,BillD.Saletype,BillD.InQty,BillD.SBtype,BillD.Dis1,BillD.Type,BillD.InPrice from BillDetails BillD", database);
    OleDbDataAdapter adapter2 = new OleDbDataAdapter("Select P.ProductName,P.ProductID,Packing.PackingName from Packing INNER JOIN Products ON Packing.PackingID=Products.Packing", database);

            {
                DataGridViewComboBoxColumn dgridcolumn = new DataGridViewComboBoxColumn();
                DataSet ds = new DataSet();
                DataTable dt = new DataTable();
                DataTable packDT = new DataTable();
                adapter1.Fill(dt);
                dataGridView1.DataSource = dt;
                adapter2.Fill(packDT); // error here on this line
                ds.Tables.Add(packDT);
                dataGridView1.DataSource = ds;
                dataGridView1.DataMember = ds.Tables\[0\].TableName;
                dgridcolumn.DataSource = ds.Tables\[0\];
                dgridcolumn.ValueMember = ds.Tables\[0\].Columns\[1\].ColumnName.ToString();
    
    
            }
    

    Thanks, please help

    H 1 Reply Last reply
    0
    • H haroon1980

      Hi, I get Oledb Exception:"No value given for one or more required parameters." at line below adapter2.Fill(packDT); // error here on this line Basically i am trying to make a combobox in 2nd row of gridview.. Also one more thing i need to add to my above post..that i need to select some columns from one table and then in one of the column of the gridview i need to add combobox in gridview... OleDbDataAdapter adapter1 = new OleDbDataAdapter("select BillD.ProductName,BillD.ProductID,BillD.Saletype,BillD.InQty,BillD.SBtype,BillD.Dis1,BillD.Type,BillD.InPrice from BillDetails BillD", database); OleDbDataAdapter adapter2 = new OleDbDataAdapter("Select P.ProductName,P.ProductID,Packing.PackingName from Packing INNER JOIN Products ON Packing.PackingID=Products.Packing", database);

      void fillData()
      {
      database = new OleDbConnection(connectionS :( :confused:tring);
      database.Open();
      OleDbDataAdapter adapter1 = new OleDbDataAdapter("select BillD.ProductName,BillD.ProductID,BillD.Saletype,BillD.InQty,BillD.SBtype,BillD.Dis1,BillD.Type,BillD.InPrice from BillDetails BillD", database);
      OleDbDataAdapter adapter2 = new OleDbDataAdapter("Select P.ProductName,P.ProductID,Packing.PackingName from Packing INNER JOIN Products ON Packing.PackingID=Products.Packing", database);

              {
                  DataGridViewComboBoxColumn dgridcolumn = new DataGridViewComboBoxColumn();
                  DataSet ds = new DataSet();
                  DataTable dt = new DataTable();
                  DataTable packDT = new DataTable();
                  adapter1.Fill(dt);
                  dataGridView1.DataSource = dt;
                  adapter2.Fill(packDT); // error here on this line
                  ds.Tables.Add(packDT);
                  dataGridView1.DataSource = ds;
                  dataGridView1.DataMember = ds.Tables\[0\].TableName;
                  dgridcolumn.DataSource = ds.Tables\[0\];
                  dgridcolumn.ValueMember = ds.Tables\[0\].Columns\[1\].ColumnName.ToString();
      
      
              }
      

      Thanks, please help

      H Offline
      H Offline
      haroon1980
      wrote on last edited by
      #2

      sorry i am not getting exception as i fixed it bec of a pb in sql query...

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups