G
Guest
Is there anyway to make a button only work once and then recieve a message if
it is clicked again?
it is clicked again?
Brendan Reynolds said:If it is clicked again ever? Or only if it is clicked again within the
current session?
For the former, you'd need to store a value somewhere to record the fact
that the button had been clicked, and look it up each time the form opens.
For the latter, you could use a static variable.