DCC not starting

Report bugs and errors to the digiCamControl development team.
Post Reply
Martin Hoppe
Posts: 9
Joined: Mon Jun 20, 2022 12:52 pm

DCC not starting

Post by Martin Hoppe » Sun Oct 30, 2022 7:43 pm

Hello and thanks for reading.

I just installed the new Version 2.1.5.9 and now DCC won't start anymore.

I already deleted C:\programdata\digicamcontro with no success. Starting again after deleting this folder a new log is built, but nothing really helping in there (see attached).

The Logo is shown, but nothing happens anymore.

What can I do? Thank you so much!
Attachments
app.log
(333 Bytes) Downloaded 294 times

DCC not starting

Advertisment
 

Martin Hoppe
Posts: 9
Joined: Mon Jun 20, 2022 12:52 pm

Re: DCC not starting

Post by Martin Hoppe » Sun Oct 30, 2022 9:49 pm

Trying to find whats going on I found out the program freezes here:

WiaDeviceManager = new DeviceManager();


Code: Select all

            // prevent program crash in something wrong with wia
            try
            {
                WiaDeviceManager = new DeviceManager();
                WiaDeviceManager.RegisterEvent(Conts.wiaEventDeviceConnected, "*");
                WiaDeviceManager.RegisterEvent(Conts.wiaEventDeviceDisconnected, "*");
                WiaDeviceManager.OnEvent += DeviceManager_OnEvent;
                Log.Error("Wia initialized");
            }
            catch (Exception exception)
            {
                Log.Error("Error initialize WIA", exception);
            }

Martin Hoppe
Posts: 9
Joined: Mon Jun 20, 2022 12:52 pm

Re: DCC not starting

Post by Martin Hoppe » Sun Oct 30, 2022 10:55 pm

Found the issue: The WIA-Service was stuck! If you ever stumble upon this: check services.msc WIndows Image Aquisition Service is running (or disabled).

admin
Site Admin
Posts: 225
Joined: Tue Sep 15, 2015 8:33 pm

Re: DCC not starting

Post by admin » Mon Oct 31, 2022 9:03 am

Thanks for the feedback

Post Reply