Copy values from one TAdvListEditor to another

Hi,


Is there an easy way to copy all values from one TAdvListEditor to another?
In my situation these TAdvListEditors are on different forms.

Thanks!

You can use:

advlisteditor2.Values.Assign(advlisteditor1.Values);

Great, thank you.