Table Allocation

Joined
Oct 28, 2006
Messages
19
Programming Experience
Beginner
As my deadline draws close I'm praying someone who knows more about VB.NET reads this. I need to allocate tables to guests at a function. Each guest may bring additional guests which are specified on a registration form. I then need to allocate 10 people to a table and there are 50 tables. I've been at this for hours and i desperately need help. If anyone reads this please help me.
 
sorry, i don't quite understand your problem, can you make it clearer?

if your problem is : how to arrange table for each group of guest (based on the registration form) so that they can seat together , then i think this logic may help :
  • populate the datatable with the registered guest (not the friends that guest)
  • then loop through the datatable and then ordered up their seat sequentially (the guest and his/her friends together)
 
Back
Top