Hi Guys,
I have a weighbridge application that is mostly operated from one form, several operators make dockets on this screen, now I want them to press a cmdButton to register their name in the record, this is the way I do it now;
Now in this world people come and go and I was wondering if I could code the buttons on the form based on a table called tblWBOperators
Here is the crazy guy again, first of all I want to wish everybody a Merry Christmas and a Happy New Year, with these wishes goes a great amount of gratitude for the help and the things I learn from all of you.
I have a weighbridge application that is mostly operated from one form, several operators make dockets on this screen, now I want them to press a cmdButton to register their name in the record, this is the way I do it now;
Code:
Private Sub cmdWBO_Monika_Click()
Me.WBOperator = "Monika Trczinska"
End Sub
Private Sub cmdWBO_Pat_Click()
Me.WBOperator = "Pat Loopy"
End Sub
Private Sub cmdWBO_PatLalor_Click()
Me.WBOperator = "Pat Lalor"
End Sub
Now in this world people come and go and I was wondering if I could code the buttons on the form based on a table called tblWBOperators