CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Checkedlistbox

  1. #1
    Join Date
    Jun 2002
    Posts
    1

    Checkedlistbox

    I am trying to figure out how to check a checkbox in a checkedlistbox prgramatically. I have the checkedlistbox populated from dataset1. I am reading records from dataset2. I can get the value of the datarow to select the item in the checkedlistbox but can't figure out how to actually put a check mark in the box.

    Any advise?

  2. #2
    Join Date
    May 2002
    Posts
    13
    Have you tried something like this?


    Me.CheckedListBox1.SetItemChecked(itemSelected, True)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured