Results 1 to 7 of 7

Thread: OCX Files and Inno

Threaded View

  1. #3
    PowerPoster jcis's Avatar
    Join Date
    Jan 2003
    Location
    Argentina
    Posts
    4,430

    Re: OCX Files and Inno

    By reading the DEP file (RICHTX32.DEP, it's in Windows System folder)..
    Code:
    ; Default Dependencies ----------------------------------------------
    
    [RichTx32.ocx]
    Dest=$(WinSysPath)
    Register=$(DLLSelfRegister)
    Version=6.0.88.4
    Uses1=RichEd32.dll
    Uses2=ComCat.dll
    Uses3=
    CABFileName=RichTx32.cab
    CABDefaultURL=http://activex.microsoft.com/controls/vb6
    CABINFFile=RichTx32.inf
    
    [ComCat.dll]
    Dest=$(WinSysPathSysFile)
    Register=$(DLLSelfRegister)
    Uses1=
    
    [RichEd32.dll]
    Dest=$(WinSysPathSysFile)
    ...
    ComCat.dll is a VB Runtime file, it's present in all installers, but the one you need here is RichEd32.dll, so in INNO SETUP I think it should be:
    Code:
    ; RichTextBox Control
    Source: YourRedistFolder\RichEd32.dll; DestDir: {sys}; Flags:  sharedfile
    Source: YourRedistFolder\Richtx32.ocx; DestDir: {sys}; Flags:  sharedfile regserver restartreplace
    Last edited by jcis; May 14th, 2010 at 12:36 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width