Agree with Anthony's comment above.
One thing to watch out for with either suggested method is that since these do not perform a deep copy, you can have some unintended effects from programmatically changing fields/attributes.
For example:
drpTypes.Items.Add(new ListItem("Tipos de Acções", "1"));
drpTypes.Items.Add(new ListItem("Tipos de Combustível", "2"));
drpTypes.Items.Add(new ListItem("Tipos de Condutor", "3"));
drpTypesCreateEdit.Items.AddRange(drpTypes.Items);
drpTypes.SelectedValue = "2";
drpTypesCreateEdit.SelectedValue = "3";
Both drpTypes and drpTypesCreateEdit now have SelectedValue of "3", whereas that is clearly not the intent of the above code.
Might be best to perform a deep copy by instantiating new ListItem objects instead of just passing the original object, something like this:
drpTypesCreateEdit.Items.AddRange(drpTypes.Items.OfType<ListItem().ToList.ConvertAll(x => New ListItem(x.Text, x.SelectedValue));