Am 21.11.2009 um 05:42 schrieb Alfred Van Hoek: > What else needs to get pulled into the build app allowing usage of the > Runtime class?
Are you sure runtime is a class? dim r as Runtime does not work, but this works: dim s as _systemclass and even this: dim s as new _systemclass MsgBox str(s.MouseX) So while System seems to be a global property (or a function returning the same singleton object), the runtime seems to be a real module as it has classes inside: dim r as Runtime.ObjectIterator = Runtime.IterateObjects So if Runtime is a module, you'd need to reference the functions inside directly, I think. Greetings Christian _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
