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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:42:46+00:00 2026-05-18T07:42:46+00:00

I have a Listview and an ADD button,when I click on ADD i should

  • 0

I have a Listview and an “ADD” button,when I click on ADD i should be able to browse the files in computer, select files and when click OK or the Open, the file list should be added in the listview…how to do that…is listview correct or any other alternative…?

  • 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-18T07:42:47+00:00Added an answer on May 18, 2026 at 7:42 am

    ListView should be fine for file listing. Just be aware that longer file paths are difficult to see (have to horizontally scroll which is bad!) if you are gonna just add the full path to list. You can toy with the idea of other representation like:

    File.Txt (C:\Users\Me\Documents)
    C:\Users\..\File.Txt
    etc
    

    As far as doing it using code is concerned, you will need to use OpenFileDialog control to let user choose the files.

    var ofd = new OpenFileDialog ();
    //add extension filter etc
    ofd.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
    if(ofd.ShowDialog() == DialogResult.OK)
    {
        foreach (var f in openFileDialog1.FileNames)
        {
            //Transform the list to a better presentation if needed
            //Below code just adds the full path to list
            listView1.Items.Add (f);
    
            //Or use below code to just add file names
            //listView1.Items.Add (Path.GetFileName (f));
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have listview one button( default content == Add) and 1 textbox. On list
It should be easy, right? Have a listview, add an imagelist, add images to
I have a listview NoteList which contains a method doListRefresh() to select list contents
i have list view inside list view a button when i click button list
I have the following HTML code: <ul id='item-list'></ul> <button id='add-item'>Add Item</button> <script type='text/template' id='item-template'>
I have a listview. I need to add and remove from the list. On
I have a listview in my activity, and when I click on a button
I have a MainActivity class with an Add Item button and a listview and
I currently have a listview and I want to add an appropriate icon to
I have a ListView containing file names. These file names need to be draggable

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.