Questions tagged [delphi-xe8]

Delphi XE8 is a specific version of Delphi released in April 2015.

Delphi XE8 is a specific version of Delphi released in April 2015.
It supports development of applications covering , , , (both 32 and 64-bit), and . Windows applications may be built using either the framework or the (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework.

Always use the tag alongside this tag.

494 questions
0
votes
1 answer

Implementing Material Design Theme in Android using Delphi XE8

I'm using Delphi XE8 for developing Android mobile application. And I need to implement Material View title bar in my application. And how can I able to implement using Delphi XE8? Material view Example. Please provide me some solution.
0
votes
1 answer

XE8 Delphi and FireMonkey: Integrating javascript webbrowser and the system

I'm using TWebBrowser component of Delphi to create a system that interacts with the site. So far so good, I can run the website javascript correctly, the problem is when you need to get an answer in Delphi the javascript function in html, I did not…
Anderson Nunes
  • 279
  • 3
  • 14
0
votes
1 answer

delphi XE8 REST Interface PUT in prestashop

I'm trying to update a manufacturer in Prestashop through the REST interface. So far I've been able to GET the information, but when I try to PUT, I Always get an HTTP 500 error. try Memo1.Text :=…
0
votes
1 answer

striping out the "content-type" from TIdMultiPartFormDataStream

This is kind of related to this post. I am trying to post some form data using TIdHTTP and TIdMultiPartFormDataStream, but when monitoring the communication using Wireshark, each form field gets a content-Type: text/plain attached to it and for some…
Sam
  • 2,473
  • 3
  • 18
  • 29
0
votes
1 answer

posting a file as part of a form

I am trying to post a file and some other data to a website in an App that I am writing using Delphi XE8 but it is not working. When I monitor the network traffic using "Microsoft Network Monitor 3.4", the file is only partially sent and none of the…
Sam
  • 2,473
  • 3
  • 18
  • 29
0
votes
3 answers

How to view/compare a file's history in Delphi?

The title says it all. I made some changes & closed/re-opened Delphi, so I Can't use Ctrl-Z to undo my changes. How do I compare the current file with previous versions?
Mawg says reinstate Monica
  • 38,334
  • 103
  • 306
  • 551
0
votes
1 answer

Delphi xe8, Cannot rename component xxx, component was introduced in an ancestor form

I am going the delphi XE 8 tutoial found at http://docwiki.embarcadero.com/RADStudio/XE8/en/Tutorial:_Using_the_IDE_for_Delphi_and_C%2B%2BBuilder. The problem I am having is that I've followed the tutorial step by step and I keep getting an error…
Brendan Russo
  • 176
  • 3
  • 11
0
votes
1 answer

TMS Component Pack in new XE8 Trial install?

I'm having trouble with installing TMS component pack in my trial Delphi XE8 Architect dev environment. The pack is quite old, and I'm just about to use it, to check if everything is fine with my code, code was writen few years ago with this pack.…
djedjica
  • 17
  • 2
0
votes
0 answers

FreeLibrary Hangs when releasing firemonkey dll

I have very strange problem and I hope somebody could explain it to me. I created VCL app and FMX dll (just a dll with FMX form). I need to load DLL dynamically using LoadLibrary and FreeLibrary. There are two cases. In first case my code…
Nix
  • 581
  • 5
  • 20
0
votes
2 answers

Access Violation in TDictionary

I just wrote a very simple class to test the TDictionary<> Class in Delphi XE8. When i try to show the records that i added, it brings me an Access Violation error, i don't understand why? Here is my class unit Unit3; interface uses Classes,…
Fabien Fert
  • 95
  • 2
  • 11
0
votes
1 answer

How to check from outside whether ITask thread is still running?

In Delphi XE7 (or XE8), put a TjvProgressDialog (from JVCL) on a form and name it dlgProgress1. And a TButton and name it btnProgressDialogTest. This code first starts Notepad from a separate thread (ShellExecAndWaitTask), then it opens the progress…
user1580348
  • 5,721
  • 4
  • 43
  • 105
0
votes
1 answer

How does Castalia inline variable declaration work in Delphi XE8?

I am trying to use the inline variable declaration with Castalia described here. Here's the excerpt in question from the link above: Inline Variable Declaration Castalia provides inline variable declaration. In the main body of your code,…
Pep
  • 1,957
  • 2
  • 24
  • 40
0
votes
0 answers

"SSL negotiation failed" in Delphi XE8

I am recompiling a Delphi XE3 application in Delphi XE8. The application sends messages to Amazon SES (tried Ireland and North Virginia) using a TIdSMTP object. These are some of the attributes set in the TIdSMTP component (UPDATE: more fields…
Pep
  • 1,957
  • 2
  • 24
  • 40
-1
votes
1 answer

cannot resolve unit name 'xxxxx' error while using class

I am creating a unit Stringy and its type is TStringy = Class. I am then trying to use this class in my form. So in other file.pas, I am trying to use it. While doing uses Stringy; on Stringy I am getting red line error 'Can not resolve unit name…
CodesDDecodes
  • 132
  • 1
  • 15
-1
votes
1 answer

Delphi strToint64 initial with zero value

in Delphi XE8 I have to convert a '03213213210' string into an int64 a:=strToint64('03213213210'); I receive a = 3213213210; How can i receive? a = 03213213210; Help me. Thank you.