NicktheNewbie
MIS
I'm trying to display 10 hours in 15 minute increments on a vb.net form.
For instance...
2:00
2:15
2:30
2:45
3:00
3:15
.......all the way up to
11:00
11:15
11:30
11:45
12:00
I'd like to have each of these values be linkable to a database I've got, it holds movie scheduling information.
AND, I'd like to be able to show 7 days on the form at any given time.
The idea is that a theatre manager could use this interface to schedule a weeks worth of movies.
Not sure how to approach this.
Are listboxes a good idea? I suppose I could have 40 buttons (10 hours x the 15 minute intervals) all next to each other, but this seems tedious.
The database just holds a start time for a movie, and the length...
Ideally, I'd like to have this schedule be "blocked off" after a movie is scheduled... so they don't overlap, etc.
Any general suggestions for how to build a calendar like this, what type of controls to use, etc?
I can use a dtaetimepicker to select a given date without issue, but I still need to be able to show big blocks of a schedule at once, and am at a loss as to how to approach this.
Thanks all.
For instance...
2:00
2:15
2:30
2:45
3:00
3:15
.......all the way up to
11:00
11:15
11:30
11:45
12:00
I'd like to have each of these values be linkable to a database I've got, it holds movie scheduling information.
AND, I'd like to be able to show 7 days on the form at any given time.
The idea is that a theatre manager could use this interface to schedule a weeks worth of movies.
Not sure how to approach this.
Are listboxes a good idea? I suppose I could have 40 buttons (10 hours x the 15 minute intervals) all next to each other, but this seems tedious.
The database just holds a start time for a movie, and the length...
Ideally, I'd like to have this schedule be "blocked off" after a movie is scheduled... so they don't overlap, etc.
Any general suggestions for how to build a calendar like this, what type of controls to use, etc?
I can use a dtaetimepicker to select a given date without issue, but I still need to be able to show big blocks of a schedule at once, and am at a loss as to how to approach this.
Thanks all.