Compiling KBMMW design package in Delphi 10.3: vcl conflict error (E2199) - vcl

I have Delphi 10.3 community edition and kbmMW Enterprise installed.
I'm trying to compile the kbmmw design package (kbmwdes103Ent) with Delphi 10.3 Community edition, but I get the following error: [dcc64 Error] kbmMWDesD103Ent.dpk(36): E2199 Packages 'kbmMWRunD103Ent' and 'vcl' both contain unit 'Vcl.Grids'.
Any idea how fix this conflict issue?

Make sure vcl is in the requirements section of both the kbmMWDesD103Ent and kbmMWRunD103Ent package projects.

Related

Visual Studio 2022 does not find reference assemblies for >NETframework Version 4.0

Trying to compile Python Django project but receiving build error:
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\amd64\Microsoft.Common.CurrentVersion.targets(1217,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks
Done building project "myFinancialTracker.pyproj" -- FAILED.
How can I resolve?
I also got the same error as you, this is because VS 2022 doesn't come with
.net framework 4.0 option during installation, to overcome this problem I install VS 2019 and enable the usage of .net-framework 4.0 during installation. After the installation, I tried to run my project again using VS2022 and the error goes away.
I tried to download and install .net-framework 4.0 separately but Microsoft doesn't allow me to do so, to overcome this, I install VS2019 instead.

Problem in Installation of old version of Dotnetnuke

I am working on a very old project developed using Dotnetnuke version 4.4.0. After configuration of database I face with this error "Connection Error(s):
You must choose a Database Type". I have searched a lot but there is no information about this error on the web. Please hence that I am new to the dotnetnuke and windows related tools for web development such as IIS and ...
More information: dotnetnuke version 4.4.0, windows 10 and sql server 2008 r2
Any help would be highly appreciated.
Try installing a clean DNN 4.4.0 and compare the connection strings (there are 2!) with your web.config file.

Cannot install / run service - missing assembly.

I have been unable to install a windows service; I get the following error when attempting to install via ClickOnce.
I have version 12.0.0.0 on the machine/and can only find version 12.0.0.0 - does anyone know a source for version 13.0.0.0. The server is running SQL 2016 Developer, as is my development environment.
I am not even sure where the reference to version 13.0.0.0 is coming from! It ends up in the exe.manifest, but for the life of me, I cannot find where this has come from?

Syntax errors in Aptana when using Cake PHP

I've installed Aptana Studio 3 on my Mac and want to use CakePHP. The installation of CakePHP (Version: 3.3.6) was successful but I'm getting syntax errors in Aptana.
The PHP Version in Aptana for my project is "PHP 5.4.x", the highest version what I can select in Project/Properties/PHP Development -> Compatibility, PHP Version.
According to the installation book of Cake, PHP 5.5.9 or higher is required (http://book.cakephp.org/3.0/en/installation.html).
How can I update my Aptana Studio to use the required PHP version? Or is there another reason for the syntax errors?
e.g. syntax error in AppController.php.ctp:
I'm using Aptana build: 3.6.1.201410201044

Using dependency Walker to find missing file

I have a dll that is working well on my computer but doesn't work on another computer. Apperently there is a missing dependency. I tried to use the dependency walker to find the missing file. It says:
Error: The Side-by-Side configuration information for "MyDllFile.DLL" contains errors. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem (14001).
Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
But it doesn’t say which file is missing. Where can I find which file is missing?
(The dll is a native code dll and built with Visual Studio 2005 express. I already installed VS2005 Redistribution on target computer)
There are "VS2005 redistributables" and there are "VS2005 SP1 redistributables". Maybe you need the SP1 redistributables?
You could search for "Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)" to find the SP1 flavor.