Page 2 of 2

Re: Cannot start Videonizer

Posted: 21 Jun 2019, 18:55
by admin
Please try to replace its content with the following:

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite"/>
      <add name="SQLite Data Provider" invariant="System.Data.SQLite"
           description=".Net Framework Data Provider for SQLite"           type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
    </DbProviderFactories>
</system.data>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
  </startup>
</configuration>

Re: Cannot start Videonizer

Posted: 22 Jun 2019, 06:39
by avi111
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="PornOrganizer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<userSettings>
<PornOrganizer.Properties.Settings>
<setting name="test" serializeAs="String">
<value>1</value>
</setting>
</PornOrganizer.Properties.Settings>
</userSettings>

<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>
</system.data>

<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>


</configuration>

Re: Cannot start Videonizer

Posted: 22 Jun 2019, 06:43
by avi111
I replaced its content with the what you provided.
same problem.

Re: Cannot start Videonizer

Posted: 22 Jun 2019, 06:51
by avi111
Maybe the program uses another sqllite that is installed in my PC, and not yours ?

Re: Cannot start Videonizer

Posted: 28 Jul 2019, 06:47
by avi111
I found this big problem
after reinstalling windows
The problem appear after installing Delphi 2007 (it use .net2)
Uninstalling Delphi didn’t correct the problem But using windows restore point before installing Delphi correct that problem.

Re: Cannot start Videonizer

Posted: 28 Jul 2019, 09:33
by admin
avi111 wrote:I found this big problem
after reinstalling windows
The problem appear after installing Delphi 2007 (it use .net2)
Uninstalling Delphi didn’t correct the problem But using windows restore point before installing Delphi correct that problem.
Could you please provide exact name and version of Delphi 2007 including components of the installation?
For instance, does you installation include "SQLite4Delphi" or "LiteDAC" or "AnyDAC" or "UniDAC" and which versions?

Re: Cannot start Videonizer

Posted: 14 Aug 2019, 13:08
by admin
My current advice is:
Please try to use the following config file (Videonizer.exe.config) instead of original one:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
            <section name="PornOrganizer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
        </sectionGroup>
    </configSections>

<system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite"/>
      <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite,
                 Version=1.0.106.0, Culture=neutral,
                 PublicKeyToken=db937bc2d44ff139"/>
    </DbProviderFactories>
</system.data>

  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
  </startup>

</configuration>