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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:57:35+00:00 2026-05-26T02:57:35+00:00

I have created an application in C#. I want to display the text in

  • 0

I have created an application in C#. I want to display the text in the text file separated by commas in a DataRow or a GridView.

I am using this code to display the text in a listbox

private void button1_Click(object sender, EventArgs e)
{
    var file = File.OpenText("C:\\File.txt"); 
    string line;
    bool flag = true;
    while ((line = file.ReadLine()) != null)
    {
        listBox1.Items.Add(new { srno= line, Date= "descr", Time= DateTime.Now ,symbol = Symbol  });
    }
}

But its not well for others to understand what its displaying.i want to display something like this

check this link https://i.stack.imgur.com/LEmdz.jpg

There would be great appreciation if someone could help me.

Thanks In Advance.

  • 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-05-26T02:57:35+00:00Added an answer on May 26, 2026 at 2:57 am

    Silly me looks like this is WinForms not asp.net. Got retagged. I’ll leave this here for someone else then.

    You’ll want to turn the file in to a DataTable. There is a decent example of this at http://www.akamarketing.com/blog/256-csv-datatable.html

    It’s more of a generic approach than anything.

    Here is an untested example you could try to work through.

    DataTable dataTable = new DataTable();
    dataTable.Columns.Add("Srno");
    dataTable.Columns.Add("Date");
    dataTable.Columns.Add("Time");
    dataTable.Columns.Add("Symbol");
    
    while ((line = file.ReadLine()) != null)
    {
        DataRow row = dataTable.NewRow();
        string[] s =  line.Split(',');
        row["Srno"] = s[0];
        row["Date"] = s[1];
        row["Time"] = s[2];
        row["Symbol"] = s[3];
    }
    
    //Add to your GridView that is in your aspx file
    gridView.DataSource = dataTable;
    gridView.DataBind();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi In my application i have created a text file in isolated storage and
I am new to iphone development, i have created sms application using Text Links(sms:)
We have created an application which we want to run in a 64 bit
I have created blank Asp.Net-MVC 3 web application and want to write my own
i have created an application which show data from user current location. I want
I have created a java application for Debian Linux. Now I want that that
I have created a windows mobile application in Visual Studio. I want to templatize
I have a local repository. I created the whole application, but now I want
Question: I have to create a tablet application. In this i want to make
i have created a login page for some application in android and i want

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.