In my table I have a field called CompanyTagged (yes/no data type) which I am using by tagging companies indvidually. And a field call TaggedExplanation--where you can jot down a note why you tagged this record. If the checkbox is checked it will display a label with the word TAGGED and bring up the form to enter TaggedExplanation data.
Now, I keep getting this error message:
Below is the code I am using:
Using Access 2007, only user, not network--at home PC.
Any ideas why?
Now, I keep getting this error message:
Write Conflict:
This record has been changed by another user since you started editing it. If you save record, you will overwrite the changes the other user made.
Copying the changes to the clipboard will let you look at the values the other user entered, and then paste your changes back in if you decide to make changes.
Save Record Copy to Clipboard Drop Changes
This record has been changed by another user since you started editing it. If you save record, you will overwrite the changes the other user made.
Copying the changes to the clipboard will let you look at the values the other user entered, and then paste your changes back in if you decide to make changes.
Save Record Copy to Clipboard Drop Changes
Below is the code I am using:
Code:
Private Sub Form_Current()
If Me!chkCompanyTagged.Value = -1 Then
Me!lblTagged.Visible = True
Else
Me!lblTagged.Visible = False
End If
End Sub
-------------------------------------------------------------------------
Private Sub chkCompanyTagged_Click()
If Me!chkCompanyTagged.Value = -1 Then
Me!lblTagged.Visible = True
DoCmd.OpenForm "fdlgCompanyTaggedExplanation", , , "CompanyID = " & Me!txtCompanyID
Else
If Me.chkCompanyTagged.Value = 0 Then
' Make sure fdlgCompanyTaggedExplanation is open
If Not IsFormLoaded("fdlgCompanyTaggedExplanation") Then
Me!lblTagged.Visible = False
Else
Forms!fdlgCompanyTaggedExplanation!CompanyTaggedExplanation.Value = Null
DoCmd.Close acForm, "fdlgCompanyTaggedExplanation", acSaveYes
Me!lblTagged.Visible = False
End If
End If
End If
End Sub
Using Access 2007, only user, not network--at home PC.
Any ideas why?