Questions tagged [delphi-xe3]

Delphi XE3 is a specific version of Delphi released on Sept. 2012

Delphi XE3 was released in September 2012 and is available as a standalone product or as part of RAD Studio XE3.

Delphi XE3 codename is WaterDragon, compiler version 24, directive symbol VER240.

Delphi XE3 was preceded by Delphi XE2 and succeeded by Delphi XE4.

Always use the tag alongside this tag.

666 questions
0
votes
1 answer

how to change the color of 3D firemonkey objects from different thread

I have a cylinder Cylinder1 : TCylinder; and I want it to change colour when I click on it. I've added this to the on click event procedure TfrmFiremonkey.Cylinder1Click(Sender: TObject); begin Cylinder1.MaterialSource :=…
sav
  • 2,064
  • 5
  • 25
  • 45
0
votes
1 answer

Code compiles until CreateWnd() is thrown in

I am using XE3 and trying to construct a DLL with my third party component. Since it is a rather large project I will describe it then detail the question at hand. I have multiple cpp files and multiple header files(classes in header files,…
Justin D
  • 41
  • 7
0
votes
1 answer

How to convert Objective C @property to Delphi XE3

I'm using Delphi XE3 to develop application for MAC OS X which uses third-party dynamic library (.dylib) for work. Target library has Objective C header file which I'm trying to convert to Delphi. Almost everything is good, but there is one…
GothAr
  • 503
  • 5
  • 16
0
votes
1 answer

How to add new content in a xliff file?

I wanna know how to add a new Line/Element/Content to a Xliff File. Im use Delphi Xe³ with the TXMLDocument component
Hidden
  • 3,598
  • 4
  • 34
  • 57
0
votes
3 answers

Don't have mobile and/or iOS options in delphi/c++ builder

First of all, I am so sorry for the STUPID question but I am tired of searching google for the answer. I don’t have the option to create mobile and/or iOS applications in Delphi and C++ builder, is there something I need to setup before I can see…
Cor4Ever
  • 229
  • 2
  • 7
  • 14
0
votes
1 answer

Delphi custom component destructor

I am not sure if my coding is correct, so please correct if I am wrong. I have a custom component with an Image. CustomPic = class(TPanel) private Image : TImage; public constructor Create(AOwner: TComponent); override; .... end; In my…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Service started and then stopped?

procedure TService1.ServiceExecute(Sender: TService); var FileName : string; Strm : TMemoryStream; i : integer; h,m,s,ms : word; begin DecodeTime( now, h, m, s, ms ); if ( h = 13 ) AND ( m = 6 ) AND ( s = 0 ) then …
Yordan Yanakiev
  • 2,546
  • 3
  • 39
  • 88
0
votes
2 answers

How do my application know if there is default printer changes notification

i'm using Delphi XE3 and below is my sample application: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; type …
lmengyew
  • 371
  • 4
  • 18
0
votes
2 answers

Delphi XE3 indy gmail smtp

I have a problem sending gmail smtp mail with indy on delphi XE3 build (Version 17.0.4770.56661) I can smooth send my laptop but other pc's give a error like "connection closed gracefully" I add a idlogfile component on my form and give me this…
CeRBeR
  • 45
  • 2
  • 9
0
votes
1 answer

What causes a form not to fire FormResize?

In Delphi XE3 I have a form that gets an initial FormResize event and no more. If I resize the form by dragging a corner I get no FormResize event and any aligned controls do not move/resize. The form is BorderStyle: bsSizeable.
Rob
  • 3,315
  • 1
  • 24
  • 35
0
votes
1 answer

Using Indy httpserver to find keywords in a webpage

I'm trying to use Indy http server to find keywords within a webpage for a proxy filter. I've set up a proxy and the http server, which works with web browsers, but I'm struggling when it comes to finding a keyword within the web page. I've been…
user1365875
  • 139
  • 2
  • 4
  • 15
0
votes
1 answer

Unknown exception in delphi application

I write an application that works fine on my system, but since yesterday I realize that its not works on other computers. This is the error that occurred in users system: EReadError error Error reading bmpAnimation.AnimationBitmap.PNG: Access…
sma6871
  • 3,198
  • 3
  • 38
  • 52
0
votes
2 answers

Install font in firemonkey

How Can I use embedded font or install new fonts in my firemonkey application? I tried this solution but WM_FONTCHANGE is not defined in FMX! I want to use custom font in my application, how I can do this?
sma6871
  • 3,198
  • 3
  • 38
  • 52
0
votes
2 answers

Stopping current application and running update application

I am trying to write my own update source code to update my application from the web basically I use two INI files. One on the web and one on the client side. The client side holds the current version number and the url to the server side ini. The…
JakeSays
  • 2,048
  • 8
  • 29
  • 43
0
votes
2 answers

missing connection or connstr delphi

When I run my program and press one of my login buttons it says missing connection or connection string The connection string is already there procedure TFmLogin.BtnLogin2Click(Sender: TObject); begin ADOUser.ConnectionString:=Connstr; …