PUT-KEY-VALUE Failed (4454)

jmac13

Member
Hi All,



Running a program and i get a "PUT-KEY-VALUE Failed (4454)" seems to come up on different databases but not on another.

the below is a bit of the stack trace


Code:
 createDynamicColor adm2/visual.p (C:\PROGRESS\OPENEDGE\gui\adm2\visual.r) at line 5547
 
 initWinColors adm2/visual.p (C:\PROGRESS\OPENEDGE\gui\adm2\visual.r) at line 3388
 
 adm2/visual.p (C:\PROGRESS\OPENEDGE\gui\adm2\visual.r) at line 2283
 
 start-super-proc gateway\tabView.w (.\gateway\tabView.w) at line 3444
"
Not sure why its comming up progress says "The PUT-KEY-VALUE failed. The file might be write protected. " but the file isnt mark as read only or anything. I'm running it as .w not got a .r

Any ideas would be a great help cheers
 

jmac13

Member
turns out the ini the thats being used was set as read only and causing that message. Once I turned that off it was happy
 

Lechat

New Member
Since turn off read-only status of .ini files for all users was not an option, we just added to the .ini files:
...
[ADM]
Color3DFace=32
Color3DHighLight=33
Color3DShadow=34
...

visual.p tries to add these 3 lines.
 
Top