Page 1 of 1

Registrar OCX

Posted: Wed Feb 16, 2011 5:49 pm
by sygecom
Registrar OCX,
Olá,
Tenho a seguinte .OCX:
LiveX_8200.OCX

Como faço para registrar e como chamar ela pelo Activex depois de registrada ?

Re: Registrar OCX

Posted: Wed Feb 16, 2011 8:15 pm
by lailton.webmaster
vc precisa saber o ProgID da ocx.

tenta com

Code: Select all

cProgID := "LiveX_v8200"

If !isActiveX( cProgID )
   WinExec("regsvr32 livex_8200.ocx /s")
   SysRefresh()
   If !isActiveX( cProgID )
       ? "nao foi possivel registrar a ocx "
       quit
   endif
endif
  
oact := Tactivex():New( oWnd, cProgID )
....