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

[REBOL] desktop diff between rebol view and Rebol/ViewDll

From: bry::itnisk::com at: 5-Mar-2004 10:06

noticed there was a significant difference between the word desktop in Rebol/View and Rebol/ViewDll Rebol/View
>> source desktop
desktop: func [][ if block? ctx-viewtop [ctx-viewtop: context ctx-viewtop] ctx-viewtop/init-desktop do-events ]
Rebol/ViewDll
>> source desktop
desktop: func [url [url! file! any-type!]][ system/options/quiet: true if block? ctx-viewtop [ctx-viewtop: context ctx-viewtop] ctx-viewtop/init-desktop if value? 'url [ctx-viewtop/show- folder :url] do-events]