At 11:44 AM 8/17/2005, Alex Gawaresky wrote:

What is best recommended method on an input form to show to
the user (preferably in another color) where the cursor is?

Alex,

If you really want to create a cool interface with changing
colors on focused field/control while entering the data, you
can use the following technique:

-- On Entry into EEP
PROPERTY <ComponentID> COLOR 'YELLOW' -- or favorite color
RETURN

-- On Exit from EEP
PROPERTY <ComponentID> COLOR 'WHITE' -- or default color
RETURN

This will require to define Component IDs for all editable
controls on that particular form.

Have fun!

Very Best R:egards,

Razzak.

Reply via email to