The trick:
When you open the workbook again, the last cell of the data should be the last cell on the worksheet.
Which means that the “Last cell” only changes after a reload.
–jeroen
Posted by jpluimers on 2015/08/19
The trick:
When you open the workbook again, the last cell of the data should be the last cell on the worksheet.
Which means that the “Last cell” only changes after a reload.
–jeroen
Posted in Excel, Office, Power User | Leave a Comment »
Posted by jpluimers on 2015/08/19
29458_firedac_xe4_update_2_for_rad_studio_delphi_c_ent_ult_arch.zip
from a registered Delphi XE4 or higher license: http://cc.embarcadero.com/item/29458:
FireDAC_8.0.5.3365.exe
.FireDAC_8.0.5.3365.exe
with the /showide
parameter as described in http://support.embarcadero.com/article/42970:
FireDAC_8.0.5.3365.exe /showide
next
next
C:\Program Files (x86)\Embarcadero\FireDAC
, then press next
next
next
Interbase / Firebird server
as then you have to provide the credentials for the server), then press next
Embarcadero FireDAC
, then press next
install
finish
, then read the readme
The installer automatically installs FireDAC in the Delphi XE4 and C++ Builder XE4 IDEs. For older versions of the IDEs, you can run the installer with the /SHOWIDE command line parameter.
To fix this when starting Delphi:
[Window Title] Error [Content] Can't load package C:\Users\Public\Documents\RAD Studio\5.0\Bpl\AnyDAC_Dcl_D11.bpl. The specified module could not be found. Do you want to attempt to load this package the next time a project is loaded? [Yes] [No]
The actual BPL sometimes is in C:\Users\<username>\AppData\Local\Documents\RAD Studio\5.0\Bpl\AnyDAC_Dcl_D11.bpl
The cause is that the BPL gets loaded from %BDSCOMMONDIR%
which on some systems points to
%PUBLIC%\Documents\RAD Studio\5.0
and on others points to
%LOCALAPPDATA%\Documents\RAD Studio\5.0
This seems to be the case on machines where more different Windows users are using Delphi.
The installer does not fully recognize this distinction, so copies the BPL to %LOCALAPPDATA%\Documents\RAD Studio\5.0\Bpl
and registers it as being in %PUBLIC%\Documents\RAD Studio\5.0\Bpl
.
On these machines there is a difference between the definition of BDSCOMMONDIR
in these registry keys:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
C:\Users\Public\Documents\RAD Studio\5.0
HKEY_CURRENT_USER\Environment
C:\Users\<username>\AppData\Local\Documents\RAD Studio\5.0
reg delete "HKCU\Software\Borland\BDS\5.0\Known Packages" /v "%PUBLIC%\Documents\RAD Studio\5.0\Bpl\AnyDAC_Dcl_D11.bpl" /f reg add "HKCU\Software\Borland\BDS\5.0\Known Packages" /v "%BDSCOMMONDIR%\Bpl\AnyDAC_Dcl_D11.bpl" /t REG_SZ /d "Embarcadero FireDAC Components" /f
–jeroen
Posted in Delphi, Delphi 2007, Delphi XE4, Development, Software Development | 4 Comments »