Error in mscomct2.ocx after application of active directory

Hello!

I developed a system of inventory for my business application, that I am currently working.

The application is developed using VB6 and works perfectly until the Active Directory is implemented.

The error will like "component mscomctl.ocx or one of its dependencies is not correctly registered... etc.

I already checked the administrator account and tried the app and it works exactly the way it should be.

I have already ruled out the user to the list of unauthorized users and included everyone in the group. I rebooted the computer several times.

I guess that active directory is causing the problem.

The error goes to the time windows 7 & 8 (64-bit)

Please help me.

Thanks in advance

Hi Owen,.

Welcome to the Microsoft community.

The question you posted would be better suited in the TechNet Forums. I suggest you to ask your question in the TechNet Forums for assistance.

http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

I hope it helps. If you have any questions about Windows in the future, please let us know. We will be happy to help you.

Thank you

Kulu Sharma.

Tags: Windows

Similar Questions

  • Run the run-time error '339': 'mscomct2.ocx' or one of its dependenceies component is not correctly registered: a file is missing or invalid

    As I upgraded fom Win 7Pro to Win 8 Pro I can't get one of my software programs work correctly, it worked fine on Win 7 Pro, I tried all sorts of internet remedys, but nothing works, I get the message following run-time error '339': 'mscomct2.ocx' or one of its dependenceies component is not properly registered : a file is missing or invalid.i have tried to get that it is running in compatibility mode, but the same error message keeps comeing. The software installs fine, can someone give me that any ideas how I can stop this error message and get my software to work, it's the only piece of software I use every day, but during the last three weeks, I have been unable to use frustrating it.very. Thanks You.Robert

    A quick and simple solution to this problem.

    Simply follow the instructions below, download the file, install it and bingo, you have sorted.

    This will save you having to reinstall interactive Raceform, but you can do before a new installation if you wish.

    Click on the link below (or copy and paste it into a browser address bar):

    http://download.Microsoft.com/download/vfoxodbcdriver/install/6.1/W9XNT4/en-us/Vfpodbc.msi

    If you do this in Google Chrome you will see this in the lower left corner of your screen-

    Double-click this and you should now see this-
    Choose to run
    Now, you will see this-
    And it should now be as easy as just after the other, agree questions etc after clicking this first suite.
    This will allow you to install drivers for Visual FoxPro that will hopefully Raceform Interactive must be installed after that he completed.
  • Error trying to configure user IOM to Active Directory by using SSL

    Hi all

    I am able to see users through LDAP over SSL browser but get the following error trying to configure users IOM to RFA by using SSL.

    I use Microsoft Active Directory 9.11 connector type.

    Answer: Connection error encountered
    Description of the response: error occurred when connecting to the target system

    I did a few tests using the "diagnostic dashboard" and here are the results.

    Name of the test: target system SSL verification of approval: past
    Name of the test: test basic connectivity: failure

    Exceptions:
    ITResource of the informative values are not correct. Enter the correct values.
    java.lang.reflect.InvocationTargetException
    javax.naming.CommunicationException: simple bind failed:
    Unable to find the path of valid certification for target asked.
    Name of the test: Test commissioning: failure

    Note: Without SLL got past all of the above tests.


    Can someone help me with this question.

    Thanks in advance.

    Pradeep Kumar.

    It shows clearly that it is not able to connectto AD to the SSL port.

    What are the values you gave in ADITResource as port no. * 636 * and SSL enabled true/yes etc.

    Are you sure that your certificate is correct and you are able to connect to AD to the port 636?

    JXplorer can test SSL...

  • reproduce the error login name and after application crash

    Hello

    I have attached the code that generates the duplicate connection name error and after they crash the application.

    Note :-in app when you press tab 3 at that point they extract data and once you press tab 3 then app crash,.

    So please update me as soon as possible.

    Thank you

    Umang.

    Still awaiting response that you will find attached code or I also include the code here

    QML

    // Default empty project template
    import bb.cascades 1.0
    
    TabbedPane {
        id: tabMeniuNavigation
    
        //showTabsOnActionBar: true
        Tab {
            title: qsTr("All")
            id: tab1
            Page {
                Container {
                    // define tab content here
                    Label {
                        text: qsTr("Tab1")
                        horizontalAlignment: HorizontalAlignment.Center
                        textStyle {
                            base: SystemDefaults.TextStyles.TitleText
                        }
                    }
                }
            }
        }
        Tab {
            id: tab2
            title: qsTr("Tab2")
            Page {
                Container {
                    // define tab content here
                    Label {
                        text: qsTr("Tab2")
                        horizontalAlignment: HorizontalAlignment.Center
                        textStyle {
                            base: SystemDefaults.TextStyles.TitleText
                        }
                    }
                }
            }
        }
        Tab {
            id: tab3
            title: qsTr("Tab3")
            content: Page {
                Container {
                    ListView {
                        objectName: "otherNoteListView"
                    } // ListView
                }
            }
            onTriggered: {
                app.medicialListData();
            }
        }
        Tab {
            id: tab4
            title: qsTr("Tab4")
            Page {
                Container {
                    // define tab content here
                    Label {
                        text: qsTr("Tab 4")
                        horizontalAlignment: HorizontalAlignment.Center
                        textStyle {
                            base: SystemDefaults.TextStyles.TitleText
                        }
                    }
                }
            }
        }
        Tab {
            id: tab5
            title: qsTr("Tab5")
            Page {
                Container {
                    // define tab content here
                    Label {
                        text: qsTr("Tab5")
                        horizontalAlignment: HorizontalAlignment.Center
                        textStyle {
                            base: SystemDefaults.TextStyles.TitleText
                        }
                    }
                }
            }
        }
        onCreationCompleted: {
            // this slot is called when declarative scene is created
            // write post creation initialization here
            console.log("TabbedPane - onCreationCompleted()")
    
            // enable layout to adapt to the device rotation
            // don't forget to enable screen rotation in bar-bescriptor.xml (Application->Orientation->Auto-orient)
            OrientationSupport.supportedDisplayOrientation = SupportedDisplayOrientation.All;
        }
    }
    

    CPP

    // Default empty project template
    
    #include "FindMedicin.hpp"
    #include "customListMedicinitemfactory.h"
    
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    using namespace bb::data;
    
    FindMedicin::FindMedicin(bb::cascades::Application *app) :
            QObject(app) {
        // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
        qml->setContextProperty("app", this);
    
        // create root object for the UI
        root = qml->createRootObject();
        // set created root object as a scene
        app->setScene(root);
    }
    
    FindMedicin::~FindMedicin() {
    
        QSqlDatabase::removeDatabase(mDbNameWithPath);
        delete medicinListView;
        model->registerUserData();
    
    }
    
    QString FindMedicin::copyFileToDataFolder(const QString fileName) {
        // Since we need read and write access to the file, it has
        // to be moved to a folder where we have access to it. First,
        // we check if the file already exists (previously copied).
        QString dataFolder = QDir::homePath();
        QString newFileName = dataFolder + "/" + fileName;
        QFile newFile(newFileName);
    
        if (!newFile.exists()) {
            // If the file is not already in the data folder, we copy it from the
            // assets folder (read only) to the data folder (read and write).
            QString appFolder(QDir::homePath());
            appFolder.chop(4);
            QString originalFileName = appFolder + "app/native/assets/" + fileName;
            QFile originalFile(originalFileName);
    
            if (originalFile.exists()) {
                // Create sub folders if any creates the SQL folder for a file path like e.g. sql/quotesdb
                QFileInfo fileInfo(newFileName);
                QDir().mkpath(fileInfo.dir().path());
    
                if (!originalFile.copy(newFileName)) {
                    qDebug() << "Failed to copy file to path: " << newFileName;
                }
            } else {
                qDebug() << "Failed to copy file data base file does not exists.";
            }
        }
    
        return newFileName;
    }
    
    //Find Pharama
    void FindMedicin::medicialListData() {
        CustomListMedicinItemFactory *otherNoteItemFactory =
                new CustomListMedicinItemFactory();
        qDebug() << "MediaList Data Called.";
    
        // create a data model with sorting keys for firstname and lastname
        model = new GroupDataModel(QStringList() << "field1");
    
        mDbNameWithPath = copyFileToDataFolder("sql/FindMedicin.db");
    
        // load the sql data from contacts table
        SqlDataAccess sda(mDbNameWithPath);
    
        //sda = new SqlDataAccess(mDbNameWithPath, this);
        if (sda.hasError()) {
            DataAccessError err = sda.error();
            //DataAccessError* err = sda.error();
            qWarning() << "SQL error: type=" << err.errorType() << ": "
                    << err.errorMessage();
    
        }
        QVariant list = sda.execute("select * from medicin_detail");
        // add the data to the model
        qDebug() << list.value();
        model->setGrouping(ItemGrouping::None);
        model->insertList(list.value());
        // create a ListView control and add the model to the list
        medicinListView = root->findChild("otherNoteListView");
        medicinListView->setObjectName("");
        medicinListView->setDataModel(model);
        medicinListView->setListItemProvider(otherNoteItemFactory);
    }
    

    more code as an attachment.

  • How to disable authentication for application installation in active directory

    I'm a rookie,

    I am system admin at my company and I've implemented active directory in my company.

    every time an employee application, then ask his user name and password and it's good.

    However, there are some users VIP who doesn't want that. So, how can I disable it only for some users so that they can install applications.

    Please help me.

    I am a new joinee in my company and want to learn a lot of things.

    Please help me to provide the best it services my copmpany.

    All want to help me, then please write to me on

    Kind regards

    Faraz

    Hi Faraz,

    Thanks for posting your question in the Microsoft Community forums.
    The description of the problem, I see you want to disable authentication to install applications in active directory for some users.
    As the computer is connected to the domain network, the question you posted would be better suited to the TechNet community. Please visit the link below to find a community that will provide the support you want.
    http://social.technet.Microsoft.com/forums/en/w7itpronetworking/threads
    Hope this information helps you. If you need additional help or information on Windows, I'll be happy to help you. We, at tender Microsoft to excellence.
  • Active Services Web Directory has encountered an error when reading the parameters for the specified Active Directory Lightweight Directory Services instance

    VCenter Server 4.1, I installed it on a physical machine. This is the error message that appears whenever I try to follow what is happening every 1 min event viewer.

    Error:

    role for users: log name: Active Directory Web Services

    Source: ADWS

    Date: 2010-07-28 15:55:21

    Event ID: 1209

    Task category: Instance ADWS events

    Level: WARNING

    Keywords: Classic

    User: n/a

    Computer: wwubmw.williamwoods.local

    Description:

    Services Web Active Directory encountered an error when reading the parameters for the specified Active Directory Lightweight Directory Services instance.  Services Web Active Directory will try again this operation regularly.  At the same time, this body will be ignored.

    Instance name: ADAM_VMwareVCMSDS

    The event XML:

    The OS is Windows 2008 R2. What should I do to solve the problem.

    Thanks for the reference Troy

    If you have found this or other useful information, please consider awarding points to 'Correct' or 'useful '.

    Gregg Robertson, VCP3, 4, MCSE, MCSA, MCTS, MCITP

  • IOM with Active Directory password synchronization

    Hello people:
    On the Active Directory Connector:
    It is possible that the user name and password to access the Oracle Identity Manager is the same when configure you the application to Active Directory and with the same key to access my workstation
    Thank you

    There are two things:
    Movement of IOM to AD password: can be done easily on port 636 (SSL) with AD user management connector
    Password AD to IOM movement: need of the IOM AD password sync connector. Available on OTN.

  • Active Directory can authenticate to the APEX development environment

    Greetings,

    Environment:
    Apex Version 4.0.2
    Database version: 11.2.0.1
    WebLogic 10.3.3
    Listener of the apex

    Is it possible to use Active Directory to authenticate access to the APEX development environment? I have all the individual applications using Active Directory authentication, but I can't find a way to integrate Active Directory to access the development environment.

    Thank you
    Larry

    Larry,

    No, you cannot change the way in which the APEX Application Builder authenticates users.

    brgds,
    Peter

    -----
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • Each time after clicking the icon of user account on windows xp to change a password is crashes with this error message: Microsoft (R) HTML Application host has encountered a problem and needs to close.

    Each time after clicking the icon of user account on windows xp to change a password is crashes with this error message: Microsoft (R) HTML Application host has encountered a problem and needs to close.

    There is a Microsoft Knowledge base article which sets up a few steps to perform in the computer in order to solve the problem you are experiencing, read the article that you find on the link I am mentioning below and see if it helps the measures mentioned:

    http://support.Microsoft.com/kb/919751

  • I added the user name to log on to the computer in the active directory after adding, I can't connect to the internal application by using the user name and password...

    Hello

    I added the user name to log on to the computer in the active directory after adding, I can't connect to the internal application by using the user name and password...

    Please give the solution

    What happens when you try to connect?

    If you are able to connect using the different account, try running gpupdate/force.

    If the problem persists, you can open the discussion on:

    http://social.technet.Microsoft.com/forums/Windows/en-us/home

    What is responsible technical issues forum.

  • Get the access denied error after using the rights delegation wizard in Active Directory

    I used the rights delegation wizard to grant permissions to a group in AD and do not always receive either the access message when I try to change anything on an existing object, I can however create new objects without any problem. What can I do to fix this?

    Original title: Delegation issue in AD

    Hello mhipke,

    Your Windows XP question is more complex than what is generally answered in the Microsoft Answers forums, as it deals with Active Directory. It is better suited for the IT Pro TechNet public. Please ask your question in the ITPRO Technet Windows Server Directory Services.

    I have provided the link for you:
    http://social.technet.Microsoft.com/forums/en-us/winserverDS/threads

    Sincerely,

    Marilyn

  • Commissioning the message 'unable to register the dll/ocx regsvr32 failed with exit code 0 x 3 c:\windows\system32\mscomct2.ocx.

    I started my PC in win7 Pro 64 bit, and I got the error message that says:

    c:\windows\system32\mscomct2.ocx

    Unable to register the dll/ocx: regsvr32 failed with exit code 0 x 3

    I have not installed any software recently.

    I clicked 'OK' and then got this error:

    c:\windows\system32\msmapi32.ocx

    Unable to register the dll/ocx: regsvr32 failed with exit code 0 x 3

    All the help to identify root causes and resolve this situation?

    Thank you

    I have no idea what happened, but after restart PC message did not appear again

  • Error to the store after upgrade

    I've just updated Itunes to version 12.5.1.21 on a Windows 7 Machine Pro 64-bit

    When I try to access the store, I get the crash of the application with this error.

    Nome dell' application che ha generato error: iTunes.exe, version: 12.5.1.21, time stamp: 0x57d32fa7

    Nome del modulo che ha generato error: WebKit.dll, version: 7602.1050.4.5, time stamp: 0x57c12000

    Exception code: 0xc0000005

    Compensate for the error 0x0000000000645e36

    ID processo che ha generato error: 0xbd4

    Ora di d dell' application che ha generato error: 0x01d20e9ec9d1baef

    Percorso dell' application che ha generato error: C:\Program Files\iTunes\iTunes.exe

    Percorso del modulo che ha generato error: C:\Program Files\Common Files\Apple\Apple Application Support\WebKit.dll

    Segnalazione ID: 1594e02a-7a92-11e6-b03d-480fcf28e784

    I already tried to perform a clean install after a complete uninstall (all components in the order recommended by Apple).

    Any idea?

    Thanx

    Hi BR1_80,

    Thank you for using communities of Apple Support. From what you said, it seems that iTunes crashes unexpectedly when accessing the iTunes Store on your Windows computer. Looks like you already have a troubleshooting. I recommend you to read this article, it may be able to help solve the problem.

    Fix unexpectedly closes or problems of launch in iTunes for Windows - Apple Support

    See you soon

  • Error launching of the ' LabVIEW.Application [error Code:-18001]

    Hello
    I have a TS 3.4 mind sequence LabView 8.21 - Teststeps.
    The sequence is called from a Labview-OperatorInterface.
    In a step that run 100 times before without problem I receive all of a sudden the error message:

    ErrorMessage: Error running substep 'run '. Unable to launch the "LabVIEW.Application" ActiveX automation server [error Code:-18001]

    After a restart of the software al NOR-everything works normally again.
    What is this error, and what should I do with it?
    Should I ignore the error and try to execute the step again or not this average tht the ActiveX server has been lost forever?
    How can this problem occur?

    Thanks for your help


  • HP DESKJET 4645: HPdeskjet 4645 paper jam error does not disappear after a clear path completely according to the internet, ask

    HPdeskjet 4645 paper jam error does not disappear after a clear path completely according to the internet, ask

    Hello, @ghlowell,

    Thank you for the update. You can get the serial number of the printer using the HP utility on your computer. You must have the printer software installed to get the same thing.

    Try the following steps to get the serial number.

    • Go to 'Finder' - select 'Applications' - folder Select "HP" or "Hewlett Packard".
    • Now find and open the "HP utility.
    • Click on "device information. Ideally, this should give details of the printer including the serial number.

    Let me know if this helps. Good luck!

    See you soon

    Please click on 'acceptable' on the post that solves your problem to help others to find the solution. To show gratitude for my help, please click the 'Thumbs Up icon' below!

Maybe you are looking for

  • MBP early 2011 start running slow

    Hello I use MBP early 2011, i7 2.2 Ghz, 8 GB RAM, 750 GB HDD (573 GB free). Its pretty slow operation and initialize the time is more than 3 minutes. I ran EtreCheck and the result is the following. Several times in a day, MBP stops responding for a

  • MacBook Pro fn key locked somehow WE

    I managed to make my Macbook Pro 9.1 behave as if the fn button is LIT. I pressed the fn key to make the keyboard to behave normally, is not a viable solution. I tried different combinations of fn, control, option, and command keys (well, all, really

  • My 5520 connects to internet via its usb port

    My University didn't allow wireless printers. My thought was to use the photosmart 5520 in wireless mode, connect to the internet via my dorm room ethernet connection using the usb port of 5520's with a usb adapter to ethernet. I'll just use eprint f

  • XP Backup problem

    I'm trying to retire a Windows XP machine with 12 GB of data of program/user on a hard drive partitioned three.  I use a USB 32 GB as my backup disk.  I tried using a backup and backup/copy the wizard approach backup.  Each time, the backup program r

  • How to add the CHT to TMS in Active Directory

    Hi all I am trying to add a TC to a TMS as a recording device, but it ends with an error "wrong username or password". Both TCS and TMS belong to a same ad (test.local), so I tried "domain/username" and "password", "[email protected] / * /" and "pass