davesmith202
Employee of Access World
- Local time
- Today, 11:48
- Joined
- Jul 20, 2001
- Messages
- 522
I have the following code that doesn't seem to work properly.
Field Ad1Headline has a value in it, but I don't get to see "2" popup. Is there something obvious I am missing?
Thanks,
Dave
Code:
If Forms!frmDefaults!Ad1Headline = "" Then
MsgBox "1"
Forms!frmDefaults!Ad1Headline = Me.Title
ElseIf Forms!frmDefaults!Ad2Headline = "" Then
MsgBox "2"
Forms!frmDefaults!Ad2Headline = Me.Title
End If
Field Ad1Headline has a value in it, but I don't get to see "2" popup. Is there something obvious I am missing?
Thanks,
Dave