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

[REBOL] is this a bug?

From: rishioswal::yahoo::com at: 10-Apr-2001 10:26

tab keyword doesn't seem to function properly when used vertically: Rebol [] view layout [ tabs 40 field "Field 1" tab field "Field 2" tab field "Field 3" ] Why doesn't the tab between field 2 and field 3 show up? Also, the last example in section 10.2 in rebol developers guide doesn't seem to demonstrate anything about tabs. tab sizes are specified, but not used.. Here is the example: view layout [ tabs 40 field "Field 1" field "Field 2" field "Field 3" return across tabs 100 button "Button 1" button "Button 2" button "Button 3" ] shouldn't it be: view layout [ tabs 40 field "Field 1" tab field "Field 2" tab field "Field 3" tab return across tabs 100 button "Button 1" tab button "Button 2" tab button "Button 3" tab ] Rishi