Dynamically append value to combobox

Does anyone know of how to add a value to a combobox field using lotusscript. From what I am trying to do, I have to use lotusscript not formula language.

Thanks

Subject: Dynamically append value to combobox

Are you wanting to add it as a permanent choice or what?

Subject: RE: Dynamically append value to combobox

I have a view of documents (using a different form). I want to loop through the view and get a value out of each document and add it to a combobox when I open this new form (so that the creator can then select from these values). Is this possible?

Subject: RE: Dynamically append value to combobox

In the keyword formula of the field, use @DbLookup or @DbColumn to read the values you require. It might be necessary to create or modify a view to provide you a column for the @DbLookup.

Subject: Dynamically append value to combobox

You can’t do it directly. If the combobox reads its choices from another field, you can assign that other field and then use Refresh method to get the field to pick up the new value list.