How to make such a message? I can not find anywhere
1 answer
You might like the easy Tooltip on a TextChanged event:
private void textBox1_TextChanged(object sender, EventArgs e) { TextBox TB = (TextBox)sender; int VisibleTime = 500; ToolTip tt = new ToolTip(); if (/*если текст введен не верно*/) { tt.Show("Ошибка ввода", TB, 10, 20, VisibleTime); } } |

ErrorProvideror you are not satisfied visually, how does it display an error message? - Bulson