Quantcast
Channel: Recent Topics - Forum - Embarcadero Community - Embarcadero Community
Viewing all 3677 articles
Browse latest View live

App execution failed when use an external PAS file attached - by: Gabriel

$
0
0
Hello everyone, i'm getting an error to launching my app after include an external pas file to project. Seeing in android monitor, the error occurs trying to get an directory that not exists ('04-15 08:31:02.240: E/Vold(265): Failed to find mounted volume for /storage/sdcard1/Android/data/<package>/files/') and my app is installed at sdcard0. Does anyone got this problem? Is it some project configuration? My project configuration to install location is set to internalOnly

I'm about to install RAD Studio 10.2.3 and wants advice prior to install - by: Kai Inge

$
0
0
Hello.

I have seen Remy advice a user to check Android platform support during install.
Also I have seen that Live Bindings can cause serious delay during startup of projects.
Are there a way to exclude Live Bindings by selection during install?
Also, are there things to be aware of that can cause problems when I perform the install?

Thanks in advance.
:)
Kai Inge

Newbie on this forum - by: Kai Inge

$
0
0
Hello again.

I'm sure I submitted a post here in Installation Issues, but it didn't appear,
so I might have done something wrong, or it just take time to pop up.
Time will show.

:)
Kai Inge

Wrong texture apply on MODEL3D - by: CARLOS

$
0
0
I think the Model3D importer do a wrong apply of the texture image, in my case I have imported a .dae file. See attached files. Seems a bad maping of 2D image on the Mesh. In my Model every face have a different mesh. To check I have applied the same material to all the meshes, and some sides shows a good mapping of the same image, but others seems streched. Is that a known error?

Wrong texture mapping in Model3D import - by: CARLOS

$
0
0
I think the Model3D importer do a wrong apply of the texture image, in my case I have imported a .dae file. See attached files. Seems a bad maping of 2D image on the Mesh. In my Model every face have a different mesh. To check I have applied the same material to all the meshes, and some sides shows a good mapping of the same image, but others seems streched. Is that a known error?

FDEventAlerts on SQL Server? - by: Martin

$
0
0
Is SQL Server Agent required for FDEventAlert when using SQL Server?

TRectangle click - by: Claude

$
0
0
Hi,
I am designing my own buttons based on TRectangle for windows and i face a problem with onclick event.
when i click 3 times on rectangle , onclick is fired only twice , i miss someclick !
when i do exactly same sequence on a tbutton i receive 3 clicks !

What can explain this behavior ? is this normal?

Delphi Tokyo BindNavigator - by: michel

$
0
0
Could you tell me how to fix the look of the BindNavigator component.

I have a big android application that uses sqlite in Delphi Seattle.

I am forced to switch to Delphi Tokyo for a bug in publishing memos


But the design of BindNavigator is not correct in version Tokyo



Thank you
Michel

Windows 10 shows visible border in FMX program on maximize if screen is scaled - by: cue

$
0
0
My resolution is 4k (3840x2160) and windows recommended a scale amount of 250%.
Why i have a border on top and left side of my fmx program if i maximize my application
with the recommended windows scale settings and why is there no border visible
if i set the scale to 100%?

FireDac Error Message - by: Daniele

$
0
0
Good afternoon to all,
i have a little problem with firedac connection error message (FDConnection).
With this code

repeat
try
OK:=True;
FCon1.Connected:=True;
except
on E: EFDDBEngineException do
begin
// FCon1.Connected:=False;
OK:=False;
if E.Kind=ekServerGone then
begin
// Server non connected message
end;
Application.ProcessMessages;
end;
end;
until OK;

It's wait for server connection, if not ... i show an error message.
But, for any reason, after (about) 30 seconds firedac show it's own message error, over my message, like

[FireDac][Phisis][FB] Unable to complete the request ......

Semms to be timeout error.
There's a way to handle/hide this message?

Thank's for all

Daniele

Enabling CORS to access Datasnap Methods - by: Amit

$
0
0
I am trying to develop a DataSnap application,.
And added on the JS code the following:

I've exposed on the DataSnap method the method GetSession.
When I try running that on LAN everything seems to work properly. But it fails from WWW (outside of the LAN, from a remote device).

I want to run the access from the WWW. I configured my Apache on one machine to proxy channel on another computer on my LAN. So I've set on my Apache the option:

After adding that both when trying to access it via LAN/WWW it fails with the following error (on the page):
NetworkError: A network error occurred. serverfunctionexecutor.js:297

I've searched the web and found a couple of threads talking about that... Seems that the Methods exposed on the DataSnap uses Ajax or similar to that. The treads I found talked about enabling CORS www.w3.org/wiki/CORS_Enabled on the calls with Access-Control-Allow-Origin to '*'.
So I added that, to the header of the calls, on both the (A) apache and on the (B) DataSnap WebModuleBeforeDispatch procedure.

Yet, the fix didn't work properly. And the problem persists...

What am I missing? How can I solve that issue?

Delphi Tokyo 10.2.3 Android [DCC Error] E2597 - by: Guenter

$
0
0
After installing 10.2.3 with Android (it shows SDK and NDK selected during installation), I am not able to compile anything for android. I am getting the following errors:

[DCC Error] E2597 C:\Users\Public\Documents\Embarcadero\Studio\19.0\PlatformSDKs\android-ndk-r9c\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe: error: cannot find -lrtlhelper
C:\Users\Public\Documents\Embarcadero\Studio\19.0\PlatformSDKs\android-ndk-r9c\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe: error: cannot find -lpcre
C:\Users\Public\Documents\Embarcadero\Studio\19.0\PlatformSDKs\android-ndk-r9c\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe: error: cannot find -lcompiler_rt

I did not have any android development tools installed. Android SDK and NDK have been installed by the Delphi setup.

Operation not applicable - by: Rogerio Xavier

$
0
0
Hi,

I am having problems in a TDataSetProvider used in the server layer of my application. In the OnUpdateData event I try to write the data to a log table, but in some cases the Operation not Applicable error occurs. Below is a snippet of code where the error occurs:

   Var s: TStringStream;
       std: TFDStoredProc;
begin
if (DataSet.GetOptionalParam('ID_USUARIO') <> null) and (UpperCase(DataSet.GetOptionalParam('ID_USUARIO')) <> 'DEFAULT') and (DataSet.GetOptionalParam('ID_USUARIO') <> 0) then
       begin
         Try
           s: = TStringStream.Create ('');
           s.Size: = DataSet.DataSize;
           DataSet.SaveToStream (s, dfXML);
           std: = TFDStoredProc.Create (Self);
           with std
           begin
           ....

the occurs error in the DataSet.SaveToStream (s, dfXML) line;

Thank you

Error: Operation not applicable - by: Rogerio Xavier

$
0
0
Hi,

I am having problems in a TDataSetProvider used in the server layer of my application. In the OnUpdateData event I try to write the data to a log table, but in some cases the Operation not Applicable error occurs. Below is a snippet of code where the error occurs:

   Var s: TStringStream;
       std: TFDStoredProc;
begin
if (DataSet.GetOptionalParam('ID_USUARIO') <> null) and (UpperCase(DataSet.GetOptionalParam('ID_USUARIO')) <> 'DEFAULT') and (DataSet.GetOptionalParam('ID_USUARIO') <> 0) then
       begin
         Try
           s: = TStringStream.Create ('');
           s.Size: = DataSet.DataSize;
           DataSet.SaveToStream (s, dfXML);
           std: = TFDStoredProc.Create (Self);
           with std
           begin
           ....

the occurs error in the DataSet.SaveToStream (s, dfXML) line;

Thank you

Operation not applicable - by: Rogerio Xavier

$
0
0
Hi,

I am having problems in a TDataSetProvider used in the server layer of my application. In the OnUpdateData event I try to write the data to a log table, but in some cases the Operation not Applicable error occurs. Below is a snippet of code where the error occurs:

procedure TsmModelo.DSPUpdateData(Sender: TObject;
DataSet: TCustomClientDataSet);
   Var s: TStringStream;
       std: TFDStoredProc;
begin
if (DataSet.GetOptionalParam('ID_USUARIO') <> null) and (UpperCase(DataSet.GetOptionalParam('ID_USUARIO')) <> 'DEFAULT') and (DataSet.GetOptionalParam('ID_USUARIO') <> 0) then
       begin
         Try
           s: = TStringStream.Create ('');
           s.Size: = DataSet.DataSize;
           DataSet.SaveToStream (s, dfXML);
           std: = TFDStoredProc.Create (Self);
           with std
           begin
           ....

the occurs error in the DataSet.SaveToStream (s, dfXML) line;
the complete message is: Project ServerWin32.exe raised exception class EDBClient with message 'Operation not applicable.'.

Thank you

Windows 10 shows border in FMX app on maximize if screen is scaled by windows - by: cue

$
0
0
My resolution is 4k (3840x2160) and windows recommended a scale amount of 250%.
Why i have a border on top and left side of my fmx program if i maximize my application
with the recommended windows scale settings and why is there no border visible
if i set the scale to 100%?

attachment=52]border_full_screen_on_scaled_win10_desktop.jpg[/attachment]

Finding security vulnerabilities in Delphi Code - by: Malik

$
0
0
Are there any tools available for static analysis of Delphi code? we want to test our application source code, do static analysis and find security issues in the source code. the main goal is to run our application code through some tool which produces a report indicating security vulnerabilities.

Regards

TDBImage does not refresh correctly - by: John

$
0
0
I use a TDBImage to show my image from a table. But when a image is already load into TDBImage, it's not refeshing the canvas, but put the second image on screen. It looks like TDBImage.picture wil not be set to nil, before the other image is loaded from a record. TjvDBImage is working fine.

I'm using D10.2.2 enterprise

Reinstalling Delphi 10 on a new PC - by: Barry

$
0
0
Hi, I'm trying to move my Delphi 10 from a laptop to a desktop. However, I can't re-install it from the original links, as it says it is already registered. How can I move my installation?
Do I have to download a trial version for 30 days and do it this way?

Delphi XE7 crash at shutdown - by: Mattia

$
0
0
Goodmorning,

Some days ago I have installed Delphi Tokyo 10.2.3. All fine! The IDE works without problem.
On the same machine, I had installed Delphi XE7 also.
The strange thing (it is a bug?) is that now, when I close the Delphi XE7 IDE, I get an access violation on the package rtl210.bpl.

Had somebody else faced to the that strange issue?
I read around that it is an old issue related to FMX Standard Components... but it is not this case.

P.S.: Delphi XE7 works fine! It is only an annoying issue at shutdown.

Thank you,

Regards
Viewing all 3677 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>