Horje
c# Search specified string inside textbox Code Example
c# Search specified string inside textbox
int pos = textbox1.Text.IndexOf("YYMM");
if(pos != -1)
{ 
    textbox1.SelectionStart = pos;
    textbox1.SelectionLength = 4;
    // MessageBox("Error");
} 




Csharp

Related
git find commits by file path Code Example git find commits by file path Code Example
While Code Example While Code Example
parse persian date string to datetime c# Code Example parse persian date string to datetime c# Code Example
unity rotate gameobject 90 degrees Code Example unity rotate gameobject 90 degrees Code Example
postgres .net 6 datetime issue Code Example postgres .net 6 datetime issue Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9