allow numbers and ctrl + v only

1
2
3
if (!Char::IsDigit(e->KeyChar) && e->KeyChar != 0x08) {
	e->Handled = true;
}

this code disables all the keys besides the numbers. how can i have ctrl + v enabled?
Topic archived. No new replies allowed.