Reproducir MP3

Foro público de Xailer en español
Responder
Avatar de Usuario
gerencia
Mensajes: 282
Registrado: Sab Jun 20, 2009 6:01 pm

Reproducir MP3

Mensaje por gerencia »

Hola a todos,
Alguien sabe como reproducir un MP3 en Xailer
Jose David Angulo Urzola
Auditoria y Sistemas Ltda.
Cartagena-Colombia
Avatar de Usuario
Hurricane
Mensajes: 262
Registrado: Mar Mar 24, 2015 10:21 am
Ubicación: Brasil
Contactar:

Re: Reproducir MP3

Mensaje por Hurricane »

Olá,

veja o exemplo SAMPLES\VIDEO\VideoPlayer.XPJ
O arquivo fonte da classe TVideoPlayer esta junto.

Código: Seleccionar todo

METHOD FormInitialize( oSender ) CLASS TVideo

   DeleteMenu( GetSystemMenu( ::Handle ), 2, MF_BYPOSITION )
   WITH OBJECT ::oMCI := TVideoPlayer():New( Self )
      //:cMediaFile := "fp.avi"
      :cMediaFile := "teste.mp3"
      :Create()
      ::SetClientSize( :nWidth, :nHeight )
   END
   ::lCentered := .T.

RETURN Nil

Código: Seleccionar todo

METHOD FormShow( oSender ) CLASS TVideo

   ::oMCI:Play()

RETURN Nil
gerencia escribió: Mié Ene 26, 2022 6:20 pm Alguien sabe como reproducir un MP3 en Xailer
Developments | Trainings | Projects
Site | E-mail | Messenger | YouTube
Avatar de Usuario
gerencia
Mensajes: 282
Registrado: Sab Jun 20, 2009 6:01 pm

Re: Reproducir MP3

Mensaje por gerencia »

Magnifico.

Mil Gracias.
Jose David Angulo Urzola
Auditoria y Sistemas Ltda.
Cartagena-Colombia
Responder