Good day to all. How to prevent OnKeyPress
entering a particular character first? I need to prohibit the input of the first character point. Here is the code:
if((Key >= '0' && Key <= '9') || Key == VK_BACK ||Key == '.' || Key == ',') { if(Key == ',') Key = '.'; } else Key = NULL;
Still, how to prevent the input of two points in a row?
Thank.