public bool check_text(string txt)
{
if (Strings.InStr(txt, "'") > 0)
{
return false;
}
}
Actually I am using Visual studio 2003. So this code to compare strrings in the textbox did not work. If there is any other code to compare strings in visual studio 2003??
Can Anybody help me????