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

GStack.HostToNetwork input types - Shortint?

How to pass "a" variable into HostToNetwork() ? Need somehow convert it.. And how to insert into "a" variable, this HEX code ? var a : array[0..19] of Shortint; h : string; h =:…
jmp
  • 2,456
  • 3
  • 30
  • 47
0
votes
2 answers

Right mouse button in image disabling first click mouse events outside of image

I have a Delphi app with a TImgView32 control (part of Graphics32). I am handing the mouse move and mouse down event, and that is working. The problem is that whenever I use the right mouse button within the image, when I let go of the right mouse…
Robert Richter
  • 278
  • 2
  • 9
0
votes
1 answer

Real time audio manipulating

I have a lesson at university where we explore Embercader RAD Studio XE3. We try to find a Firemonkey or VCL component/library what alows us audio munipulating such as sampling or manipulating realtime microfone source. Every help are appreciated :)
MrKukac
  • 11
  • 1
0
votes
1 answer

Delphi 5 migration - unable to locate file

I am migrating my Delphi 5 application to Delphi XE3. I am totally new to XE3. While compiling application I am getting error 'Undeclared Identifier Interace_Info'. Code is like below: abc.inc: Interace_Info = packed record iflag:…
Nalu
  • 1,107
  • 4
  • 20
  • 43
0
votes
3 answers

Will programs developed using Embarcadero Delphi XE3 work with Embarcadero Delphi 2010

We are trying to develop a form that will be added to a project written and created using Embarcadero Delphi 2010 , We will use Embarcadero Delphi XE3 as our Development Environemt, will the code that we will write work on Embarcadero Delphi 2010…
Hassan Mokdad
  • 5,832
  • 18
  • 55
  • 90
0
votes
2 answers

How to employ DPROJ within Delphi code?

I want to use a GUID to uniquely identify my Application and to get at this value from within the code. I see that there is a GUID that would be ideal in the DPROJ:
Brian Frost
  • 13,334
  • 11
  • 80
  • 154
0
votes
1 answer

Delphi XE2 / XE3 & Windows 8 Tablets / Phones

Is it possible to develop apps for Windows 8 tablets and phones using Delphi XE2 or XE3? I think XE3 ust supports UI. I am not sure if we can create apps for Win8 tablets using Delphi. I have read somewhere we need to use Prism XE3 with Visual…
blacksun
  • 733
  • 7
  • 24
0
votes
0 answers

Proper way to install JVCL 3.47 on XE3

I am trying to install JVCL 3.47 on a Delphi XE3 instance but I failed twice; I know that first I must install JCL; When I run Install.bat located in the jcl folder I get this error: "Windows cannot find '..\bin\JediInstaller.exe' ...; I looked…
Cristian Vasuica
  • 369
  • 9
  • 22
0
votes
1 answer

Visually creating database tables with the Data Explorer

I watched a video in relations to creating and working with databases in Delphi. The video states that you can create the database using code, the data explorer or the SQLite3 console application, but I am unable to find out how to create the…
ple103
  • 2,080
  • 6
  • 35
  • 50
0
votes
1 answer

Compiler Internal Error upgrading from Delphi 2009 to XE3

Compiling a rather large project (>750K lines) with delphi XE3 (upgrading from 2009) Getting the following error [dcc32 Fatal Error] MainForm.pas(3170): F2084 Internal Error: URW1147 Similar to this question, however nowhere in the code are…
Peter
  • 1,065
  • 6
  • 18
0
votes
2 answers

Install both Delphi 2010 and XE3 on the same Windows?

My Win7 now installed RAD Studio 2010 with Delphi 2010, can I install Delphi XE3 separately? So both Delphi 2010 and XE3 work on the same Windows? Thanks!
RRN
  • 1,127
  • 1
  • 12
  • 37
0
votes
2 answers

Filesetattr is not available with XE3 (Firemonkey)

I want create a hidden ini file under macosX environment with Firemonkey (XE3). But unfortunaly this command is not known anymore in system.utilys Somebody tips?
Frank
  • 1
0
votes
0 answers

Firemonkey dragging image not showing on screen

The following first image is taken from a Virtual Machine and second is taken from a real pc. Why don't I see the dragging image on the real PC? Virtual Machine Real PC
Liger
  • 37
  • 1
  • 6
0
votes
1 answer

firemonkey xe3 xe2 TPath

when executed follow code Path is shapely in xe2 but absurd in xe3. procedure TForm2.Button1Click(Sender: TObject); var Path : TPath; begin Path := TPath.Create(Self); Path.Parent :=self; Path.Data.Data := …
Liger
  • 37
  • 1
  • 6
0
votes
1 answer

Delphi XE 3 LiveBindings AutoInc SQL Server

I have a Delphi XE3 Firemonkey app with LiveBindings to a SQL Server. I can connect and see all the data on a grid. I have a field ("id") which is an "identity field" on SQL (more commonly known as an AutoInc). When I try to add a record I get…