1
votes
votes
1 answers
C# question - textBox1.text needs to have dots inserted every 3 char for IP Address
Hello, I have a textBox1.text that I would like to have it insert a . every three characters. For an IP Address, like 192.168.001.016 [code]private void tbIPVM_TextChanged(object sender, EventArgs e) { if (tbI ...
