Delphi XE5 TWebBrowser Problem on Android [Edit]I have write 4 samples code:
1)
paginaweb:='file://'+pathpdf+'prova.pdf';
webbrowser1.URL:=paginaweb;
2)
paginaweb:='http://www.ufficiotecnicogecom.com/Volantini/prova.pdf';
webbrowser1.URL:=paginaweb;
3) have used webbrowser1.Navigate(paginaweb);
4)
paginaweb := 'http://www.youtube.com/user/SisaCentroSudGecom';
webbrowser1.Navigate(paginaweb); or webbrowser1.URL:=paginaweb;
webbroser1 is in a mobile form.
All not work on Android but work fine on iOS, the case of youtube url load page but still stuck on loading vide...
SEPA components for Delphi with Source Code (Delphi 5Hi all,
in the european union change next year the Bankingformat to the SEPA Format.
All peoples and companies must change the bankingssoftware and the costumer data form acountnummers in the new IBAN and BIC numbers.
See:
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=211&wgruppe_offen=211
Functions:
- generate SEPA XML'S
- Calc IBAN
- BIC Database (DE,AT and CH)
Questions:
vertrieb@arma-it.de
PS:
Bankinssoftware for Develpoers (Germany only)
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=212&wgruppe_offen=212
El 26/10/13 21:38, A...
Delphi XE5 Android App dies preparing INDY email [Edit]Can someone help me with the following code, it connects and authenticates the idsmtp connection but the app dies on the line:-
idMessage1.Recipients.EMailAddresses:='colin@gmail.com';
Anyone had and overcome this problem?
procedure TForm3.Button1Click(Sender: TObject);
begin
if idSMtp1.Connected = true then
idsmtp1.Disconnect;
idsmtp1.Connect; //THIS LINE WORKS
idSmtp1.Authenticate; //THIS LINE WORKS
idMessage1.Clear; //THIS LINE WORKS
...
Does Delphi XE5 on Android work with the Android emulator? [Edit]I find that even a hello-world app exactly like the one that David I outlines (add a button, one line of code, set button text) will not run on the Android Emulator configured
out of the box.
First, after installing the Rad Studio XE5 trial, I followed David I's steps exactly, and the emulator would not even start. Then I clicked Android SDK manager, updated it,
and clicked run-without-debugging. It asked me if I wanted to start the emulator this time so I did.
Now the Firemonkey app will not start up the emulator, and while it does appear to start debugging, the emulator scree...
Converting Delphi 2007 Indy 10.2.3 to Delphi 2009 Indy 10.5.5 [Edit]Hello,
I am currently attempting to port over a Delphi 2007 project that uses Indy 10.2.3 (very successfully) to Delphi 2009 and Indy 10.5.5 (I just got the latest development build this morning). I think I am running into an encoding issue, but am not sure. Specifically, IDHTTP with SSL calls an old CGI and the CGI returns a .zip file and I then save it to the disk. In 2007 and before this worked perfectly. In 2009, it is not. Here is the examples of the 2 different results (though cut way short in the post) I
am getting back:
2007:
'PK'#3#4#$14#0#0#0#8#0'rLQ9žrPb€'#0...
Delphi 2006 to Delphi XE Crystal BPL problem [Edit]I am in the process of migrating our application from Delphi 2006 to Delphi XE and, for ease of use, I have both 2006 and XE installed on my development computer. I access Crystal Reports XI RDC in our application and so I rebuilt the BPL in XE in order to add the new package to XE. However, when I try to add the package to XE I get the error message:
“Registration procedure, Craxddrt_tbl.Register in the package c:\Documents and Settings\All Uers\Documents\RADS Studio\8.0\BPL\Crystal.bpl raised exception class EFilerError: Component TDatabase can’t be registered by package crystal.bpl be...
movetasktoback function delphi xe5 android? [Edit]Hi,
I want my application not close when the back button is pressed. I want it to minimize and run in background. Is this possible?
I've saw a movetasktoBack function on Java. Is this function available for Delphi too?
{code}
public class TestActivity extends Activity {
//...
// Working for all API levels
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
moveTaskToBack(true);
}
return super.onKeyDown(keyCode, event);
}
// Alternative variant for API 5 and higher
@Override
...
android service application on Delphi XE5 [Edit]Is it possible to develop "android service application(backround)" on delphi xe5 ?
if possible, how to ?
Thanks.
Edited by: caner aytac on Sep 20, 2013 3:40 AM
Edited by: caner aytac on Sep 20, 2013 3:45 AM
...
Delphi XE5 Android Heap size problemAndroid applications that developed with Delphi XE5 use minimum 24 MB RAM.
Some phones allow 16-20 MB usage(heap size) for any application.
(htc wildfire S A510e, samsung GT-S58330i)
So any application that developed with Delphi XE5 does not run these phones.
But I have seen some popular applications these can use greater than 30 MB heap size on these phones.
if some android applications were able to do this, Is there any way to automatically increase the heap size for our delphi xe5 applications?
> {quote:title=mustafa korkmaz wrote:}{quote}
> (htc wildfire S A510e,
Wi...
Delphi XE5 DataSnapRest server problem [Edit]Hi all
I use Delphi XE5, Update2.
I made a small DataSnapRest Application.
1. If I select on step 3 "ServerModule" that is support for heavy callback, the web page does not working at all. (the default application that is created is not working when I press "Open Browser" button).
2. If I create a non "ServerModule" and the IDE put the TDSServer and TDSServerClass on the WebModule with the rest of the default components (like TDSHTTPWebDispatcher, TPageProducer, TDSProxyGenerator, TDSServerMetaDataProvider) is working well for a period of time.
I cr...
Indy TIdUdpServer OnRead problem on Delphi XE [Edit]Hi,
I have some problem with Indy TIdUDPServer on Delphi XE becouse when I try to double click on the +OnUDPRead+ events in the object inspector Delphi return this error:
*"Expected '>' but '.' found.*
This is the generated source code:
{code}
type
TForm2 = class(TForm)
IdUDPServer1: TIdUDPServer;
procedure IdUDPServer1UDPRead(AThread: TIdUDPListenerThread;
AData: TArray<System.Byte>; ABinding: TIdSocketHandle);
private
public
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm2.IdUDPServer1UD...
Does Delphi XE5 firemonkey work on current Samsung tablets? [Edit]I am being told that Delphi XE5 with firemonkey will not work on the current range of Samsung tablets even if they have Android 4 is that true?
If so I will be very disappointed having invested thousands of pounds and a few hundred hours to adopt the technology on the promise I can now deploy to Android mobile devices. When I run even the most simple Hello World app I simply get a black screen on my brand new Samsung tablet. I am told it only works on Android devices with a ARMv7 CPU supporting NEON instruction sets. If this is the case developers need to know that I have been told today ...
Delphi XE5 instant trial: Android emulator does not run [Edit]Installed XE5 instant trial - no problem.
The "Android Tools" menu is missing, although It is supposed to be installed by default according to the installation notes.
Note: the Instant Trial does not offer any installation options.
So I started the SDK manager from the File Browser in the IDE, all the files are there.
Installed an Android system image - no problem.
Created an emulator - no problem.
Tried to start the emulator: PANIC - can not start +devicename+ . Tried all standard devices - same problem.
A problem with the "virtualized" paths inside Ap...
Delphi XE2 - Indy 10Dear folks
As result of security issues one of the email services in NZ has changed the settings of their email server. It used to be port 25 and outgoing mail was SMTP.xtra.co.nz. The port is now 465 and outgoing mail is now send.xtra.co.nz. The client configuration requires authentication and a secure connection (SSL).
The result is that my code to connect for everyone using that provider is now "busted". I have changed the port and outgoing host accordingly. And have set the IOHandler of idSMTP as IdSSLIOHandlerSocketOpenSSL1. With the Authtype as satSASL. I have als...