ALL,
I have a very simple WinForms application with C#.NET.
In there I need the control for entering an IP address, so I used MaskedTextCtrl.
This control needs to have a default value of localhost, i.e. the value should be there when the program starts, so I use "Text" property of the control.
I set the mask to be "999.999.999.999" and the text to "127.0.0.1", which converts to "127001" and it displays incorrectly in the GUI designer and when the program starts.
What can I do to make it work?
Thank you.