[REBOL] Rebol/view 2.5.2 crashes !
From: rebol665::ifrance::com at: 7-May-2002 13:32
Hi rebollers,
I have just reported the following problem to feedback.
rebol 2.5.2 "Save as" in the desktop editor.
Save as
opens a file selector where the button "Ouvrir" should be labelled
Enregistrer
. Tested with Windows 98 (french version).
Ouvrir is the french for Open (Enregistrer/Save).
--
rebol 2.5.2 Incorrect slider in the desktop editor
When editing a source code with the desktop editor (right click, button
edit), if the source is too long to fit in the window then the slider is not
correct: the moving part occupies all the space. You have to click on it
once. After that it is smaller and moving correctly.
--
Rebol 2.5.2 Big crash in REBOL.EXE at 017f:00443ee2.
The following error occurs while running a program. I have reduced the
program as much as I could. The crash occurs only if the following line is
uncommented.
; bitmap: make image! none
REBOL a causé une défaillance de page dans
le module REBOL.EXE à 017f:00443ee2.
Registres :
EAX=00000000 CS=017f EIP=00443ee2 EFLGS=00010246
EBX=00000001 SS=0187 ESP=006bf070 EBP=00de6140
ECX=00000007 DS=0187 ESI=00e311a8 FS=0fb7
EDX=00d035e0 ES=0187 EDI=00e777e8 GS=0000
Octets à CS : EIP :
08 58 0d 8b 46 04 08 58 0d ff 4c 24 14 83 c6 10
État de la pile :
00de6140 00e777c8 00e2878c 00000001 00443edb 00000004 00000006 00de6140
00e77818 0071fe38 00000001 00443edb 0000000b 00000005 0071ed34 006d0610
Rebol []
tl-critere: ["1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" "13" "14"
15
"16"]
obj: make object! [
c: array 16
;------------------------------------------ :( uncommenting -> crash !
! !
bitmap: make image! none
layout1: layout [
style mytext text 100x18 right
style mycheck check 18x18
vignette: box 256x320 yellow
below
guide
mytext tl-critere/1
mytext tl-critere/2
mytext tl-critere/3
mytext tl-critere/4
return
c1: mycheck
c2: mycheck
c3: mycheck
c4: mycheck
do [ c/1: c1 c/2: c2 c/3: c3 c/4: c4 ]
return
do [ print "layout 4.01"] ;########################################<debug>
mytext tl-critere/5
mytext tl-critere/6
return
button "That's all folks !" [unview]
do [ print "layout 4.02"] ;########################################<debug>
]
]
view center-face obj/layout1