Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void SetDTPToLastMonday()
{
string aDay = dtpMonday.Value.DayOfWeek.ToString();
//create a time span object of one day
System.TimeSpan ad = new TimeSpan(1,0,0,0);
if(aDay != "Monday")
{
do
{
dtpMonday.Value = dtpMonday.Value.Subtract(ad);
aDay = dtpMonday.Value.DayOfWeek.ToString();
}while (aDay != "Monday");
}
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = searchlastmonday(1).ToString("dd/MM/yyyy");
}
private DateTime searchlastmonday(int tosubstract)
{
if ((System.DateTime.Today.AddDays(-tosubstract)).DayOfWeek != System.DayOfWeek.Monday)
{
searchlastmonday(tosubstract -= 1);
}
return System.DateTime.Today.AddDays(-tosubstract);
}