Hi,
I would like to disable my 'next record' button if it is the last record in the set, this is to avoid the access error message 'can't go to specified record' i'd also like to do the same with my 'previous record' button on the first record in the set.
i'd probably place this in the onCurrent event.
My psuedo code would be
if me.currentRecord = last then
me.btnNext.enabled = false
else
me.btnNext.enabled = true
end if
Is this possible???
thanks
I would like to disable my 'next record' button if it is the last record in the set, this is to avoid the access error message 'can't go to specified record' i'd also like to do the same with my 'previous record' button on the first record in the set.
i'd probably place this in the onCurrent event.
My psuedo code would be
if me.currentRecord = last then
me.btnNext.enabled = false
else
me.btnNext.enabled = true
end if
Is this possible???
thanks