Hi guys.
Okay I have a Private Sub on form PlotF:
Some of the checkboxes are locked as I want to force the user to check them on another form (InvoicedF) but I want them to be displayed PlotF as well.
So I want to call the Private Sub from another form. So that the Check212 still automatically checks to true with out PlotF open on the screen.
Is this possible, Do I have to make this private sub a public sub?
If so how do I do this?
I wouldn't consider myself experienced with Access I only know the basics. So if you could please dumb it down for me that would be great
Thanks in advance :banghead:
Okay I have a Private Sub on form PlotF:
Code:
Private Sub SetCheck212()
If Me.[Check161] And Me.[Check169] And _
Me.[Check167] And Me.[Check181] And _
Me.[Check261] And Me.[Check189] And _
Me.[Check187] And Me.[Check195] And _
Me.[Check203] And Me.[Check201] Then
Me.Check212 = True
Else
Me.Check212 = False
End If
End Sub
Private Sub Check161_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check169_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check167_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check181_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check261_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check189_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check187_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check195_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check203_AfterUpdate()
Call SetCheck212
End Sub
Private Sub Check201_AfterUpdate()
Call SetCheck212
End Sub
So I want to call the Private Sub from another form. So that the Check212 still automatically checks to true with out PlotF open on the screen.
Is this possible, Do I have to make this private sub a public sub?
If so how do I do this?
I wouldn't consider myself experienced with Access I only know the basics. So if you could please dumb it down for me that would be great

Thanks in advance :banghead:
Last edited by a moderator: