> I actually am getting this data from a view. I just want to load specific > rows into a cobo box or list box or some sort of object in a form where I > can control the location.
Use a variable lookup listbox based on a temporary view. When your variable changes, drop the view and recreate it. The issue PROPERTY ListboxComponentName REFRESHLIST 'TRUE' This will update the listbox to show your new selection. Turn Show Lines On in the properties for the listbox to improve the display. You can find out what value the user has selected by looking at the value of the variable underlying the listbox. -- Larry
