Dim DisLabel As String, count As Integer
'get to know how many digits are there
count = Me.Label1.Text.Length
'count-1 is the index, romove last one digit only
DisLabel = Me.Label1.Text.Remove(count - 1, 1)
'redisplay it in your calculator's screen
Me.Label1.Text = DisLabel