How to toggle INS key
How to toggle INS key
Is is possible to switch between OverType and Insert mode under program control? Thanks in advance
Toggle INSERT / OVERWRITE
Hello,
Just define a Var like :
Regards
Uwe [/code]
Just define a Var like :
Code: Select all
// Default
lSetInsert := .F.
If lSetInsert = .T.
READINSERT( .T. )
ELSE
READINSERT( .F. )
ENDIF
or :
IIF( lSetinsert = .T., READINSERT( .T. ), READINSERT( .F. ) )
Uwe [/code]
Last edited by ukoenig on Thu Mar 20, 2008 7:26 pm, edited 1 time in total.
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Thank You
That works a treat ukoenig ... many thanks.