S
Silvio
What's the best way to enter a new record in a table (I know there are so
many ways)?
Before the record is saved:
1. All the field need to be validated before the the record is actually
entered/saved
2. If the projet number already exting in the table then the record should
not be entered.
What I have done is:
Create a new form based on the table
Create unbound control where the user will enter data, then a command button
will validate each filed and if the data is correct then the record is saved
by:
me.Proj = TxProj
me.Desc = TxDesc and so on
Is this a good way, or there is better more reliable and fater method?
many ways)?
Before the record is saved:
1. All the field need to be validated before the the record is actually
entered/saved
2. If the projet number already exting in the table then the record should
not be entered.
What I have done is:
Create a new form based on the table
Create unbound control where the user will enter data, then a command button
will validate each filed and if the data is correct then the record is saved
by:
me.Proj = TxProj
me.Desc = TxDesc and so on
Is this a good way, or there is better more reliable and fater method?