I have set an edit control to on receive only number in.
but it seems i can't enter a . (dot) to use decimal
is there a workaround to use this ?
Numeric edit controls are numbers only. It's a Windows feature.
If you want to create an edit control that handles decimal you'll need to create your own by deriving from the class, overriding WndProc and trapping WM_CHAR.
Ok ;)
Thanx Paul.