Hello everyone,
I wouldn’t say i have a problem, but it has bugged me since i started programming with FoxPro the way when you are deleting text out of a text box and you come to the end you will jump to the next text box in the tab order and this can be bad with users and they will continue to delete the next textbox in the order when not paying attention.
I’m using FoxPro 7 now sure if this is fixed now but i read about and this is a bug? As this is not the normal behavior with other programs. Has anyone found a way or worked out some code?
I would be interested in if this is a bug like i think, and how you lot have gotten around it.
I found this code while looking around the internet for more information.
*!* If Lastkey() = 127 And Empty(This.Value)
*!* Return 0
*!* EndIf
But that means when you delete the full text box you can’t move off... I’m not sure if you can then put an else in there for mouse click? I’m not sure what key that is.
I wouldn’t say i have a problem, but it has bugged me since i started programming with FoxPro the way when you are deleting text out of a text box and you come to the end you will jump to the next text box in the tab order and this can be bad with users and they will continue to delete the next textbox in the order when not paying attention.
I’m using FoxPro 7 now sure if this is fixed now but i read about and this is a bug? As this is not the normal behavior with other programs. Has anyone found a way or worked out some code?
I would be interested in if this is a bug like i think, and how you lot have gotten around it.
I found this code while looking around the internet for more information.
*!* If Lastkey() = 127 And Empty(This.Value)
*!* Return 0
*!* EndIf
But that means when you delete the full text box you can’t move off... I’m not sure if you can then put an else in there for mouse click? I’m not sure what key that is.