Even simpler: EditField1.Text = EditField1.Text.Left(EditField1.Text.Len - 1)
To delete the 1st character, use Right instead of left. for characters in the middle, use mid 2 times. On 5/30/06, Keith Bennett <[EMAIL PROTECTED]> wrote:
Assuming the character is at the *end* of the editfield, you'd just do: EditField1.SelStart = Len(EditField1.Text)-1 EditField1.SelLength = 1 EditField1.SelText = ""
_______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>