Solved Hide Windows Media Player Details (1 Viewer)

murray83

Games Collector
Local time
Today, 12:39
Joined
Mar 31, 2017
Messages
762
Hi All

So have managed to get videos to work in my quiz ( see attached example and vid file ) but now i have one follow up question how do you / or can you

Hide the player buttons and file name ( file name not that important ) but would like it to hide the play stop buttons ( if possible of course )

ps

seems i cant send the video i did on my phone but quite easy to just change the URL in the table

tblQuestions


Thanks all for looking
 

Attachments

I have fixed it by adding

Code:
   Me.WMPQuizVid.uiMode = "none" 'trying to hide play back buttons


so

Code:
  'for video attempt
      If Not IsNull(rst![VideoAttached]) Then 'Some video is attached to the question
      'Me.Question.Width = 4479 'Reduce the width of the question box so the video box not covered some of the question
      Me.WMPQuizVid.Visible = True 'Show the video box
      Me.WMPQuizVid.URL = rst![VideoAttached] 'Put the video in to play ?
    End If

became

Code:
  'for video attempt
      If Not IsNull(rst![VideoAttached]) Then 'Some video is attached to the question
      'Me.Question.Width = 4479 'Reduce the width of the question box so the video box not covered some of the question
      Me.WMPQuizVid.Visible = True 'Show the video box
      Me.WMPQuizVid.uiMode = "none" 'trying to hide play back buttons
     Me.WMPQuizVid.URL = rst![VideoAttached] 'Put the video in to play ?
    End If

Thanks for all who looked

But happy to say works fine :)
 

Attachments

set the control's uIMode to "none"
 

Users who are viewing this thread

Back
Top Bottom