Functionwm_cmbadd

Defined in: pbwword

public subroutine wm_cmbadd (string arg_toolbar, string arg_cmb, string arg_items[])

Comment:
Add items to combo box control. Use toolbar and control name to find the right control. 
Control type must be ComboBox


Script:
public subroutine wm_cmbadd (string arg_toolbar, string arg_cmb, string arg_items[]);

string items
items = f_array_string(arg_items[])
i_PBWWord.cmbadd(arg_toolbar,arg_cmb, items)
end subroutine