Hi Matt,
Although Rebol interpret is very stable and good piece of code there are still some bugs which could crash it. here are two example which bothers me in View(in both try to press "hide box button"): FIRST CRASH EXAMPLE a: make face [ size: 50x50 color: red ] b: make face [ color: blue pane: [a] ] view layout [ bx: box with [ pane: [b] ] button "hide box" [ hide bx ] ] SECOND CRASH EXAMPLE a: make face [size: 50x50 color: red] view layout [ box with [ color: blue pane: reduce [a] ] button "hide box" [ hide a/parent-face ] ] Also drawing filled polygons bigger than visible area of window using DRAW dialect can cause problems like strange console message "not-enough memory" like: view layout [box 200x200 effect [draw [fill-pen red polygon 406x-672 227x43 1022x782 fill-pen blue polygon 406x-672 1022x782 -44x126]]] regards, Cyphre PS: there is probably more situations in other fields than graphics how to crash Rebol but I remember those because I spent lot of time when debugging them... ----- Original Message ----- From: "Matt MacDonald" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 29, 2003 3:48 PM Subject: [REBOL] Re: Windows Crash > > I'm not saying it's a bug at all. It could just be something I'm doing. I > just wanted to know if any particular situations, loops, timers, engages, > etc. have a tendency to cause this problem > > Matt > > > >From: "Matt MacDonald" <[EMAIL PROTECTED]> > >Reply-To: [EMAIL PROTECTED] > >To: [EMAIL PROTECTED] > >Subject: [REBOL] Windows Crash > >Date: Mon, 29 Sep 2003 08:23:35 -0400 > > > > > >Does anybody know any common circumstances in REBOL that would cause a > >REBOL > >program to crash in windows. You know, that do/don't send info to > >microsoft > >crash? I'm not really even sure where to start looking to fix something > >like that. > > > >Matt > > > >_________________________________________________________________ > >Get McAfee virus scanning and cleaning of incoming attachments. Get > >Hotmail > >Extra Storage! http://join.msn.com/?PAGE=features/es > > > >-- > >To unsubscribe from this list, just send an email to > >[EMAIL PROTECTED] with unsubscribe as the subject. > > > > _________________________________________________________________ > Add MSN 8 Internet Software to your existing Internet access and enjoy > patented spam protection and more. Sign up now! > http://join.msn.com/?page=dept/byoa > > -- > To unsubscribe from this list, just send an email to > [EMAIL PROTECTED] with unsubscribe as the subject. > > -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.
