Got it. So then it's just a matter of knowing the numeric position (starting from zero) of the intended target item.
So I 'spose then this make sense: (Select an item from <ThisControl> into vWhatever) --Capture the Index Number of the Selected Item GETPROPERTY <ThisControl> ITEMINDEX 'vHumpty' --Determine a new value by whatever method SET VAR vHumpty = (.vHumpty + 1) --Use the result to select another item from <ThisControl> PROPERTY <ThisControl> MAKECLICK 'vHumpty' Thanks very much for your help today. Making strides. Bruce -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of A. Razzak Memon Sent: Wednesday, December 04, 2013 3:47 PM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: Fixing item focus with aVariableLookupComboBox: MAKECLICK At 06:12 PM 12/4/2013, Bruce A. Chitiea wrote: >My original attempt to return control to the VLCB included a SET_FOCUS >and MAKECLICK '0' properties. >MAKECLICK '0' buried in a CFA was the offender. >I could clearly use a tutorial on the appropriate use of MAKECLICK; and >the means by which one feeds parameter values to it. MAKECLICK, as it clearly sounds, means "click", similar to using the "mouse click", without actually clicking on the mouse button, but using the PROPERTY command. When doing so, the intended value of the clicked/selected item in the list is returned to a variable, and the previously defined value, if any, is overwritten. MAKECLICK '0' will select/highlight the first item in the list, if exists MAKECLICK '1' will select/highlight the second item in the list, if exists '99' will select/highlight the 100th item in the list, if exists That should be as easy as 1-2-3! Razzak >-----Original Message----- >From: [email protected] [mailto:[email protected]] On Behalf Of A. >Razzak Memon >Sent: Wednesday, December 04, 2013 2:35 PM >To: RBASE-L Mailing List >Subject: [RBASE-L] - Re: Fixing item focus with a >VariableLookupComboBox > >At 05:23 PM 12/4/2013, Bruce A. Chitiea wrote: > > >Thanks for the tip: a Good start. > >It appears I'm losing the selected variable value within several > >custom form actions. > >While in Form Designer, use [Ctrl + F] to search for that exact >variable name throughout. > >You will see a complete list with highlighted variable name in each >block when viewed in EEP Editor. > >Use F8 to search for NEXT instance within that block of code, if any. > >Razzak > > > >-----Original Message----- > >From: [email protected] [mailto:[email protected]] On Behalf Of A. > >Razzak Memon > >Sent: Wednesday, December 04, 2013 2:10 PM > >To: RBASE-L Mailing List > >Subject: [RBASE-L] - Re: Fixing item focus with a Variable > >LookupComboBox > > > >At 04:52 PM 12/4/2013, Bruce A. Chitiea wrote: > > > > >Then what I'm doing is 'resetting' the control back to the first > > >item with each iteration. Back to the kitchen. > > > > > >To better understand this technique ... > > > >Pre-Define that exact variable with actual value as "On Before Start > >EEP", and then run the form. Notice the selected/highlighted row in > >the VL Combo Box. > > > >Very Best R:egards, > > > >Razzak

