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

[REBOL] Re: How to create different context in View?

From: sant4::wanadoo::fr at: 25-Jul-2007 20:03

I will do like this: make-panel: func [a /local obj][ obj: construct append cp [panel: none] a obj/panel: bind/copy a in obj 'self obj ] a: make-panel [t1: field 100 [print t1/text]] b: make-panel [t1: field 100 [print t1/text]] view layout [ panel a/panel panel b/panel btn "a" [print a/t1/text] btn "b" [print b/t1/text] ]