Ascentient
IS-IT--Management
- Nov 4, 2002
- 267
to lock the column widths in place on a subform so that the user cannot increase them, thus causing scroll bars to appear?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim intLineNo As Integer
Dim rstClone As DAO.Recordset
Set rstClone = Me.RecordsetClone
With rstClone
.MoveFirst
Do While Not .EOF
intLineNo = intLineNo + 1
.edit
Me.PO_DET_LINE_NO = intLineNo
.update
.MoveNext
Loop
End With
Set rsClone = Nothing
rstClone![PO-DET-LINE-NO] = intLineNo