Hi guys, need your advice. Bascially I have built a Online Cinema Seat Reservation system using VB.NET Windows Forms. The system will be installed on probably 10 terminals.
e.g. Imagine going to a cinema booth and you see 10 ticket operators. Bascially what I am trying to implement is real-time updates. Meaning, if one operator selects a particular seat, another operator on another terminal should not be able to select the same seat.
I have considered employing an event listener that will listen forever but I suppose its extremely resource hogging and not productive at all.
Any kind advice to implement the above

Advise on real time updates
theguy2042000
Probably, to explain in more detail, when a seat is selected, the seat colour is changed to red. When it is blocked, the seat button is just disabled. So i was looking at disabling the particular seat button across all screens whenever an operator selects the seat first.
Any further advise As in what kind of programming approach should I look into for Windows Forms
JFS
Take a look at this pattern: Pessimistic offline lock
You might want to pick up Fowler's Patterns of Enterprise Application Architecture
GaneshMoorthy MC
Radhi