Results 1 to 14 of 14

Thread: Inet problem. 'MSINET.OCX' missing.

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Inet problem. 'MSINET.OCX' missing.

    Hi,
    A software of mine is using INET1 and I think 'MSINET.OCX' is the component added for it.
    On some systems when the software is started, it says 'MSINET.OCX' missing or is not registered.
    How do I handle this problem?

    I took a look in the system32 folder, found the file and 2 more files with same name, but different extensions.
    Please let me know what can be done to solve this...
    Thank you
    Thank you

  2. #2
    "Digital Revolution"
    Join Date
    Mar 2005
    Posts
    4,471

    Re: Inet problem. 'MSINET.OCX' missing.

    You need to install/register the msinet OCX file. This is why you need to use an installer when distributing your program to other people. Inno Setup is a good free one and Easy Install Creator is a lot easier but not as customizable.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Hi,
    I downloaded both those you suggested. The easy install creater is good! However, I was not asked to select .ocx components to install while building an installer.
    (It's also mentioned on their site that one can select .ocx and .dll files required...)
    Did I do something wrong? Please suggest

    My software has 1 exe, 1 help.html , 1 txt file.

    The exe file uses INET1 and RICHTEXT components. The error returned on some systems is MSINET.OCX missing...

    Thank you
    Thank you

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Inet problem. 'MSINET.OCX' missing.

    Quote Originally Posted by sjku
    The error returned on some systems is MSINET.OCX missing...
    Only some, not all?

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Yes, the problem is only on some systems, not all...
    I have distributed 5 packs of this. 2 of them reported the error.
    Can you please tell me what to do? These people are constantly sending me emails...
    Thank you
    Thank you

  6. #6
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Inet problem. 'MSINET.OCX' missing.

    Then I suspect it isn't your software. If it was, then none of them would be working.

    What is the difference between the ones with the errors and the ones without? OS? SP? Machine type/age?

  7. #7

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    For now, I asked the people to download the microsoft updates, but I'm not sure if that will help. Below is what their systems are:
    1. Windows XP 2002
    2. Office 2003.

    My system is older than that...

    Should I try with an installer? If so, please tell me how to add MSINET.OCX and RICHTEXT files to the "easy install creater".
    I created an installer with this software, but it never asked to specify or include the ocx files...
    Thanks
    Thank you

  8. #8

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Hi,
    I also tried inno setup, but that doesn't ask to add these ocx files as well...
    Am i missing some step in these installers?
    Thank you for the guidance so far.
    Thank you

  9. #9

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Can you please tell me what to edit in this "inno setup script", so it checks and installs required OCX files?
    Thanks
    [vbcode]
    ; Script generated by the Inno Setup Script Wizard.
    ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

    [Setup]
    AppName=dbs book
    AppVerName=DBS book version 3
    DefaultDirName={pf}\dbs book
    DefaultGroupName=dbs book
    LicenseFile=D:\0vb\install creaters\license.txt
    OutputBaseFilename=setup
    SetupIconFile=D:\vb\hrd\final\dbs.ico
    Compression=lzma
    SolidCompression=yes

    [Languages]
    Name: "english"; MessagesFile: "compilerefault.isl"

    [Tasks]
    Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
    Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

    [Files]
    Source: "D:\vb\hrd\final\dbs.exe"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\msu-conf.txt"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\dbs_help.html"; DestDir: "{app}"; Flags: ignoreversion
    ; NOTE: Don't use "Flags: ignoreversion" on any shared system files

    [Icons]
    Name: "{group}\dbs book"; Filename: "{app}\dbs.exe"
    Name: "{commondesktop}\dbs book"; Filename: "{app}\dbs.exe"; Tasks: desktopicon
    Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\dbs book"; Filename: "{app}\dbs.exe"; Tasks: quicklaunchicon

    [Run]
    Filename: "{app}\dbs.exe"; Description: "{cm:LaunchProgram,dbs book}"; Flags: nowait postinstall skipifsilent
    [/vbcode]
    Thank you

  10. #10

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Can someone please suggest something here...
    What modifications do I need to make to the inno setup install script above so it checks for appropriate .ocx files?
    Should I remove the flag from the following code?

    [vbcode]
    [Files]
    Source: "D:\vb\hrd\final\dbs.exe"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\msu-conf.txt"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\dbs_help.html"; DestDir: "{app}"; Flags: ignoreversion
    ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
    [/vbcode]

    The first file "dbs.exe" uses the 2 components. (Rich text and Inet)
    Thank you
    Thank you

  11. #11
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Inet problem. 'MSINET.OCX' missing.

    I think this thread would be better served here.

    Moved.

  12. #12

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Posts
    75

    Re: Inet problem. 'MSINET.OCX' missing.

    Sorry for posting it in the internet application forum... My mistake
    Can you please tell me if the following install script is correct and checks/ "registers" required ocx files? I did make an installer using this, but haven't heard from people using it yet, and cannot test on my pC as application is already registered on my pc...

    [vbcode]
    ; Script generated by the Inno Setup Script Wizard.
    ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

    [Setup]
    AppName=dbs book
    AppVerName=DBS book version 3
    DefaultDirName={pf}\dbs book
    DefaultGroupName=dbs book
    LicenseFile=D:\0vb\install creaters\license.txt
    OutputBaseFilename=setup
    SetupIconFile=D:\vb\hrd\final\dbs.ico
    Compression=lzma
    SolidCompression=yes

    [Languages]
    Name: "english"; MessagesFile: "compiler
    Big Grinefault.isl"

    [Tasks]
    Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
    Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

    [Files]
    Source: "C:\WINDOWS\SYSTEM32\MSINET.OCX"; DestDir: {sys}; Flags: regserver restartreplace sharedfile;
    Source: "C:\WINDOWS\SYSTEM32\RICHTX32.OCX"; DestDir: {sys}; Flags: regserver restartreplace sharedfile;

    Source: "D:\vb\hrd\final\dbs.exe"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\msu-conf.txt"; DestDir: "{app}"; Flags: ignoreversion
    Source: "D:\vb\hrd\final\dbs_help.html"; DestDir: "{app}"; Flags: ignoreversion
    ; NOTE: Don't use "Flags: ignoreversion" on any shared system files

    [Icons]
    Name: "{group}\dbs book"; Filename: "{app}\dbs.exe"
    Name: "{commondesktop}\dbs book"; Filename: "{app}\dbs.exe"; Tasks: desktopicon
    Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\dbs book"; Filename: "{app}\dbs.exe"; Tasks: quicklaunchicon

    [Run]
    Filename: "{app}\dbs.exe"; Description: "{cm:LaunchProgram,dbs book}"; Flags: nowait postinstall skipifsilent
    [/vbcode]

    Is that script OK?
    Please suggest changes if it's wrong...
    Thank you
    Thank you

  13. #13
    Addicted Member sigid's Avatar
    Join Date
    May 2006
    Location
    Massachusetts, USA
    Posts
    182

    Re: Inet problem. 'MSINET.OCX' missing.

    At the risk of being somewhat OT here: on the machines where the error message occurs - have they recently upgraded to IE7, by any chance?

  14. #14
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    Re: Inet problem. 'MSINET.OCX' missing.

    ********** would have added the ocx automatically no questions asked...

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