Hi,
I am receiving a 424 error when I change the text box on the Data slide. In the past this code works.
The objective is to change the text field on the Data slide and have the min1 field on slide DAP_Lost_FL04.
I have checked all of the field names and slide names and they are correct.
What could cause the error and what is the solution?
Thanks,
Mike
I am receiving a 424 error when I change the text box on the Data slide. In the past this code works.
The objective is to change the text field on the Data slide and have the min1 field on slide DAP_Lost_FL04.
I have checked all of the field names and slide names and they are correct.
What could cause the error and what is the solution?
Thanks,
Mike
Code:
Private Sub min_batch_Change()
If Data.min_batch.Text > "" Then
DAP_Lost_FL04.min1.Text = Data.min_batch.Text
End If
End Sub