View Single Post
  #3  
Old May 20th, 2010, 02:11 AM posted to microsoft.public.access.queries
PieterLinden via AccessMonster.com
external usenet poster
 
Posts: 307
Default Access 2003: Select Next Item in Combobox

eckert1961 wrote:
Here's some additional information. On the form that the combobox is on I
also have a checkbox labelled Ready. On the update if the checkbox is
selected then I want the combobox to select the next item on the list.
Hello,

I have a combobox on a form and currently I manually select the next item
for a member as needed. This is fine for 1 or 2 but typically I have to do
this for 20+. Is there a way to select the next item on the list either using
an update query or code?


If condition Then
With Me.cboDates
.SetFocus
.ListIndex = .ListIndex + 1
End With
End If

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...eries/201005/1