... pc de mi cliente con win 7 da : Error description: Error TOleAuto/65535 : TOLEAUTO:NEW
Que 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
Search found 34 matches: isactivex
Searched query: isactivex
- Tue Jul 30, 2019 11:34 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: error con ocx
- Replies: 0
- Views: 327
- Tue Sep 20, 2016 7:35 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problemas biometria Sdk 2009 Griaule
- Replies: 0
- Views: 694
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 = oFinger ...
**************************************//***************************************
LOCAL nErr,oFinger
IF IsActiveX("GrFingerX.GrFingerXCtrl.1")
oFinger := TActiveX():New( oDlgActiveX, "GrFingerX.GrFingerXCtrl.1",0,0,.2,.2)
oDlgActiveX:oClient = oFinger ...
- Thu Feb 19, 2015 11:33 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Lector Biométrico
- Replies: 14
- Views: 5341
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")
oWndx ...
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")
oWndx ...
- Sun May 23, 2010 3:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TActiveX 2 ToleAuto
- Replies: 4
- Views: 873
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.![Smile :)](./images/smilies/icon_smile.gif)
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.
![Smile :)](./images/smilies/icon_smile.gif)
- Wed Sep 23, 2009 4:21 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Imprimir desde RMChart (Solucionado)
- Replies: 4
- Views: 1260
Re: Imprimir desde RMChart (Solucionado)
... rmc). 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 se borran los ficheros Rmchart.ocx ...
En la clase he modificado esta línea
IF IsActiveX( "RMChart.RMChartX" ).and.file(GetSysDir() +"\RMChart.ocx").and.file(GetSysDir() + "\RMChart.dll")
Porque si se borran los ficheros Rmchart.ocx ...
- Fri May 15, 2009 11:48 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Codejock RibbonBar primeras pruebas
- Replies: 92
- Views: 33138
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 la consulta con IsActivex()
Si no está registrada, entonces la registras con RegisterServer() , agregando, ahora si ...
Debes indicarlo sin la "v" y sin ".ocx" cuando haces la consulta con IsActivex()
Si no está registrada, entonces la registras con RegisterServer() , agregando, ahora si ...
- Fri May 15, 2009 8:07 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Codejock RibbonBar primeras pruebas
- Replies: 92
- Views: 33138
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 + " /s" )
como se debe registrar el OCX desde Fwh...
ALGUIEN SABE
if ! IsActiveX( "Codejock.CommandBars.v13.0.0.Demo.ocx" )
RegisterServer( "Codejock.CommandBars.v13.0.0.Demo.ocx" )
endif
tampoco esto::
WinExec( "REGSVR32 " + cDestino + " /s" )
como se debe registrar el OCX desde Fwh...
ALGUIEN SABE
- Tue Apr 28, 2009 7:00 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RegisterServer( )
- Replies: 16
- Views: 4189
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 be
IsActivex("Codejock.CommandBars.12.1.1")
or you can use the ...
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 be
IsActivex("Codejock.CommandBars.12.1.1")
or you can use the ...
- Mon Apr 27, 2009 9:55 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RegisterServer( )
- Replies: 16
- Views: 4189
Re: RegisterServer( )
Dear Mr.Antonio,
Thankyou for clearing my confusion regarding the IsActivex()
Regards
Anser
The question is: why the CLSID is not found for a certain PROGID ?
Thankyou for clearing my confusion regarding the IsActivex()
![Smile :)](./images/smilies/icon_smile.gif)
Regards
Anser
- Mon Apr 27, 2009 9:39 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RegisterServer( )
- Replies: 16
- Views: 4189
Re: RegisterServer( )
Anser,
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 ?![Sad :(](./images/smilies/icon_sad.gif)
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 ?
![Sad :(](./images/smilies/icon_sad.gif)
- Mon Apr 27, 2009 5:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RegisterServer( )
- Replies: 16
- Views: 4189
Re: RegisterServer( )
... 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") ...
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") ...
- Sat Apr 25, 2009 5:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RegisterServer( )
- Replies: 16
- Views: 4189
Re: RegisterServer( )
... 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 is already ...
In both the version IsActivex("Codejock.CommandBars.v12.1.1.ocx") returns .F.
If IsActivex("Codejock.CommandBars.v12.1.1.ocx") MsgInfo("Activex is already ...
- Fri Apr 10, 2009 6:12 pm
- Forum: WhatsNew / Novedades
- Topic: New FTDN April/Abril 2009 (9.04)
- Replies: 6
- Views: 4505
Re: New FTDN April/Abril 2009 (9.04)
... 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 ...
* 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 ...
- Fri Apr 10, 2009 1:20 pm
- Forum: WhatsNew / Novedades
- Topic: New FTDN April/Abril 2009 (9.04)
- Replies: 6
- Views: 4505
New FTDN April/Abril 2009 (9.04)
... 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 ...
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 ...
- Mon Apr 06, 2009 6:22 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Codejock RibbonBar first tests
- Replies: 116
- Views: 41110
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 ...
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 ...