I am finding tons of similar answers to this, but they do not seem to fix my issue. I have a Private Sub DeleteRecord that calls a Public Function recDelete(RowNum As Integer, Payer As String) As Boolean, which is a regular module. In the function, I open a form ufDecision, which I intend to use for multiple record type deletion "Are you sure"... prompts. In the ufDecision, I have this code to capture a response to proceed with deletion:
```
Private Sub imgProceed_Click()
Answer = True
Me.Hide
End Sub
```
I thin intend to assign ```recDelete = Answer``` to pass back to the DeleteRecord sub. Answer is a publicly declared Boolean. After the code is stepped through and confirmed to go through the True assignment, Answer always show false (empty actually). I guess I have tunnel vision. So what am I missing?
```
Private Sub imgProceed_Click()
Answer = True
Me.Hide
End Sub
```
I thin intend to assign ```recDelete = Answer``` to pass back to the DeleteRecord sub. Answer is a publicly declared Boolean. After the code is stepped through and confirmed to go through the True assignment, Answer always show false (empty actually). I guess I have tunnel vision. So what am I missing?