hi, I need to copy a text from one MaskEdit control to another MaskEdit control
I could do it by:

MaskedEdit1.Mask = ""
MaskedEdit1.Text = MaskedEdit2.Text

However, when I set the Mask property to 999999 by:

MaskedEdit1.Mask = "999999"

then value dispear, if I don't set it, it is no longer
a maskedit box, so how could I do it?