kirkm
12-14-2008, 05:41 PM
I'm typing into a text box and would like to interpret each character
as it's entered.
Textbox name is Text0. My tests with the both the After Update and
Change events are failing.
This gives an empty msgbox each time
Private Sub Text0_Change()
Dim m
'm = SysCmd(SYSCMD_SETSTATUS, Text0) << didn't work
MsgBox Nz(Text0)
End Sub
What is the just-entered character called, if not text0?
Is 'Change' the right event to use?
Thanks - Kirk
as it's entered.
Textbox name is Text0. My tests with the both the After Update and
Change events are failing.
This gives an empty msgbox each time
Private Sub Text0_Change()
Dim m
'm = SysCmd(SYSCMD_SETSTATUS, Text0) << didn't work
MsgBox Nz(Text0)
End Sub
What is the just-entered character called, if not text0?
Is 'Change' the right event to use?
Thanks - Kirk