This works for me: display "Grid" compose/deep [ table options [ "Name" left .4 "Address" left .3 "City" left .3 ] data [(stuff)]] do-events
On 1/13/06, Alan <[EMAIL PROTECTED]> wrote: > > > Graham, > > Thanks for your response. > > I tried the folloing but I still get an error: > > stuff: [ > "Mike" "111 Main Street" "Rockaway" > "BoB" "222 James Place" "NY" > ] > > display "Grid" [ > ex-table: table #WH options [ > "Name" left .4 "Address" left .3 "City" left .3 > ] > data stuff > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Graham Chiu > Sent: Thursday, January 12, 2006 2:59 PM > To: [EMAIL PROTECTED] > Subject: [REBOL] Re: FW: REBGUI Tables > > Rebgui 'table takes data as a single block, and not block of blocks. > > On 1/13/06, Alan <[EMAIL PROTECTED]> wrote: > > > > > > > > > > -----Original Message----- > > From: Alan [mailto:[EMAIL PROTECTED] > > Sent: Thursday, January 12, 2006 12:10 PM > > To: '[EMAIL PROTECTED]' > > Subject: REBGUI Tables > > > > I'm having trouble displaying a block via a word. > > > > In view and lists I can do something like: > > > > stuff: [ > > ["Mike" "111 Main Street" "Rockaway"] > > ["BoB" "222 James Place" "NY"] > > ] > > view layout [ > > > > vh2 "Jobs:" > > > > list yellow 500x200 [ > > origin 0 > > across > > text bold 200 > > text 100 > > text 50 > > ] > > data stuff > > > > ] > > > > How do I do this in tables with rebgui? I'v tried things like this to no > > avail: > > > > stuff: [ > > ["Mike" "111 Main Street" "Rockaway"] > > ["BoB" "222 James Place" "NY"] > > ] > > > > display "Grid" [ > > ex-table: table #WH options [ > > "Name" left .4 "Address" left .3 "City" left .3 > > ] > > data stuff > > ] > > > > -Alan > > > > -- Graham Chiu http://www.compkarori.com/emr/ Synapse-EMR - a free electronic medical records system -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
