Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Newbie VIEW problem

From: Izkata::Comcast::net at: 22-Nov-2005 22:52

It's the way you're using the "with: [pane: ....]" part - clientpanel/pane contains a face, which is also referenced to by entrypanel. entrypanel/pane is what contains the fields to be cleared, so there's 3 fast ways to fix this: clear-fields clientpanel/pane ;<-- these reference the same face clear-fields entrypanel ;<-- these reference the same face Or, the line in form_ClientMaintenance could be changed to work the way you're thinking: From: clientpanel: box entry-panel/size with [ pane: entrypanel ] To: clientpanel: box entry-panel/size with [ pane: entrypanel/pane ] (Hope this helps)