Search found 34 matches: isactivex

Return to advanced search

error con ocx

... puede ser, registre el ocx como administrador, lo copie a windows\system32 y sigue el mismo error. El error lo da al crear el objeto, si hago if isActiveX("aaaa.ocx") lo detecta como instalado. Saludos Jorge
by jpcavagnaro
Tue Jul 30, 2019 11:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error con ocx
Replies: 0
Views: 272

Problemas biometria Sdk 2009 Griaule

... ,oImagemDedo ,cMyContextID , cQualDedo ) **************************************//*************************************** LOCAL nErr,oFinger IF IsActiveX("GrFingerX.GrFingerXCtrl.1") oFinger := TActiveX():New( oDlgActiveX, "GrFingerX.GrFingerXCtrl.1",0,0,.2,.2) oDlgActiveX:oClient ...
by marca
Tue Sep 20, 2016 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problemas biometria Sdk 2009 Griaule
Replies: 0
Views: 642

Re: Lector Biométrico

Buen día... También estoy intentando con un ejemplo publicado en este foro... pero marca error en el oFingerX:Do("Initialize") ??? IF IsActiveX("GrFingerX.GrFingerXCtrl") DEFINE dialog oWndx TITLE "FiveWin ActiveX Support" oFingerX = TActiveX():New( oWndx, "GrFingerX.GrFingerXCtrl.1") ...
by russimicro
Thu Feb 19, 2015 11:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lector Biométrico
Replies: 14
Views: 4420

Re: TActiveX 2 ToleAuto

Antonio,

How know when a PROGID is a ActiveX and when is a COM ?
isActiveX(ProgID) return true.

so think that it's wrong.

in wXP work fine, only a vista and seven that give-me erro. :)
by lailton.webmaster
Sun May 23, 2010 3:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TActiveX 2 ToleAuto
Replies: 4
Views: 820

Re: Imprimir desde RMChart (Solucionado)

... Si usas otra carpeta tienes que modificar la clase. (busca cOrigen := ".\RMChart\RMChart.dll") En la clase he modificado esta línea IF IsActiveX( "RMChart.RMChartX" ).and.file(GetSysDir() +"\RMChart.ocx").and.file(GetSysDir() + "\RMChart.dll") Porque si ...
by alvaro533
Wed Sep 23, 2009 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir desde RMChart (Solucionado)
Replies: 4
Views: 1148

Re: Codejock RibbonBar primeras pruebas

if ! IsActiveX( "Codejock.CommandBars.13.0.0.Demo" )    RegisterServer( "Codejock.CommandBars.v13.0.0.Demo.ocx" )endif Debes indicarlo sin la "v" y sin ".ocx" cuando haces ...
by Cgallegoa
Fri May 15, 2009 11:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codejock RibbonBar primeras pruebas
Replies: 92
Views: 27609

Re: Codejock RibbonBar primeras pruebas

el tema es que esto no funciona:: if ! IsActiveX( "Codejock.CommandBars.v13.0.0.Demo.ocx" ) RegisterServer( "Codejock.CommandBars.v13.0.0.Demo.ocx" ) endif tampoco esto:: WinExec( "REGSVR32 " + cDestino + " ...
by mantonio_08
Fri May 15, 2009 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codejock RibbonBar primeras pruebas
Replies: 92
Views: 27609

Re: RegisterServer( )

Dear Mr.Antonio,Mr.Stephan & Mr.Natter IsActivex() is working now as expected. I found out my mistake The Parameter to IsActivex which I used was wrong IsActivex("Codejock.CommandBars.v12.1.1.ocx") // wrong one The parameter should ...
by anserkk
Tue Apr 28, 2009 7:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RegisterServer( )
Replies: 16
Views: 3696

Re: RegisterServer( )

Dear Mr.Antonio,

The question is: why the CLSID is not found for a certain PROGID ? :(


Thankyou for clearing my confusion regarding the IsActivex() :)

Regards
Anser
by anserkk
Mon Apr 27, 2009 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RegisterServer( )
Replies: 16
Views: 3696

Re: RegisterServer( )

Anser,

I don't know why IsActivex() always returning .F. in my PC


FWH IsActiveX() checks if a CLSID exists for a given PROGID:
http://en.wikipedia.org/wiki/ProgID
if not found, then .F. is returned.

The question is: why sometimes the CLSID is not found for a certain PROGID ? :(
by Antonio Linares
Mon Apr 27, 2009 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RegisterServer( )
Replies: 16
Views: 3696

Re: RegisterServer( )

... one who knows/purchased the license key. Then, for first run you application, do : regsvr32 /s Codejock.CommandBars.v12.1.1.ocx I don't know why IsActivex() always returning .F. in my PC, eventhough it is registered CoInitialize() If IsActivex("Codejock.CommandBars.v12.1.1.ocx")  ...
by anserkk
Mon Apr 27, 2009 5:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RegisterServer( )
Replies: 16
Views: 3696

Re: RegisterServer( )

... FWH application on a different PC (On a PC where CodeJock Setup is NOT installed), then I find the problem described as above In both the version IsActivex("Codejock.CommandBars.v12.1.1.ocx") returns .F. If IsActivex("Codejock.CommandBars.v12.1.1.ocx")    MsgInfo("Activex ...
by anserkk
Sat Apr 25, 2009 5:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RegisterServer( )
Replies: 16
Views: 3696

Re: New FTDN April/Abril 2009 (9.04)

... un control usa la clausula DESING y se mueve con el ratón. * Nuevo: Nueva función CoInitialize(). Esta función se debería llamar antes de llamar a IsActiveX( cProgId ) si el control ACTIVEX no se ha creado todavía. * Nuevo: Nuevo método Destroy() en la clase TActiveX. Este método es necesario para ...
by Antonio Linares
Fri Apr 10, 2009 6:12 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3659

New FTDN April/Abril 2009 (9.04)

... when a control uses the DESIGN clause and is moved with the mouse. * New: function CoInitialize(). This function should be called before calling IsActiveX( cProgId ) if no ACTIVEX control has been created yet. * New: Class TActiveX Method Destroy(). This method is required to solve a detected ...
by Antonio Linares
Fri Apr 10, 2009 1:20 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3659

Re: Codejock RibbonBar first tests

... pParams, aButtons )MsgInfo(ValType(cEvent)) Dear Mr.Antonio, As suggested by you I tried CoInitialize() before calling IsActiveX( cProgId ) but still IsActivex() is always returning .F. I tried a utility named RegDllView, to check whether the OCX is registered, and it ...
by anserkk
Mon Apr 06, 2009 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock RibbonBar first tests
Replies: 116
Views: 35186
Next

Return to advanced search