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

VID examples?

 [1/4] from: kpeters::vu-ware::com at: 30-May-2005 16:26


Hi all ~ as a newbie coming from Delphi I find the absence of good VID documentation (beyond the simpler stuff from rebol.com) quite frustrating - so my question is: Does someone have or know of an unconvoluted example of how to use multiple forms (both modal and nonmodal) - something like a main form with two buttons, one of which would bring up a second form in modal state and another button that would bring up a 2nd form in non-modal state? As always, thanks for any pointers, Kai

 [2/4] from: greggirwin::mindspring::com at: 30-May-2005 20:03


Hi Kai, KP> Does someone have or know of an unconvoluted example of how to use multiple KP> forms (both modal and nonmodal) - something like a main form with two KP> buttons, one of which would bring up a second form in modal state KP> and another button that would bring up a 2nd form in non-modal state? Something like this? view layout [ button "non-modal" [ view/new layout [text "I'm non-modal" button "hide" [unview]] ] button "modal" [ inform layout [text "I'm modal" button "hide" [hide-popup]] ] ] -- Gregg

 [3/4] from: ammon::johnson::gmail::com at: 30-May-2005 20:00


The best VID documentation that exists (IMHO) is, ironically, documentation that was written to aid the design of a lighter weight GUI System for REBOL which can be found here: http://www.dobeash.com/it/rebgui/ HTH!! ~~Ammon ;~> On 5/30/05, Gregg Irwin <[greggirwin--mindspring--com]> wrote:

 [4/4] from: kpeters::vu-ware::com at: 30-May-2005 23:13


Thanks,= Ammon &&#160;Gregg - that's exactly what I had in mind! Kai