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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:15:42+00:00 2026-05-30T18:15:42+00:00

I am using ListView’s large icon view, to view database inserts with image per

  • 0

I am using ListView’s large icon view, to view database inserts with image per insert.
When a new insert is made, I clear the whole ListView and add all inserts using the following code. It works perfectly, only when run for the first time.
The second time (after a new insert is added), I get all the items, but with missing images (some of them are missing and some of them are scrambled)

private void updateListView()
{
    myListView.Clear();
    myListView.Items.Clear();
    myConnection.connect();
    List<String> myValues = myConnection.getMyValues();
    List<String> myImages = myConnection.getMyImages();
    ImageList myImageList = new ImageList();
    myImageList.ImageSize = new Size(256, 256);
    myImageList.ColorDepth = ColorDepth.Depth32Bit;
    for (int i = 0; i < myValues.Count; i++)
    {
        myListView.Items.Add(myValues[i]);
        myListView.Items[i].ImageIndex = i;
        myImageList.Images.Add(Image.FromFile(myImages[i]));
    }
    myListView.LargeImageList = myImageList;
    myConnection.close();
    myListView.Refresh();
}

I’ve checked with debug and the values/filepaths are correct.

  • 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-30T18:15:44+00:00Added an answer on May 30, 2026 at 6:15 pm

    I found it:
    The problem was that I had the Sort property of the ListView on.
    This means that the ListView sorted it’s Items automatically.
    So in these lines:

    myListView.Items.Add(myValues[i]);
    myListView.Items[i].ImageIndex = i;
    

    An item is added and after that the last item (i) is attached to the last image (i)
    In between these lines the newly added item is auto-sorted alphabetically, so it isn’t
    indexed at i anymore, but something else. So the image is assigned to a random item.
    Instead I did this:

    ListViewItem lastAddedListViewItem = myListView.Items.Add(myValues[i]);
    lastAddedListViewItem.ImageIndex = i;
    

    And it worked

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

Sidebar

Related Questions

I am using ListView/DataPager. For performance reasons I page my results at database, using
I am attempting to scroll through a database of Album Names using ListView. When
I'm new to android. I have worked in searchbar using Listview and it's working
I am using Listview,the View selected is largeicon mode. The problem i am facing
I am using listview to display data, inside listview i am using image in
I am using listview to display data, inside listview i am using image in
Im using listview in my listview activity with listAdapter like this: setListAdapter(new ArrayAdapter<MyItem>(this,R.layout.catalog, R.id.label,
I am using ListView control in ASP.NET to retrieve data from my database. I
For my ListView I'm using listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL); listView.setMultiChoiceModeListener(new ModeCallback()); private class ModeCallback implements ListView.MultiChoiceModeListener {
I am using listview in which each item (of list view) has a checkbox

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.