nelson m. 7-14. -ingresar a microsoft office word

20
Manual del reproductor Nelson M. 7-14

Upload: benito-mendoza-casado

Post on 02-Feb-2016

223 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Nelson M. 7-14. -Ingresar a Microsoft Office Word

Manual del reproductor

Nelson M. 7-14

Page 2: Nelson M. 7-14. -Ingresar a Microsoft Office Word

Primer Paso (inico)-Ingresar a Microsoft Office Word

Page 3: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Presionar ALT+F11

Page 4: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Presionar INSERTAR,USERFORM

Page 5: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Nombrarlo(en “NAME”) “FRMReproductor”

Page 6: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Ir a “backcolor” “paleta”, escoger color

Page 7: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Ir al cuadro de herramientas, clic derecho, seleccionar “controles adicionales.

Segundo Paso (pantalla)

Page 8: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Seleccionar Windows Media Player

Page 9: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Hacer la pantalla y nombrarla WMPPantalla.

Page 10: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Ir a “personalizado” y cambiar Full(default) por none y quitar el inicio automático.

Page 11: Nelson M. 7-14. -Ingresar a Microsoft Office Word

Para poner una imagen (opcional) van al menú, le dan en picture y escogen una de las suyas

Page 12: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Cuadro de herramientas –Boton comando –colocar boton –nombrar CMD(nombre del boton)

Botones

Page 13: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Play: Private Sub CMDPlay_click()WMPPantalla.Controls.playEnd Sub

-Pause: Private Sub CMDPause_click()WMPPantalla.Controls.pauseEnd Sub

Programación de cada botón

Page 14: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Stop: Private Sub CMDStop_click()WMPPantalla.Controls.stopEnd Sub

-Reverse: Private Sub CMDReverse_Click()WMPPantalla.Controls.fastReverseEnd Sub

-Frowards: Private Sub CMDFrowards_click()WMPPantalla.Controls.fastForwardEnd Sub

Page 15: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Menos: Private Sub CMDmenos_Click()WMPPantalla.settings.volume =

WMPPantalla.settings.volume - 10End Sub

-Mas: Private Sub CMDmas_Click()WMPPantalla.settings.volume =

WMPPantalla.settings.volume + 10End Sub

-Private Sub CommandButton1_Click()

End Sub

Page 16: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Encendido: Private Sub CMDEncendido_Click()If estado = False ThenCMDPlay.Enabled = TrueCMDPause.Enabled = TrueCMDStop.Enabled = TrueCBOlista.Enabled = Trueestado = True

Else

CMDPlay.Enabled = FalseCMDPause.Enabled = FalseCMDStop.Enabled = FalseCBOlista.Enabled = Falseestado = False

End IfEnd Sub

Page 17: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Salir:Private Sub CMDSalir_Click()ThisDocument.Application.Visible = TrueThisDocument.Application.QuitEnd Sub

Page 18: Nelson M. 7-14. -Ingresar a Microsoft Office Word

- Private Sub CBOlista_Change()Select Case CBOlista.ListIndexCase 0WMPPantalla.URL = ActiveDocument.Path & ("/videos/ nombre del video.WMV")Case 1WMPPantalla.URL = ActiveDocument.Path & ("/videos/ nombre del video.WMV")Case 2WMPPantalla.URL = ActiveDocument.Path & ("/videos/ nombre del video.WMV")

End SelectEnd Sub

Y-Private Sub UserForm_Activate()CBOlista.AddItem “nombre del video"CBOlista.AddItem " nombre del video”CBOlista.AddItem " nombre del video "

End Sub

Para agregar videos

Page 19: Nelson M. 7-14. -Ingresar a Microsoft Office Word

-Poner elija un video

Page 20: Nelson M. 7-14. -Ingresar a Microsoft Office Word

Y ya tienen listo su propio reproductor

Atte: Nelson 7-14 2012