Raymond,
This is rather wrong group to post MiniGui questions.
You might get better response in these groups:
http://tech.groups.yahoo.com/group/harbourminigui/
http://www.hmgforum.com/
Now, regarding your question: What you mean by 'value'?
In a textbox the 'value' property holds the content of the textbox.
(text).
In a combobox the 'value' property represents the row index of the
currently selected item (numeric) and works as expected.
Changing a combobox value you move the focus pointer to a new row -it
does not change Items.
So, invoking " SetProperty(
thiswindow.name,
'comboboxAccType','Value', 1 ) "
you actually change the focus (select) to the first Item.
OTOH, if you intend to change some Item (which i guess is what you're
looking for) then you have to use:
SetProperty ( 'YourFormName' , 'YourComboName', 'Item' , nItem ,
'cChangedItemText' )
where 'Item' is a literal constant and nItem is the index-pointer (IOW
the combo row) of the Item you want to change
(the rest args are self-explanatory..)
---
Pete