If I understand what you are wanting then I used to do similar with external buttons before I started using a pot via analogue inputs to Mach.
If you dont want to use external buttons then you could either open the screenset in one of the screen designers and add two VB buttons to your screenset or change the Up and Down buttons to be VB buttons.
You would then put some VB in those buttons, maybe something like this for Down button
FRO = GetOemDRO(821)
Decrease = GetOemDRO(821) - 2
SetoemDRO(821,Decrease)
and for Up
FRO = GetOemDRO(821)
Increase = GetOemDRO(821) + 2
If FRO= 0 Then
SetFRO=1
Else
SetoemDRO(821,Increase)
End If
If you need further help in doing this just shout.
Hood