Please suggest registry entry of delphi XE help system as it is pointing to wrong drive due and not opening in ide as my hard drive partition no longer exists where it was installed previously.even re-installation not working as it is asking for remove
Related
Submenu File -> New contains only "Other..." and "Customize" items.
How to correct this?
My OS is Windows 10.0.17763.107.
Old version is 10.2 with same problem.
Installed new version 10.4.2, in process of installation of Delphi Community, I have error at Roboto Font downloading:
[403] Forbidden
I pinged this address of Getit found in the registry: https://getit-104.embarcadero.com
It is not responding! Ok, changing to getit.embarcadero.com, the result is negative.
It seems that your Delphi installation hasn't finished properly. Either it was interrupted or Licence manager didn't manage to verify your Community licence properly.
You could try fixing your licence using Licence Manager that you can find inside Delphi folder. If my memory serves me correctly it is located withing BIN subfolder (don't have access to development machine at the moment to verify).
But if the installation proces itself is getting interrupted you might want to download ISO installation instead of Online installation. When installing latest version of Delphi I had to use ISO installation since Web installation kept loosing connection. I suspect my AV Software (ESET Internet Security) with integrated firewall might be the cause.
I was using Delphi 6. Now I am upgrade the delphi 6 to delphi 10.2.3.
I uninstalled the delphi 6. I found borland folder under the program file (86) still exists. I renamed the folder . Also I removed the relative search path in the Path environment variable.
I installed the delphi 10.2.3, and fixed codes that are not compatible with the new delphi.
Building and compiling the program are all good, but running the program produce an error: "The code execution cannot proceed because rtl60.bpl was not found. Reinstalling the program may fix this problem".
I checked the program project options, in the Package, I did not find rtl60 there.
How to fix the problem? Thanks.
I tried to install "TeeChart VCL/FMX v2018 Pro Evaluation version - Online" on a Delphi 10.2 Version 25.0.29039.2004.
Installation works fine but when I launch Delphi Embarcadero, I have errors :
Any help ?
The problem you're experiencing is caused because you aren't using the Rad Studio 10.2 Tokyo update 3 version 25.0.29899.2631 and latest TeeChart Pro VCL/FMX v2018.24 is only supported for that.
You can download Rad Studio 10.2 Tokyo Update 3 from the link below:
http://edn.embarcadero.com/article/44774
Make sure you run both the installer and the IDE with high privileges ("Run as Administrator").
Since you already installed TeeChart, you can just run "TeeInstall.exe" in the installation folder with high privileges to reinstall the components into the IDE, without having to fully reinstall the components.
Looking at the screenshots, it seems the bpls are in 2 locations (System32 and the Teechart output folder).
As I have encountered this issue too in the past, I would suggest the obvious by manually deleting the relevant teechart .bpl files from your windows system folders.
Take care to remove them from both the 32bit and 64bit system folders
- C:\Windows\System32\*925.bpl
- C:\Windows\SysWOW64\*925.bpl
as well as from the BDS folders:
- C:\Program Files (x86)\Embarcadero\Studio\19.0\bin
- C:\Program Files (x86)\Embarcadero\Studio\19.0\bin64
- C:\Program Files (x86)\Embarcadero\Studio\19.0\Redist\win32
- C:\Program Files (x86)\Embarcadero\Studio\19.0\Redist\win64
- C:\Program Files (x86)\Embarcadero\Studio\19.0\Redist\<others platforms you may use>
When deleting them ensure no delphi or one of your own apps is running as this prevents the bpls from being deleted. After doing so, teerecompile shouldn't complain anymore. So this is a "one shot" fix. After this you should be able to rely on TeeRecompile.
BTW: by removing I mean move them to a different folder rather than deleting them, so you can restore. didnt think of it as I use a VM for development and can always easily roll back.
OOPS: I overlooked the fact you cannot recompile. Nevertheless, I think the bpl removal tip still is valid.
I migrated all my components from one pc to another. On the old pc the Jedi JCL installer will correctly detect a Delphi XE2 installation and will show its tab, but on the new pc it does not (it only recognizes a Delphi 7 installation). Notice that on the new pc when I run the jcl install.bat it will use the Delphi XE2 compiler to create the installer exe.
What step can I do to have this sorted out?
The version of Jedi is the latest one at the moment that is 3.47
Problem solved by reinstalling Delphi XE2 (Full installation with registry). The problem was that I had copied the registry keys from my other pc into the new pc. The problematic key was the library key. For some reason the JCL installer did not like the paths in the library, most probably could not find the paths it expected.
I have PostgreSQL 9.2 installed on win 7 64 and can connect to it with ODBC from my delphi IDE using dbexpress with no problem. When I try to connect using Zeos, and although I have provided the path to the libpq.dll, I still get the error (libpq not found or not loadable). I tried all solutions I found by googling but so far I haven't found a working solution.
I have put the dll, and later all dlls into system32 to even see if that is what it takes.
This is my setup:
Delphi XE3
Zeos 7
PostgreSQL 9.2
On windows 7 64
Does anyone use this system and can connect to postgresql 9.2 with zeos?If so what am I missing?
So my question summarized in one line is this:
What is a working configuration/steps to connect zeos 7 with postgresql on delphi on win 7 64?
Your answer is much much appreciated!!
Make sure you have the following files together with libpq.dll:
libeay32.dll, libiconv.dll, ssleay32.dll, libintl.dll, libxml2.dll,
and libxslt.dll. These are library files that lipq.dll depends on. Delphi IDE is 32bit so you can only use the 32bit version of the above libraries if you want to connect to postgresql at design time. If your project is 64bit you may get the 64bit version of the files above and place it in a separate folder under your project's root dir then change the libpq.dll path of ZConnection at runtime to point to that folder.
Hope this helps.
Are you sure your ZeosLib is x64? When building component, make sure you choose 64-bit Windows as Target Platform.
Most likely the computer where the problem is happening lacks Microsoft Visual C++ 2010 Redistributable x64. I adivise you to download it from Microsoft and install it, then run another test.
I had the same problem. To get around this, I had to change the working directory of the delphi application to the path of libpq.dll because otherwise it will not be able to find the other libraries, it needs. So maybe you want to do something similar to this before opening the first connection to postgresql:
OldPath := ExtractFilePath(Application.ExeName);
ChDir('c:\path\to\libpq\dll\');
ZConnection.Connect;
ChDir(OldPath)