This topic is locked

inline edit : Blanking fields

3/2/2008 5:14:23 PM
ASPRunnerPro General questions
J
Justy author

Hi,
Using build 393.
If I have the following defined in the Before Record Update Event., and I use the in-line edit function to mark up another field without allowing inline edit on MAKE the MAKE field becomes blank when I save.
str = dict("make")

for i=1 to len(str)

if (i=1) then

b = true

else

b = ( Mid(str, i-1, 1)=" " )

end if
if b then _

str = left(str, i-1) & UCase(Mid(str, i,1)) & LCase(Mid(str, i+1))
next

dict("make")=str
Is there a way around this?
Regards,

Justin.