I would lock the textbox so the user has to use the command buttons. then,
create two buttons - cmdPlus and cmdMinus. Let's call the text box with the
value txtWinCount
In the On Click event of the buttons:
Me.TxtWinCount = Me.txtWinCount + 1
Of course, that would be for the add, for the subtract use
Me.TxtWinCount = Me.txtWinCount - 1
> Hello again - I am still messing around with this poker player database and
> came across something that would make life easier but cannot figure out how
[quoted text clipped - 12 lines]
> Regards,
> Gregg / KCFlorist.com
KCFlorist - 15 Apr 2005 16:55 GMT
Ok - I see you logic but stumbled. To create the command button I assume I
want it to run a macro? So if I create a macro called cmdplus and cmdminus,
what would the command lines in the macro be? I tried creating the command
button and replaced the EVENT PROCEDURE in the ON CLICK field with the string
you posted below but it came back saying CANNOT FIND MACRO NAMED ME. Thanks
for helping out.
> I would lock the textbox so the user has to use the command buttons. then,
> create two buttons - cmdPlus and cmdMinus. Let's call the text box with the
[quoted text clipped - 22 lines]
> > Regards,
> > Gregg / KCFlorist.com