AlanJordan
Programmer
This technique is so simple that I hesitate to share it with people, but I use it everyday. Perhaps you'll find it useful.
When I am copying-and-pasting code, I start put a '@ before the block of code and an '@@ after the block of code. Example:
When I am finished revising the code, and it is tested. I remove the comments.
This is particularly useful when I get called away from what I am doing, and I have quickly figure out where to start again.
It's also a handy way to double check code that I have adapted.
When I am copying-and-pasting code, I start put a '@ before the block of code and an '@@ after the block of code. Example:
Code:
Sub ShowEmployeeNumber()
'Show employee number and ask user to verify it
'@
Dim db As Database
Dim qdf As QueryDef
Dim rs As Recordset
Dim strQueryName As String
Dim strNoOfLogInsToday As String
strQueryName = "qry_p_GetKKEeNumber"
Set db = CurrentDb()
Set qdf = db.QueryDefs(strQueryName)
Dim strKKLogin As String
Me.cboEEFullName.SetFocus
qdf.Parameters("Enter Full Name") = Me.cboEEFullName.Text
mboolNextStepOK = False
'To avoid recordset type mismatch problems, assure DAO is loaded before ADO in references.
Set rs = qdf.OpenRecordset(dbReadOnly)
If Not rs.EOF Then
gstrKKLogin = rs(0)
gstrFirstName = rs(2)
gstrLastName = rs(1)
glngEENum = rs(3) 'KKTempID
Me.lblKK.Caption = "Your Kids Kottage Login is " & gstrKKLogin
'@@
'Here is where we do processing
Me.lblEeNum.Caption = gstrKKLogin
'Me.lblEeNum.Caption = glngEENum
With Me.lblKK
.Caption = "Please verify your Kids Kottage Login"
.ForeColor = OK_GREEN
End With
Me.fraVerifyEENum.Visible = True
Else
MsgBox "Please tell a supervisor that there is a problem finding your Kids Kottage Login. You may have to log in manually today.", vbExclamation
GoTo StopProcessing
End If
'Do nothing.
StopProcessing:
'We have found our record, and recorded the information.
'Release memory and do housekeeping
Set rs = Nothing
Set qdf = Nothing
End Sub
When I am finished revising the code, and it is tested. I remove the comments.
This is particularly useful when I get called away from what I am doing, and I have quickly figure out where to start again.
It's also a handy way to double check code that I have adapted.