Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1072237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:49:45+00:00 2026-05-16T20:49:45+00:00

I would like to bind a DataGridView to the results of a query generated

  • 0

I would like to bind a DataGridView to the results of a query generated as text at runtime.

How can I send a query as text to Microsoft Access and bind the results to the DataGridView?

When the user clicks the button (ok_btn), I want the contents of the textbox (query_txt.Text) sent to Microsoft Access, then I want the results of the query shown in my DataGridView (results_grid).

Simple one-row queries are fine for now: (SELECT "a";, SELECT "a", "b";, SELECT now();)

NOTE: C# accepted, VB.NET preferred

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:49:45+00:00Added an answer on May 16, 2026 at 8:49 pm
    using System.Data.OleDb;
    
    OleDbConnection conn = new OleDbConnection(@"Provider = Microsoft.Jet.OLEDB.4.0;User Id=;Password=;Data Source=" + fileName);
    conn.Open();
    OleDbDataAdapter dataAdapter = new OleDbDataAdapter(query_txt.Text, conn);
    DataSet ds = new DataSet();
    dataAdapter.Fill(ds);
    dataGridView.DataSource = ds.Tables[0];
    conn.Close();
    

    Note: query_txt.Text is the Query that you want to run. fileName is the path to where your file is stored.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I have a text field which I would like to bind to a
I would like to bind a textbox to show the text of the item
I would like to bind a column in my DataGridView class to an entry
It would seem that the DataGridView control can only bind to data sources that
I would like to bind the text field of a textbox to an element
I would like to bind the dynamically dataset to the rdlc. I can view
I would like to bind the User.Password property to PasswordBox (TwoWay). Since PasswordBox.Password is
I would like to bind a variable to a function's scope, I can do
I would like bind an array data to view in ASP.NET MVC, how can
I would like to bind the boolean enabled property of an NSTextField to the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.