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 8589525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:04:40+00:00 2026-06-11T23:04:40+00:00

I guess I need to write code in this button click event to get

  • 0

I guess I need to write code in this button click event to get my desired output, but unable write down the steps. Any help from you guys would be helpful and will make me learn. Thank you.

 private void btnViewAllEntries_Click(object sender, EventArgs e)

    {
        SqlConnection con = new SqlConnection(Helper.ConnectionString);
        SqlCommand cmd = new SqlCommand("Select * from DirDetails");
        con.Open();


        con.Close();
        MessageBox.Show(DetailsView.cs);//DetailsView.cs is winform with gridview
    }
  • 1 1 Answer
  • 0 Views
  • 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-06-11T23:04:41+00:00Added an answer on June 11, 2026 at 11:04 pm

    First of all, MessageBox just shows messages, not Forms.
    To show a Form you should instantiate it and use Show or ShowDialog methods.

    DetailsView frm=new DetailsView();
    frm.ShowDialog();
    

    Second, run the query in the DetailsView.cs

    private void Form1_Load(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(Helper.ConnectionString);
            SqlDataAdapter da = new SqlDataAdapter("Select * from DirDetails", con);
            DataTable dt = new DataTable();
            con.Open();
            da.Fill(dt);
            con.Close();
            datagridview1.DataSource = dt;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't manage to get this piece of code working. I need to get
I got stumbled upon this issue once and I guess I need some expertise
I guess this is a simple question. I need to do something like this:
Need to set some attributes of button. For example Checked. I guess it is
I need to write some code to stress-test RS232 communication using rxtx ( note
Consider this HTML: <p>Click me</p> I would like to write an object with a
Here is my code: <html:text name=rptData property=emailAddress onblur=checkIfEmpty('<bean:write name=rptData property=status />' , this.id) />
This is the code of the DoWork event the ProgressChanged event and the RunWorkerCompleted
I need to guess the mime type with the purpose of fill the Content-Type
I guess getView() is called for each item of the list, but my question

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.