Hi and welcome, Joe! You want to define a new widget with a slot for your object that keeps track of the current step:
(defwidget user-questionnaire () ((user-object :accessor user-object-of :initform (make-instance 'user)) (state :accessor state-of :initform 0))) Then depending on state show the appropriate form/links for modifying part of the user object. At the end your user object is complete. To make things easier get yourself a copy of weblocks-dev and take a look at the `wizard' widget which I wrote for exactly this purpose. In general I'd advise staying away from continuations and using state instead unless you're modelling a very complex flow problem. Leslie -- You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/weblocks?hl=en.
