Yup, that can be done fairly easily. Just open up myvbindex.php and look for:
PHP Code:
if ($showtodaysevents AND $event[eventdate]==vbdate("Y-m-d",time())) {
Replace that with:
PHP Code:
if ($showtodaysevents AND $event[eventdate]>=vbdate("Y-m-d",time()) AND $event[eventdate]<=vbdate("Y-m-d",time()+604800)) {
That will display all events happening in the next week (the number 604800 there is the time limit in seconds). Though the only problem with that is once you get near the end of the month, it will only show the events happening within the next week and before the end of the month because of the way the query above it is set up. If you don't mind adding an extra query to the page I can play with it a bit and try to make it where that wouldn't happen.