Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6475837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:45:10+00:00 2026-05-25T06:45:10+00:00

I have a VB6 application, the installer is compiled using INNO Setup. The installer

  • 0

I have a VB6 application, the installer is compiled using INNO Setup.
The installer runs fine. But in about 10% of computers when the user clicks the Icon to run the installed app, it doesn’t start, no error message, only a Beep sound.

This is happening on XP and also Win 7.

I develop in XP and Win 7 and the application works OK, so I haven’t been able to reproduce the issue.

The installer registers all ocx and dlls needed (afaik). (Well not completely all, it assumes MS run-time components should be there, but I guess an error message should show up if something is missing)

I was thinking some kind of user permissions, UAC, but even users in the admin group have had the issue.

Could you point me to what possible issues to look for and test in order to patch the app.

Thanks!

[FOLLOW UP]

Thanks to the tips, found out the manifest is causing the problem. I use it to make the controls look better:

http://www.vbaccelerator.com/home/vb/code/libraries/xp_visual_styles/using_xp_visual_styles_in_vb/article.asp

Now I’m trying to discover why. I have another application with the same manifest and that one works ok.

Haven’t been able to get feedback on the event viewer yet.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T06:45:11+00:00Added an answer on May 25, 2026 at 6:45 am

    The “beep crash” often points to an error in an application manifest such as an XML syntax error or namspace conflict. Event Logs will often provide a hint about this.

    But I’ve found that people often try to use the Common Controls 6.0 Library without ensuring proper library loading sequence.

    Before any Forms are openend you should load shell32 and then comctl32. The easiest way is a couple of no-op calls in Sub Main:

    Option Explicit
    
    Private Declare Sub InitCommonControls Lib "comctl32" ()
    
    Private Declare Function IsUserAnAdmin Lib "shell32" () As Long
    
    Private Sub InitCommonControlsVB()
        IsUserAnAdmin
        InitCommonControls
    End Sub
    
    Private Sub Main()
        InitCommonControlsVB
        Form1.Show
    End Sub
    

    Without this your program will usually work fine in Vista or Win7, but will fail on some XP service pack and patch levels. Part of this is due to changes over time in the Fusion subsystem that handles SxS activation and comctl32.dll patches.

    Ignore those saying you need to call InitCommonControlsEx(), it isn’t necessary unless you are constructing and using Win32 controls directly instead of VB6 and COM controls.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using inno setup to install a vb6 application and drivers. Everything works
I have a legacy VB6 application that was built using MSDE. As many client's
I am creating an installation package for a VB6 application using Visual Studio Installer
I have a VB6 application which opens files with their associated application using: ShellExecute(0,
I have a compiled VB6 application without access to the source. Is it possible
We have a VB6 application using CR 7. We want to move the VB
We have a legacy VB6 application which has worked just fine on Windows XP
I have VB6 application , I want to put some good error handling finction
I have a VB6 application that needs to update it's self. For this purpose,
I have a VB6 application implemented as an ActiveX exe. I also have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.