Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. ListView : Subitem selection

ListView : Subitem selection

Scheduled Pinned Locked Moved C#
questionhelptutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sarvan AL
    wrote on last edited by
    #1

    Hi Everybody, Could you help me out from the following problems related to List view (View: Details) ? 1) How to select the subitem? 2) How can I select one subitem and an item (if possible) ? 3) How to make both items & subitems editable? Thanks in advance, Sarvan AL

    R 1 Reply Last reply
    0
    • S Sarvan AL

      Hi Everybody, Could you help me out from the following problems related to List view (View: Details) ? 1) How to select the subitem? 2) How can I select one subitem and an item (if possible) ? 3) How to make both items & subitems editable? Thanks in advance, Sarvan AL

      R Offline
      R Offline
      rah_sin
      wrote on last edited by
      #2

      for selecting item in listview u can try foreach(ListViewItem lstitm in listView1.Items) { if(lstitm.Index==0) { lstitm.Selected=true; } } where lstitm.Index is the row number which u want to select and for editing the subitem u can try foreach(ListViewItem lstitm in listView1.Items) { if(lstitm.Index==0) { lstitm.SubItems[0].Text="xyz"; } }

      rahul

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups