Search found 42 matches: oact

Return to advanced search

Re: Plotting locations on Google Maps

Try in clausule ON INIT of oWndEdt -> oAct:Navigate(cMapFile)

Also try in clausule ON PAINT
by cnavarro
Fri Mar 17, 2017 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14244

Re: How to fill web page ??(SOLVED)

Thanks Guys,

The problem was solved changing the code for this:

nPos := 4
oAct:Document():All:Item("grupo_radio",nPos):Checked := "true"
by vilian
Mon Aug 24, 2015 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to fill web page ??
Replies: 4
Views: 1065

Re: How to fill web page ??

Hi Vilian, I'm using oAct:=TActiveX():New(oWndEdt,"Shell.Explorer.2") To navigate at this page, but don´t have sucess in select a item :( The source code of the radio item in page is: <tr><td class="box">  ...
by Carlos Mora
Sat Aug 22, 2015 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to fill web page ??
Replies: 4
Views: 1065

How to fill web page ??

... that i need select an item of the radio http://i300.photobucket.com/albums/nn3/Vilian_Arraes/Clipboard01_zpstixl9nvq.jpg I'm using oAct:=TActiveX():New(oWndEdt,"Shell.Explorer.2") To navigate at this page, but don´t have sucess in select a item :( The source code of the ...
by vilian
Fri Aug 21, 2015 12:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to fill web page ??
Replies: 4
Views: 1065

Re: Codejock and Harbour + FWH

... C:\Users\GeorgeRM\AppData\Local\Temp\Codejock.SuitePro.ActiveX.Eval.16.2.6.dll After commenting the line 65 oAct:Do( "VisualTheme", .T. ), the program compiles without error but the same result only displaying the message about Trial Codejock Version ...
by George
Mon Jan 27, 2014 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock and Harbour + FWH
Replies: 7
Views: 2840

Re: open a video in a dialog box?

Other sample: #include "Fivewin.ch" static oWnd, oAct Function main() define window ownd wmp("arquivo.mp4") activate window ownd Return nil function wmp( cFile ) oAct:=TActiveX():New( oWnd, "MediaPlayer.MediaPlayer.1") oAct:SetProp( ...
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: 1785

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: 1785

Re: Juan Planelles Lazaga

... oNewFont:nPitchFamily, oNewFont:cFaceName },; @nNewColor ) Eval( bSave ) oNewFont:End() Return nil //------------- Static Function Actual() local oAct Define Window oAct TITLE "Leyendo: RESOLUCION" nAH := oAct:nHorzRes() nAV := oAct:nVertRes() Activate Window oAct ON INIT ( oAct:Hide(), ...
by Juan Planelles
Tue Dec 29, 2009 10:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6724

TactiveX ( To Antonio )

Well,

Today in news fivewin have TActiveX:hObj,
i need use it in fwh 801, how i can do ?

when i use oAct:hObj give error hObj don´t exist;

can help ? :?

how add this to old fivewin. i try too oAct:oOleAuto too don´t exist.
by lailton.webmaster
Sun Nov 29, 2009 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TactiveX ( To Antonio )
Replies: 2
Views: 454

Class MyActiveX

... that is necessary. Can make download here http://fivewin.com.br/exibedicas.asp?id=1026 How use: #include "MyActiveX.ch" @ 0, 0 MyACTIVEX oAct "Codejock.SkinFrameWorks.13.2.1" OF oWnd size 300,400 Or by REDEFINE mode REDEFINE MyACTIVEX oAct ID 4001 OF oWnd PROGID "Codejock.SkinFrameWorks.13.2.1" ...
by lailton.webmaster
Thu Nov 26, 2009 5:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class MyActiveX
Replies: 0
Views: 352

Re: Erro com 9.07

Rossine,

En vez de:

oAct:Do( "VisualTheme", .T. )

prueba con:

oAct:VisualTheme = .T.
by Antonio Linares
Sat Aug 22, 2009 5:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9116

Re: Erro com 9.07

...         return nil   Porque estas propriedades estão dando erro de execução, como se elas não existissem: *   oAct:Do( "VisualTheme", .T. )...     *   oRb:ShowQuickAccessBelowRibbon(.F.)*   oRb:ShowCaptionAlways(.T.) ...
by Rossine
Sat Aug 22, 2009 3:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9116

Re: Erro com 9.07

Olá Antonio, Prueba a cambiar: ... := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) por esto: ... := TOleAuto():New( oAct:oOleAuto:__hObj ) Sim, isto funcionou :D Veja no exemplo abaixo que tive comentar algumas linhas "*" para poder compilar e ...
by Rossine
Fri Aug 21, 2009 1:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9116

Re: Erro com 9.07

Rossine,

Prueba a cambiar:

... := TOleAuto():New( ActXPdisp( oAct:hActiveX ) )

por esto:

... := TOleAuto():New( oAct:oOleAuto:__hObj )
by Antonio Linares
Fri Aug 21, 2009 9:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9116

Re: Erro com 9.07

Olá Antonio, Es esta la línea 80 en donde se produce el GPF ? oStatusBar := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) Funcionaba este mismo código bien, anteriormente ? Sim antonio, funcionava com o harbour mais antigo. Tente rodar o exemplo de daniel que está neste link: ...
by Rossine
Fri Aug 21, 2009 1:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9116
Next

Return to advanced search