The code below works just as it appears to until it reaches the attempt to load the text-list. The commented 'probe' of utildb/2/7 will display exactly the block content expected....but down at the attempt to populate the 'text-list'....nothing happens and the text-list displays 'empty'

Rebol[Title: "displayResident.r"]
resident: system/script/args
vetsdb: load %/c/vetssrc/dietsys/rebdsysmst.txt
resdb: find vetsdb resident
utildb: find vetsdb "0000"
;probe utildb/2/7
;halt
view layout [
backcolor silver
h1 "Dietsys for the New York State Vets' Home"
h2 "View and/or Change any Resident values - Press APPLY to make changes permanent"
across
style labels label maroon font-size 14
labels "Registration #: " across text resident labels "Last Name: " field resdb/2/2
labels "First Name: " field resdb/2/3 labels "MInit: " field 20 resdb/2/4
return
labels "Doctor Assigned: " text-list utildb/2/7
return
button 150x50 "Submit Request"
]