D
Dave - daking
I recently converted an Access 2000 backend to a SQL
Server 2000 database with minimal problems. However when
I made some changes to a form in the Access front end and
compiled the VB code behind the form I received the
following error message indicating a problem with
Me.GroupTogether:
"Method or Data member not found"
The procedure listed below generated the above error
message:
Private Sub CmdChangeGrpTogeth_Click()
Dim currRec As Long
'Original module
currRec = Me.CurrentRecord
If Me.GroupTogether = True Then
Me.GroupTogether = False
Else
Me.GroupTogether = True
End If
DoCmd.Requery
DoCmd.GoToRecord , , acGoTo, currRec
End Sub
The GroupTogether is a column in the table behind the form
with datatype Yes/No. Is there an alternative way to
handle the above situation?
Server 2000 database with minimal problems. However when
I made some changes to a form in the Access front end and
compiled the VB code behind the form I received the
following error message indicating a problem with
Me.GroupTogether:
"Method or Data member not found"
The procedure listed below generated the above error
message:
Private Sub CmdChangeGrpTogeth_Click()
Dim currRec As Long
'Original module
currRec = Me.CurrentRecord
If Me.GroupTogether = True Then
Me.GroupTogether = False
Else
Me.GroupTogether = True
End If
DoCmd.Requery
DoCmd.GoToRecord , , acGoTo, currRec
End Sub
The GroupTogether is a column in the table behind the form
with datatype Yes/No. Is there an alternative way to
handle the above situation?