01-19-2009, 09:44 PM
Thanks for quick response.
It doesn't seem to make any change in behavior.
I think what I will do is simply get rid of the
and simply have it fill in by hitting enter if the field is selected. Once I added an automatic deselect line so it doesn't stay "triggerable", it becomes very workable, especially with the CB-AutoComplete.
Thanks again for such quick responses!
Stuart
It doesn't seem to make any change in behavior.
I think what I will do is simply get rid of the
,case CBN_SELENDOK<<16|23
,,str SelectedCustomTag
,,if(CB_SelectedItem(id(23 hDlg) SelectedCustomTag) >= 0)
,,,LB_Add id(6 hDlg) SelectedCustomTag
and simply have it fill in by hitting enter if the field is selected. Once I added an automatic deselect line so it doesn't stay "triggerable", it becomes very workable, especially with the CB-AutoComplete.
,case IDOK
,,ifa(id(1001 hDlg));;if cursor is in CustomTag Pulldown
,,,str GetCustomTagField.getwintext(id(23 hDlg))
,,,LB_Add id(6 hDlg) GetCustomTagField
,,,CB_SelectItem(id(23 hDlg) -1)
,,,ret
Thanks again for such quick responses!
Stuart