I just wanted to post one of my modules that I successfully wrote from scratch with more or less no help for once and see how I did. This works exactly as I intended it to for committing essentially transactions to various reels of wire and solves an ongoing problem I had been having with committing the right transaction to the correct reel.
Are there any improvements I could make? Did I do something outright wrong that I should have done differently? Just looking for feedback to continue improving
Are there any improvements I could make? Did I do something outright wrong that I should have done differently? Just looking for feedback to continue improving

Code:
Public Sub CommitMultiCut(NoError As Boolean)
Dim DB As DAO.Database
Dim RS As DAO.Recordset
Dim RS2 As DAO.Recordset
Dim Wrk As DAO.Workspace
Dim vMultiID As Long
Dim vReelID As Long
Dim vTicketID As Long
Dim vCurrentLength As Long
Dim vCutLength As Long
Dim vCutNum As Long
Dim TotalLength As Long
Dim strsql As String
On Error GoTo ErrHandler
'Get TicketID, create workspace and set recordsets
vTicketID = [Forms]![frmWireRoom]![TicketID]
Set DB = CurrentDB()
Set Wrk = DBEngine.Workspaces(0)
Set RS = CurrentDb.OpenRecordset("SELECT * FROM tblMultiConductorCut WHERE TicketID = " & vTicketID & "")
With RS
Wrk.BeginTrans
Do While Not .EOF
If !MultiComplete = True Then
'if cut is already flagged as complete, skip to prevent double dipping
.MoveNext
Else
vMultiID = ![MultiID]
vReelID = ![WireReelID]
vCutLength = ![CutLength]
vCutNum = ![CutNum]
If IsNull(vCutNum) Then
TotalLength = vCutLength
Else
TotalLength = vCutLength * vCutNum
End If
Set RS2 = CurrentDb.OpenRecordset("SELECT * FROM tblWireRoom WHERE [ReelID] = " & vReelID & "")
'Update the wire reel to reflect the cut
With RS2
'make sure we are working on the correct reel
If ![ReelID] = vReelID Then
RS2.Edit
vCurrentLength = ![CurrentLength]
RS2!CurrentLength = vCurrentLength - TotalLength
RS2.Update
End If
End With
With RS
'once again make sure we havent deviated from the current record for whatever reason
If ![MultiID] = vMultiID Then
RS.Edit
![MultiComplete] = True
RS.Update
End If
End With
'run query to log cut to audit table using the DAO method
strsql = "INSERT INTO tblCutLog ( CutReelID, StartingLength, CutLength, EndLength, TicketID) "
strsql = strsql & "VALUES (" & vReelID & ", " & vCurrentLength & ", " & TotalLength & ", " & vCurrentLength - TotalLength & ", " & vTicketID & ");"
CurrentDb.Execute strsql, dbFailOnError
.MoveNext
End If
Loop
Wrk.CommitTrans
NoError = True
End With
Exit Sub
ErrHandler:
NoError = False
Select Case Err.Number
Case 3317
'one of the choosen reels did not have enough length
MsgBox "One of the choosen source(s) has insufficient length. Please choose a different source. Operation has been canacelled and no changes have been made", vbOKOnly, "Error"
Wrk.Rollback
NoError = False
Exit Sub
Case Else
MsgBox Err.Description, vbOKOnly, Err.Number
End Select
End Sub
Last edited: