Auto save using a text box

Still using C8 on this application, is there a way to automatically save something entered is a text box.

Thanks

You can do it by using Timer…

1 Like

Using a timer is OK, but it is probably more efficient to subclass the control.

In the past, when using a timer, I’ve made it conditional.

Something like:

CASE EVENT()
OF EVENT:Timer
    IF FOCUS() = ?MyTextControl !
        IF MyString <> ?MyTextControl{PROP:ScreenText}
            UPDATE(?MyTextControl)
        END                    
    END                
END
2 Likes