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
-2
votes
3 answers

delphi: dll without the manager of memory for transfer of string

Delphi Xe. It is given: 1.dll, in it a unit unit DllUnit; interface uses windows, sysutils; Procedure GuPrcA(var p:PAnsiChar;const l:integer); StdCall; Procedure GuPrcW(var p:PWideChar;const l:integer); StdCall; Exports…
Gu.
  • 1,947
  • 4
  • 30
  • 49
-2
votes
1 answer

Cannot send info from dll to exe with WM_COPYDATA

I am trying to send a record from one dll to one exe. The dll is an Outlook add-in I wrote, the exe is my main application. I used this example to succesfully send a record from exe to exe, but when I try to do the same from dll to exe it doesn't…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
-2
votes
2 answers

Delphi EXPERT ToolServices.getCurrentFile failing

What is a new way to get current file that is being worked on in Experts for Delphi XE Previously in Delphi 5-7 we used ToolServices.getCurrentFile
Irfan Mulic
  • 1,186
  • 3
  • 14
  • 28
-2
votes
2 answers

Incompatible types: 'string' and 'Double'

I would like to use a Label or a Memo to view information: function GetCPUSpeed: Double; const DelayTime = 500; var TimerHi, TimerLo: DWORD; PriorityClass, Priority: Integer; begin PriorityClass := GetPriorityClass(GetCurrentProcess); …
MrCamarium
  • 5
  • 1
  • 5
-2
votes
1 answer

IdHttp with SSL

I'm trying to use TIDHttp to access Paypal Api. I'm using Indy 10.6.2.0. Somehow when i try to get from https, i get this exception : Error connecting with SSL. error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure Here is my…
delphirules
  • 6,443
  • 17
  • 59
  • 108
-2
votes
1 answer

Invalid pointer operation; Recursive Merge Sort

I've attempted to implement a merge sort for strings however I cannot perform the recursive part and I get the error "Invalid Pointer Operation" program Project1; {$APPTYPE CONSOLE} uses SysUtils; var i : Integer; const MyArray : array[1..5]of…
user9155061
-2
votes
1 answer

Reading and writing .accdb file from DataModule in Delphi

I am making a school project which consists of creating a database and reading and writing into it. Within a DataModule I made the database in run time using a TAdoCommand which worked great and now I need to read and write into it. I placed some…
user9155061
-2
votes
1 answer

How to use UMain in Delphi

I have started to research Delphi and have created a project that includes packages. I would like to use UMain in one package as follows: implementation {$R *.dfm} uses UMain in 'UMain.pas'; But I get this error: [dcc32 Error] UIssue.pas(98):…
-2
votes
1 answer

Queue don't refresh progress bar on Firemonkey

I'm using Queue to create many Forms on Delphi Application Initialization but it don't work properly. Bellow a fragment of code TThread.Queue(TThread.CurrentThread, procedure() begin Application.CreateForm(TForm1,…
-2
votes
1 answer

Delphi Markup Label throws "Control 'MDLabel1' has no parent window."

Searching for a Delphi label component with basic format/markup support I came across Delphi Markup Label (MDLabel). As a bonus it supports links. Unfortunately I can't get it working. The component is provided as a single MD_Label.pas file. I've…
CodeX
  • 717
  • 7
  • 23
-2
votes
1 answer

How to get values from a field and assign to a TStringList?

How do I get all the username values from the image below and can convert them into TStringList, strings or TMemo? I tried the following code but it didn't work. with q3 do var txResul:stringlist begin Close; SQL.Clear; …
-2
votes
1 answer

How can we select data when we used key words as access database table names and field name in delphi

I am using delphi and access database. I used a keyword as a table name and field name. Ex : User \ Date \ Password. How can i access it from delphi? Below is the code i tried. It is working when i run it in Access. but same query can not run from…
Ishanka
  • 360
  • 4
  • 18
-2
votes
2 answers

Loading font from resource file

I am having a Delphi XE Project with the following resource: I have used function LoadResourceFont and tried the following code: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs,…
HP Owner
  • 51
  • 4
  • 12
-2
votes
1 answer

Delphi How to Use UpArrow DownArrow to navigate

I have a form with a TDBGrid and TClientDatabase. I want to allow using the UpArrow or DownArrow to navigate in the database no matter which control has focus. I set the Form.KeyPreview := true This is the Form.OnKeyPress procedure…
ChuckO
  • 2,543
  • 6
  • 34
  • 41
-2
votes
1 answer

How to prevent using anything except application in Delphi XE

I'm developing a VCL Form Application When the application started I need to prevent the user of the computer to do anything He can't close the application by ALT+F4 or CTRL+ALT+DEL He can't change to another window by ALT+Tab He can't Go to the…
SystemX
  • 481
  • 4
  • 10