josephbupe
Registered User.
- Local time
- Today, 11:01
- Joined
- Jan 31, 2008
- Messages
- 247
Original sample was provided by: ByteMyzer (AWF VIP)
In one of his sample (player) db, part of the code was as before:
If uMsg = MM_MCINOTIFY And wParam = MCI_NOTIFY_SUCCESSFUL Then
If CurrentProject.AllForms("frmTracks").IsLoaded = True Then
Forms("frmTracks").Form_CallBack
End If
I have just created another form and put the form ByteMyzer's form "frmTracks" as a subform. Unfortunately, the reference isn't working for me.
If uMsg = MM_MCINOTIFY And wParam = MCI_NOTIFY_SUCCESSFUL Then
If CurrentProject.AllForms("frmUnbound!frmTracks").IsLoaded = True Then
Forms("frmUnbound!frmTracks").Form_CallBack
End If
End If
But, when i only open the form "frmTracks" itself, the playing (reference) works well.
Some one help me with the correct sintax.
Josephbupe
In one of his sample (player) db, part of the code was as before:
If uMsg = MM_MCINOTIFY And wParam = MCI_NOTIFY_SUCCESSFUL Then
If CurrentProject.AllForms("frmTracks").IsLoaded = True Then
Forms("frmTracks").Form_CallBack
End If
I have just created another form and put the form ByteMyzer's form "frmTracks" as a subform. Unfortunately, the reference isn't working for me.
If uMsg = MM_MCINOTIFY And wParam = MCI_NOTIFY_SUCCESSFUL Then
If CurrentProject.AllForms("frmUnbound!frmTracks").IsLoaded = True Then
Forms("frmUnbound!frmTracks").Form_CallBack
End If
End If
But, when i only open the form "frmTracks" itself, the playing (reference) works well.
Some one help me with the correct sintax.