holiday calendar

glda19

Member
Joined
May 15, 2009
Messages
5
Programming Experience
Beginner
Hi

I have now a holiday callendar in excel but i whant to transfare them to vb.

I think to set up a database to store the calendar dates in. But the problem how can i give them back like in the photo
 

Attachments

  • calendar.jpg
    calendar.jpg
    514.7 KB · Views: 62
But the problem how can i give them back like in the photo

Are you asking how you can display them to the user? The best way depends on exactly what you want the user to see at any particular time and how you want them to interact with the UI. What you have there is rather busy ofr a single form. Are you looking to separate it into manageable chunks, e.g. one month at a time?
 
how can i put that from excel to vb
Given how busy that looks and to take into consideration of the user being able to resize the form, I wouldn't suggest using a bunch of Labels or anything, but rather look into using GDI+ and simply drawing all of that either onto the form itself or onto something like a Panel control. I don't know how you're storing the dates, but I would suggest a database of some kind that the app can simply query.
 
Back
Top