J Jon123 Registered User. Local time Today, 18:44 Joined Aug 29, 2003 Messages 668 Dec 3, 2009 #1 Is there a way to set a command button up so that it can only be used 1 time per record? Kinda set a flag or something ? jon
Is there a way to set a command button up so that it can only be used 1 time per record? Kinda set a flag or something ? jon
ajetrumpet Banned Local time Today, 17:44 Joined Jun 22, 2007 Messages 5,628 Dec 4, 2009 #2 Jon123 said: Is there a way to set a command button up so that it can only be used 1 time per record? Kinda set a flag or something ? jon Click to expand... i would put a flag type field in the record as a boolean and maybe say: true = command button pushed, false = NOT pushed yet. think so?
Jon123 said: Is there a way to set a command button up so that it can only be used 1 time per record? Kinda set a flag or something ? jon Click to expand... i would put a flag type field in the record as a boolean and maybe say: true = command button pushed, false = NOT pushed yet. think so?
J Jon123 Registered User. Local time Today, 18:44 Joined Aug 29, 2003 Messages 668 Dec 4, 2009 #3 What do you mean by boolean? jon
ajetrumpet Banned Local time Today, 17:44 Joined Jun 22, 2007 Messages 5,628 Dec 4, 2009 #4 Jon123 said: What do you mean by boolean? jon Click to expand... boolean is a field type. or data type, rather. it only has two values, true/false, 0/-1, etc, etc...
Jon123 said: What do you mean by boolean? jon Click to expand... boolean is a field type. or data type, rather. it only has two values, true/false, 0/-1, etc, etc...
J Jon123 Registered User. Local time Today, 18:44 Joined Aug 29, 2003 Messages 668 Dec 4, 2009 #5 Got it That works well thank you jon