You can try
Public Shared Function GetFirstDateOfMonth(ByVal date As DateTime) As DateTime Return (New DateTime(date.Year, date.Month, 1)) End Function
//First day of monthtextBox1.Text = (new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1)).ToString();//Current daytextBox2.Text = DateTime.Now.ToString();