Adding Listbox checks with code

SQUIDD

Well-known Member
Joined
Jan 2, 2009
Messages
2,144
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
Hi All

Me again.

I am trying to check and uncheck items in a listbox.

LISTBOX is LB1

Say i wanted to tick index 3.

VBA Code:
LB1.List(Me.LB1.ListIndex).SELECTED = TRUE

I cant get the syntex correct

Thanks again

dave
 
Try:

VBA Code:
Private Sub CommandButton1_Click()
  LB1.Selected(3) = True        'to check
End Sub

Private Sub CommandButton2_Click()
  LB1.Selected(3) = False       'to uncheck
End Sub
 
Upvote 0
Solution
Try:

VBA Code:
Private Sub CommandButton1_Click()
  LB1.Selected(3) = True        'to check
End Sub

Private Sub CommandButton2_Click()
  LB1.Selected(3) = False       'to uncheck
End Sub
Perfect, worked spot on. Thankyou very much.

Dave
 
Upvote 0

Forum statistics

Threads
1,226,848
Messages
6,193,316
Members
453,790
Latest member
yassinosnoo1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top