Just discovered a problem today in my Access Database where Video Files will not play.
They were working yesterday. I notice there has been a new update of Access on Windows 11 to Version 2501, dated 11th Feb 2025 - i.e. yesterday.
Before I roll back the Access version, which I don't want to do, I wonder if anyone else has noticed this problem.
The videos play perfectly well outside of Access using the Windows Media Player.
I'm wondering if something has changed in the parameters to Windows Media Player.
The code in the form is :-
Looking at the frame, there does not seem to be anything in the playlist although the values above are all correct.Code:With Me.WindowsMediaPlayer .stretchToFit = True .Width = lngVideoWidth .Height = lngVideoHeight .Top = Me.imgBirdImage.Top + (lngMaxHeight - lngVideoHeight) / 2 .Left = Me.imgBirdImage.Left + (lngMaxWidth - lngVideoWidth) / 2 .settings.volume = 100 .URL = pstrURL .Object.Controls.play .currentPlaylist.Name = gstrBirdName End With
![]()