Delphi XE2 is a specific version of Delphi. Delphi XE2 was released on September 1, 2011 and is available as a standalone product or as part of RAD Studio XE2.
2
votes
1answer
34 views
Code-completion doesn't list message handlers
When working on an old project in Delphi XE2, the code-completion window that pops up after CTRL-SPACE does not list message handlers like Delphi 7 did:
In the screen shot above, the WM*** routines ...
0
votes
1answer
45 views
How to go about building an RTSP server using Indy components?
I would like to provide a stream of images via RTSP using Indy 10 components. I don't need to know all the individual requests and all, that's all covered separate from what I need. But what Indy ...
0
votes
1answer
25 views
how to get delphi Xe2 Indy 10 socket server peer host name
Here is my code...
procedure TMainForm.tsConnect(AContext: TIdContext);
var
s, INstr, adr:string;
port: Integer;
begin
with TMyContext(AContext) do
begin
Con := Now;
if ...
0
votes
1answer
40 views
Calculate a base64 encoded MD5 hash for Amazon MWS in Delphi Indy10
I am trying to submit a feed to Amazon MWS. The problem is that Amazon says that the Md5 hash I submitted does not match their calculations, so my request was rejected.
This is the code i use to ...
1
vote
3answers
80 views
How do I make a listbox same as Outlook 2013?
In Delphi XE2 or XE3, How can I make a list box similar to Outlook 2013 list of emails ?
or is the list in Outlook 2013 something else ?
how can I achieve a similar one in Delphi XE2 or XE3 ?
...
0
votes
0answers
14 views
Delphi Datasnap & Active Directory
Hi I am using Delphi XE2 & XE3
Is there any way to get Delphi Datasnap to Logon using credentials from windows Active directory?
-5
votes
0answers
161 views
exe blows up on a new computer [closed]
I have an exe file that I created using Delphi XE2 on Windows XP. It runs fine on a computer that has Delphi installed on it, but when I try to run it on a computer without Delphi installed, it blows ...
0
votes
2answers
25 views
Error de GMLib en Delphi XE2
Delphi XE2
He instalado la versión 1.0.0 de GMLib y todo bien.
En un programa he añadido un form con los siguientes componentes:
TWebbrowser, TGMMap, TGMMarker
y me aparece el siguiente error de ...
0
votes
1answer
71 views
What is the correct encoding for Indy Tidhttp for posting XML Files?
I notice I have invalid characters for XML files in an application who use Indy Client (I actually use default parameters for IdHttp)
Here is my code :
ts := TStringList.Create;
try
...
1
vote
1answer
99 views
SQLite Exception raised with message: no such table
I created an application that collects information from the computer (computer name, CPU, Memory, etc) but I am having such a hard time displaying the information stored in the SQLite database, when I ...
2
votes
0answers
89 views
Behavior in Delphi Documentation Viewer
Delphi XE2 Update 4 Hotfix 1 and Help Update 6 for XE2.
If I am in the IDE, highlight an object name such as TLabel, then hit F1, I am transported to the description of Vcl.StdCtrls.TLabel in ...
0
votes
0answers
80 views
Performance issue with nested TClientDataSet
I have an application which uses client datasets as in memory tables, and local archive for data received from laboratory instruments. Over time, I've added a few fields to these client datasets, and ...
-3
votes
0answers
48 views
How insert text to NextGrid XE2 [closed]
I want to insert text in NextGrid XE2 without take from database
'+QuotedStr('ABSENT')+' // like this or not ?
please help me
0
votes
1answer
126 views
Convert JSON String to Image to send by SQL
Well, I have an application that convert an image to json array and I´m saving it into blobfield
function getImage() : String ;
var
memorystream : TMemoryStream ;
jsonArray : TJSONArray ;
...
0
votes
0answers
14 views
DelphiXE2 : How to Display Data From Database to NextGrid
I've searched around, ask my local teacher at my school. But there is no way i could find how to display data from database to NextGrid. I used SELECT * but it doesnt shown on the next grid.
...
1
vote
0answers
27 views
Can Rbuilder print without preview?
I use RBuilder to print barcode in my application. When I use ppreport1.print it shows a print preview but this requires to press Print button again for print.
How can I print without preview ?
0
votes
2answers
49 views
How refer to a particular instance of twebbrowser? - Delphi
If a create n Tabsheets at runtime and create one Webbrowser inside each tabsheet using a method such as:
procedure createTab;
var crm: TWebbrowser;
var ts: TsTabSheet;
...
1
vote
1answer
92 views
Refer to an object instance and free it
If I create multiple TButton objects with this routine:
procedure CreateButton;
begin
Btn := TButton.Create(nil);
end;
Then, how can I refer to a specific object instance to free it using another ...
1
vote
0answers
47 views
Delphi ADOQuery parameters acccess violation
Does anyone know why this does not work any longer on WinXP but works on Win7 and others ...
qryS.SQL.Add('SELECT column');
qryS.SQL.Add(' FROM some_table');
qryS.SQL.Add(' WHERE param = :param1');
...
2
votes
1answer
163 views
Best Component for Client-server with thousands client [closed]
What is the best Component for a Client-Server (TCP) application with thousands of clients involved whereas all connections must stay alive ?
So far I have used Indy with one TIdTCPServer in the ...
0
votes
1answer
55 views
painting background from TSeStyleFont
i'm trying to paint vcl style background from TSeStyleFont like in Bitmap Style Designer ..
is there any way to draw the background ?
i have make a try :
- draw the object first in a bitmap using ...
2
votes
1answer
75 views
Coinitialize has not been called error message
I am in the process of coding a console application that will create a firewall exception for my main app called Client.exe which uploads a few documents to our servers via FTP. I borrowed RRUZ code ...
2
votes
1answer
62 views
Is it possible to refer to a fields parent class
Using: Delphi XE2
A class has a field that is another class.
Is it possible in a procedure of the field to refer to the container class?
Type TClassA = class
procedure ClassAMethod;
end;
Type ...
2
votes
2answers
86 views
Does an Indy HTTP server have a built-in way to assign security to certain files/extensions?
In Delphi XE2 / Indy 10, I've been doing some work on a few Web Broker projects which include a web module capturing particular http requests, and if there's no particular matching request, it ...
2
votes
1answer
68 views
Thread not executing on open non-modal form
Below is part of the code for a 'progress' form.
Apart from ProgressBars (removed from code) it has a TLabel (LblDots) of which I want to change the caption (number of dots increasing).
In the ...
2
votes
1answer
127 views
delphi - how to get type of enum
I know how to get enum value from integer value, and I have this code
function GetEnumValue(intValue:integer):TMyType
begin
if(ordValue >= Ord(Low(TMyType)))and(ordValue <= ...
4
votes
1answer
113 views
Is a Thread Safe field of TThread itself thread safe?
in this code :
TMyClass = class(TThread)
public
FInputBuffer : TThreadedQueue<TBytes>;
protected
procedure Execute; override;
end;
Does use (in TMyClass and in other class) of ...
1
vote
1answer
123 views
How to lock on to a cloned form in Delphi?
I am writing a chat program that has a bunch of clients connect to it and populate themselfs to a listview, I want to be able to click on each individual client and open up a form that looks like a ...
0
votes
1answer
89 views
Firemonkey style inheritance?
I've just started with Firemonkey, and still have a lot to learn with regards to the usage of styles, but there is something I can't get figure out.
I've learned how to simulate a TListView using ...
0
votes
1answer
64 views
GMLib Simple directions sample
someone could give me a simple sample how could i implement the follow situation using GMLib:
I have some address(street, number, city) e i would like to make a route using the google maps connecting ...
0
votes
1answer
89 views
Registry Node Decription in Win64
I am having one Delphi XE2 Project to create some node and subnodes in Windows Registry as described below :
I have defined the following codes :
function GetWinDir: string;
var
WindowsDirectory: ...
0
votes
0answers
57 views
Delphi fmx xe3 previewing mouseevents on form
In xe2 FMX I could preview mouseevents, for example mousedown, on the form object before the mouseevent arrived at the control.
In Delphi xe3 this doesn't work anymore.
For example, a test app with ...
1
vote
1answer
114 views
Show error message that is raised from SQL Server
I use "Adoconnection" to connect to SQL Server and use below code in a ADOQuery :
BEGIN TRY
...
END TRY
BEGIN CATCH
RAISERROR(LTrim(str(ERROR_NUMBER())))
END CATCH
When I call error message by : ...
1
vote
2answers
91 views
Indy 10 and OpenSSL
I have recently upgraded my Delphi 7 to Delphi XE2 and I'm kinda new to it. I used Indy 10 with OpenSSL to receive HTTP Content. It works just fine and I would like to share my program with with other ...
1
vote
1answer
51 views
Is it possible to monitor the progress of individual TIdFTPServer client downloads?
I have a TIdFTPServer that has several clients connected simultaneously. I want to monitor the progress of each of the client downloads.
Anybody know if this is possible?
2
votes
2answers
71 views
Strange AV while loading an icon from the resource stream
I'm adding icons to my project via Resources and Images dialog, and decided to walk away from TIcon.LoadFromResourceName because it does not perform any error checking. I wrote seemingly equivalent ...
2
votes
3answers
94 views
Simulating class properties in (Win32) Delphi
In Simulating class properties in (Win32) Delphi, there's this trick for defining 'class properties' as well as class methods:
unit myObjectUnit;
interface
type
TMyObject = Class
private
...
1
vote
2answers
108 views
How to auto expand and print a TreeView
I created an application that goes out and scans every computer and populates a TreeView with Hardware, Software and updates/hotfixes information:
The problem I’m having is with printing, how do ...
0
votes
0answers
38 views
Can SetDisplayConfig be used to force a specific display configuration to be persistent across reboots
I've been trying to find a way to force windows 7 to always use a specific display configuration regardless of the number of displays physically connected and their EDID. This would mean that a ...
-2
votes
0answers
11 views
character zero (0) in front android and datasnap delphi [closed]
I create android apps with DataSnap connection, but there is a problem if the password to login if there is 0 character in front of the password. The problem is these characters DataSnap server ...
0
votes
1answer
72 views
Change color of a component when clicking down and up
I designed a component like "Tile" and I need to change the color when clicking down or up.
How can I do this?
0
votes
1answer
49 views
TIdHTTP exception handling
I created a program that automatically connects to our local server and downloads updates, here is the code:
// Connect to web server and download ToBeInstalled.ini
Url := ...
2
votes
3answers
253 views
How to execute SQL statements on a dataset which didn't come from a database?
Suppose I have an application which fetches a custom XML packet from the server which represents a dataset. Then, suppose I wish to execute a SQL statement on that data via a dataset. What can I use ...
0
votes
2answers
211 views
Are there HTTP Client/Server components for Delphi that support iOS?
I am developing a program in Delphi/Object Pascal that acts as an HTTP request router on various platforms. It's a sort of proxy that is designed to pass through certain HTTP requests and field ...
1
vote
2answers
168 views
Could not convert variant of type (Null) into type (OleStr)
Do you know why the block of code bellow will negate the "Could not convert variant of type (Null) into type (OleStr)" on some computers, not all of them but 3 out of ten computers generate the error ...
-1
votes
0answers
68 views
Implementing TSession [duplicate]
Currently I am using TDatabase connected:=True prperty to connect to the database at the starting of application and use TQuery to execute queries.
`procedure TfrmTrwMain.SqlDatabaseLogin(Database: ...
0
votes
1answer
35 views
TGridPanel no transparency if themes disabled in Win7
I have a form filled with a TImage. I put over this a TGridPanel. If themes are enabled in Windows 7 the TGirdPanel appears with transparency. If themes are disabled (no visual styles) the TGridPanel ...
1
vote
1answer
79 views
Treeview Imageindex - image keeps changing
How do I keep a Treeview from reverting to the first image in an image list when a node is selected? When the Group nodes are created, they have an ImegeIndex of 1
Node := TreeView1.Items.Add(nil, ...
0
votes
0answers
46 views
Documentation on using the DOM in Delphi XE2
I'm trying to use the DOM in Delphi XE2. There are lots of articles and examples of using the DOM in languages other than Delphi. The documentation on DOM programming in Delphi XE3 IE is scant. ...
1
vote
1answer
64 views
Imageindex and stateindex in a treeview
I coded a function that gets the list of installed software on the computer using WMI
begin
Result:='';
FWbemObjectSet:= FWMIService.ExecQuery(Format('Select %s from %s',[WMIProperty, ...



