Click here to Skip to main content
15,889,574 members

Comments by bipin9 (Top 15 by date)

bipin9 3-Feb-12 0:37am View    
Thanks a lot...
Yes this is something i want to have but how i can pass sort expression that is i am getting value for sorting from grid(grid column name) i.e in this example how can i get date as sort expression and then want to apply sorting.
bipin9 19-May-11 1:14am View    
Deleted
Thank you!!
That is what i was looking for other wise i need to write big logic to check each char then need to check other 3 are macthing or not.
bipin9 18-May-11 9:29am View    
private void button2_Click(object sender, EventArgs e)
{
if (textBox2.Text.Length < 4)
{
textBox3.Text = "Password should be atleatst 4 character long";
}
else
{
findoccurance(textBox1.Text, textBox2.Text);
}

}
private void findoccurance(string source, string target)
{
if (source.Contains(target))
{
Console.Write("string contains {0}", target);
}
}
bipin9 18-May-11 8:40am View    
thank you
bipin9 8-Apr-11 7:48am View    
thnks