Click here to Skip to main content
15,904,986 members

Comments by Member 9377809 (Top 3 by date)

Member 9377809 30-Jun-14 0:08am View    
Regex regex = new Regex("^([0-9]|/|-)*$");

if (regex.IsMatch(txtFinancialYear.Text))
{
man = man + "This is a number only field <br /";
return;
}
Member 9377809 12-Sep-13 3:49am View    
hi pradeep
iam using visual studio 2010 so i don't find an option
comboitem or ListItem if there is any other option help me
"cmbFiscalYear.Items.Insert(0, new ListItem("--select--", "-1"))"

I want to add a new Item into the cmbfiscalyear

Mahesh T J 12-09-2013
Member 9377809 4-Sep-13 3:30am View    
How to read the the dates one by one from DateTimePicker i.e StartDate 2012-01-01 and EndDate 2012-01-07 . I want to read one by one between two dates.
Please help me in resolving this issue

Thanks in Advance
TJM