Search found 12 matches: mediaplayer

Return to advanced search

TActiveX() (play a video or sound)

TActiveX() no Funciona en FWH 12.12 Alguien sabe porque

oActiveX = TActiveX():New( oDlg,"MediaPlayer.MediaPlayer.1",oDlg:nTop, oDlg:nLeft, oDlg:nRight, oDlg:nBottom )
Sale este error: Can't read from type ActiveX

Existe otra manera de mostrar videos.

Gracias

Saludos,

Adhemar
by acuellar
Fri Jun 14, 2013 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TActiveX() (play a video or sound)
Replies: 23
Views: 5399

Re: Mostrar duraccion de Video

... lo que necesitamos. STATIC Function GetPropFile( oWnd, cFile ) LOCAL oActiveX, pStatus pStatus:=Array(11) oActiveX = TActiveX():New( oWnd, "MediaPlayer.MediaPlayer.1",0,0,0,0) oActiveX:SetProp( "FileName", cFile ) oActiveX:Hide() pStatus[1] := cFileNoPath( oActiveX:GetProp( ...
by RodolfoRBG
Tue Aug 16, 2011 4:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar duraccion de Video
Replies: 8
Views: 2130

Re: Conocer la dimensiones de una imagen sin tener que abrirla

... ya que vi en tu ejemplo que usas ActiveX para mostrar videos, yo hago lo mismo y uso la siguiente linea:   @ 58,0 ACTIVEX oActiveX PROGID "MediaPlayer.MediaPlayer.1" OF oWndV SIZE 400,400  y me funciona bien en WVista pero al correr el sistema en WXP solo muestra la caratura inicial ...
by RodolfoRBG
Mon Aug 15, 2011 7:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conocer la dimensiones de una imagen sin tener que abrirla
Replies: 4
Views: 681

MediaPlayer.MediaPlayer.1

... DEFINE DIALOG oDlgeNT RESOURCE "DLG1" REDEFINE ACTIVEX oActiveX2 ID 4001 of oDlgeNT PROGID "MediaPlayer.MediaPlayer.1" ACTIVATE DIALOG oDlgeNT ON INIT( ARRANCAACTIVEX()) CENTER RETURN FUNCTION ARRANCAACTIVEX() oActiveX2:ShowControls :=.f. ...
by ochacon
Sat Jan 22, 2011 6:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MediaPlayer.MediaPlayer.1
Replies: 0
Views: 394

Se podra ver una secuencia de videos con "MediaPlayer.MediaP

... DEFINE DIALOG oDlgeNT RESOURCE "DLG1" REDEFINE ACTIVEX oActiveX2 ID 4001 of oDlgeNT PROGID "MediaPlayer.MediaPlayer.1" ACTIVATE DIALOG oDlgeNT ON INIT( ARRANCAACTIVEX()) CENTER RETURN FUNCTION ARRANCAACTIVEX() oActiveX2:ShowControls :=.f. ...
by ochacon
Mon Dec 27, 2010 1:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se podra ver una secuencia de videos con "MediaPlayer.MediaP
Replies: 1
Views: 581

Re: open a video in a dialog box?

... main() define window ownd wmp("arquivo.mp4") activate window ownd Return nil function wmp( cFile ) oAct:=TActiveX():New( oWnd, "MediaPlayer.MediaPlayer.1") oAct:SetProp( "FileName", cFile ) oWnd:oClient:=oAct Return
by lailton.webmaster
Mon Feb 22, 2010 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: open a video in a dialog box?
Replies: 5
Views: 1789

Re: open a video in a dialog box?

Using this mode, if u resize window video resize too.

STATIC Function ActivaWMP( oDlg, cFile )
Local oAct:=TActiveX():New( oDlg, "MediaPlayer.MediaPlayer.1")
oAct:SetProp( "FileName", cFile )
oDlg:oClient:=oAct
Return oAct
by lailton.webmaster
Mon Feb 22, 2010 7:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: open a video in a dialog box?
Replies: 5
Views: 1789

Re: open a video in a dialog box?

... oDlg, oActiveX, cFile ) /*------------------------------------------------------------------------------*/ oActiveX = TActiveX():New( oDlg, "MediaPlayer.MediaPlayer.1",; oDlg:nTop, oDlg:nLeft, oDlg:nRight, oDlg:nBottom ) oActiveX:SetProp( "FileName", cFile ) Return( oActiveX ...
by jll-fwh
Mon Feb 22, 2010 4:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: open a video in a dialog box?
Replies: 5
Views: 1789

Re: Ayuda sobre TVIDEO y DIALOGS

... oActiveX, cFile ) /*------------------------------------------------------------------------------*/    oActiveX = TActiveX():New( oDlg, "MediaPlayer.MediaPlayer.1",;                               oDlg:nTop, oDlg:nLeft, oDlg:nRight, oDlg:nBottom )    oActiveX:SetProp( "FileName", ...
by jll-fwh
Wed Feb 03, 2010 8:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda sobre TVIDEO y DIALOGS
Replies: 10
Views: 1898

Re: ROM Kitchen tools

... a PDA and with ROM kitchen software you can create a setup: “your own WINDOWS CD”. What I would like is a windows installation without internet, mediaplayer my own software included. Best regards, Otto
by Otto
Wed Jan 27, 2010 7:25 am
 
Forum: FiveWin for Pocket PC
Topic: ROM Kitchen tools
Replies: 3
Views: 1054

MediaPlayer and vista Problem

... Mike. DEFINE WINDOW owndvid FROM 0,0 TO 400,550 pixel style nOr(WS_POPUP ) activevid = TActiveX():New( owndvid, "MediaPlayer.MediaPlayer.1" ) activevid:TransparentAtStart:=.t. activevid:FileName ="fivewin.avi" ...
by Mike Buckler
Mon Oct 27, 2008 11:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MediaPlayer and vista Problem
Replies: 3
Views: 613

Return to advanced search