J Jacob Jul 31, 2003 #1 I need to know if there is a code that will allow me to select everything listed in a list box?
E Emilia Maxim Aug 1, 2003 #2 Jacob said: I need to know if there is a code that will allow me to select everything listed in a list box? Click to expand... Jacob, here's some code: Dim I As Integer For I = 0 To Me![MyListBox].ListCount - 1 Me![MyListBox].Selected(I) = true Next I The MultiSelect property must not be 'None'. Best regards Emilia Emilia Maxim PC-SoftwareService, Stuttgart http://www.maxim-software-service.de
Jacob said: I need to know if there is a code that will allow me to select everything listed in a list box? Click to expand... Jacob, here's some code: Dim I As Integer For I = 0 To Me![MyListBox].ListCount - 1 Me![MyListBox].Selected(I) = true Next I The MultiSelect property must not be 'None'. Best regards Emilia Emilia Maxim PC-SoftwareService, Stuttgart http://www.maxim-software-service.de