Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto Numbering on SubForms 1

Status
Not open for further replies.

peterpcu

MIS
Sep 15, 2005
31
0
0
GB
Hi,
I have developed a small database to hold contracts information. There is a main form named 'Contracts' which has several tabs. One of the Tabs is named 'Documentation' and it contains a subform (named Documentation SubForm) to hold all the documentation associated with a contract - the number of records in the subform varies between contracts.

At present the autonumber on the subform simply increments each time a new document is added. I would like to start the document auto numbering from '1' for each contract.

I have tried the before update event with:
Me.DocInc =Nz(DMax("[DocInc]","[tblDocumentation]","[DocID] = " & Forms!Contracts!DocInc),0)+1
but there seems to be something wrong with the way I am naming the controls on the subform

Any Ideas?

Regards

Pete
 
How are ya peterpcu . . .
peterpcu said:
[blue]I would like to start the document auto numbering from '1' for each contract.[/blue]
You can't use Access autonumber for this, and [blue]DocID can't be a primarykey[/blue] (duplicate key violations)!

If [blue]DocID[/blue] is a primarykey, you'll have to change it's Data Type to [blue]Number[/blue] & Field Size to [blue]Long Integer[/blue]. This done, the table still needs a primarykey . . . so add one. Be aware: anywhere you reference [blue]DocID[/blue] [purple]as the primarykey[/purple], you'll have to switch to the newly added.

With the above taken care of, copy/paste the following to the [blue]Before Update[/blue] event of form [blue]Documentation SubForm[/blue]:
Code:
[blue]   Dim Cri As String
   
   Cri = "[DocInc] = " & Forms!Contracts!DocInc
   
   If Me.NewRecord Then
      Me.DocID = Nz(DMax("[DocID]", "[tblDocumentation]", Cri), 0) + 1
   End If[/blue]
[blue]Your Thoughts? . . .[/blue]

Calvin.gif
See Ya! . . . . . .

Be sure to see thread181-473997
Also faq181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top