Calender Element

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

Hi to all,
is ther some possibility to use the Calendar-Element on
Windows-Forms. I know that is possible on Web-Forms. It's
for an application running on pocket pc.
Another possibility is to show all the days in a datagrid?

But I can't find any solution to show the right days in
the right comlumn / row :-(


thanks for help
 
It is easy to find out what col and row position to give
a date if you wanted to use a DataGrid by using the
DateTime object.

I think the function is (int)DateTime.Now.DayOfWeek() or
something will give you a number between 0-6 which can be
used for col pos...

Fred
 
Back
Top