WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

How To
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

How to Place Selections from One List Box in Another

Keywords:     askitemlist listbox

Question:

Do you have any sample code(s) that allows selections from one list box to be placed in another list box?

Answer:

Here's some sample code to handle your list box question:
   tab=num2char(9)
   list=strcat("Red",tab,"Blue",tab,"Yellow",tab,"Green")
   A=AskItemList("Colors", list, tab, @sorted, @multiple)
   Message("The items selected is", A)
   B=AskItemList("Colors", A, tab, @sorted, @multiple)
   


Article ID:   W13193
Filename:   Use Contents of One List Box within Another.txt
File Created: 1999:04:15:16:52:22
Last Updated: 1999:04:15:16:52:22