Questions tagged [delphi-xe]

Delphi XE is a specific version of Delphi. Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD Studio XE.

Delphi XE is a specific version of Delphi.

Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD (rapid application development) Studio XE.

Delphi XE code name is Fulcrum, compiler version 22, directive symbol VER220.

Speculation about Delphi XE prior to its release often referred to this release as Delphi 2011.

Delphi XE was preceded by Delphi 2010 and succeeded by Delphi-XE2

1495 questions
0
votes
1 answer

Saving deleted records to another table

I am deleting records from one table (based on a condition) like : procedure TForm3.AdvGlowButton1Click(Sender: TObject); begin if MessageDlg('Are you sure???' , mtConfirmation, [mbYes, mbNo], 0) = mrNo then Abort else Case…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
2 answers

Where the .cpp files are stored on installed Delphi .groupproj file?

I have a RxLib Tools installed on my Delphi XE. I need to learn more about the RxLib source but I don't know where the .cpp files are stored on installed Delphi .groupproj file.. Anyone here can help me where it were stored? Thank in advance.
Jessie M
  • 498
  • 1
  • 9
  • 23
0
votes
1 answer

Delphi XE License becomes invalid after formatting the machine

I have a delphi XE license with me. I format my machine and installed Delphi again, when i tried to register my license it is saying the limit has been reached for the account. How should I proceed further? Any help will be appreciated.
Jeeva
  • 4,585
  • 2
  • 32
  • 56
0
votes
0 answers

Solution to Printing Crystal Reports XI Forms in Delphi XE3

After suffering through the same problems as others did, I came up with this solution to previewing/printing Crystal Reports XI reports. This borrows a few lines for the login sequence. I still can't find anything in the *TLB.pas files that allows…
bcorll
  • 33
  • 5
0
votes
1 answer

How to install and use VerySimpleXML in Delphi?

I am new to Delphi and I need help in how to install VerySimpleXML. I would also greatly appreciate a tutorial on how to use it to convert html to xml, if you guys know where I can find such a tutorial.
DLee
  • 73
  • 1
  • 6
0
votes
2 answers

insert data from listview into database delphi

i'm searching an example how to save data from listview into database. i have a listview with some data: and database mysql: ID, name, position, sall, date can someone show me an example how to do this? thx.
vkatsitadze
  • 1,525
  • 1
  • 11
  • 13
0
votes
1 answer

Exporting grid to excel + OOXML

Earlier we used BIFF to export the grid to excel but there is a limitation of rows so that we thought of moving to OOXML format. Is there any sample source available to get started. Please help me with this as i am new to Delphi.
Jeeva
  • 4,585
  • 2
  • 32
  • 56
0
votes
1 answer

AnyDac form design, programming query cancel dialog

I'm having a problem with my AnyDac Cancel dialog from TADGUIxAsyncExecuteDialog component, basically i need the user to be able to cancel the query execution it works perfectly but the design doesn't match the program what i need is to edit the…
AirWolf
  • 597
  • 7
  • 27
0
votes
1 answer

TCrossFunction not consistent with TLineSeries when ValueColor = clNone

When plotting a line series in which some values have their ValueColor set to clNone, the line will display as if those points didn't exist or were invisible. However, when I use the TCrossFunction against that same line series, it behaves as if…
SteveB
  • 91
  • 1
  • 4
0
votes
1 answer

Memory leak using RemObjects and COM Objects over Delphi

I have a webservice created with RemObjects SDK over Delphi XE and a function published that to do his works needs to use com objects (Specifically Ado connection to database using DMO). I have detected that when I call this function a lot of times…
user1151835
0
votes
1 answer

incomplete prefix in an XML node

need a node with prefix, but he does it the right way, is a failure of the way I do? or is a compiler bug? main module code function Generar_Addenda(PathCFD : String; ValidaOnly : Integer) : Integer; const xmlns = 'xmlns=""'; (*…
0
votes
1 answer

Unexpected behaviour of TTable and TDBGrid in Delphi XE2

I have a textbox and a grid on a form. Functionality: When I enter an Emp ID (say 1, 2, 3 etc) in textbox, corresponding to that Emp ID, Emp Name should come in the Grid from database. When I again enter another Emp ID, Another Emp Name should get…
user1556433
0
votes
1 answer

Restore delphi form windows 7

I have an application written in Delphi XE and I can maximize and minimize using Windows XP without problems. Using Windows 7 I can't restore the application after minimize it. I click the taskbar and the window don't appears. I have to kill the…
user1151835
0
votes
1 answer

Delphi class procedure overload

Consider this code : TForm3 = class(TForm) public class procedure GetAConn(var res:String); overload; class procedure GetAConn(var res:Integer);overload; { Public declarations } end; class procedure TForm3.GetAConn(var res:…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
1 answer

What would cause SetKey to not change my Table State?

I have a table that I have set up as a pointer to be used by another form. There is a procedure on this form where using a For Loop I create new records in the table if the GUID does not already exist. With Table^ do for I := 0 to…
Trevor
  • 16,080
  • 9
  • 52
  • 83