Delphi 2010 is a specific version of Delphi. Delphi 2010 was released in August 2009, and is available as a standalone product or as part of RAD Studio 2010.
0
votes
1answer
10 views
Incompatible types: 'tValidPos' and 'tPos'
In the following code, I get the errors as commented:
function ToPos : tValidPos;
type
tPos = (poAboveCenter , poAboveLeft , poAboveRight);
tValidPos = array [Low (tPos)..High (tPos)] of ...
2
votes
1answer
105 views
Validate a XML against a XSD
I´m trying to validate a xml against a xsd file but returns de error:
1.xsd#/schema/element[1][@name = 'envioLote']/complexType[1]/sequence[1]/element[4]
Undeclared XSD element : ...
1
vote
1answer
55 views
Server freeze after IdTCPClient connect
I have two applications that communicate with each other using TCPServer and a TCPClient components.
The server starts in hidden mode:Application.ShowMainForm: = false;
Just an icon on systemtray ...
0
votes
2answers
45 views
How to stop Script Errors in TWebBrowser in delphi
I have to show a slide show containing javascript language using TWebBrowser Component in Delphi 2010.
While I am playing in IE Browser it doesn't show any errors.
But while running in delphi it ...
-1
votes
0answers
8 views
How to show more details on horizontal bar charts in delphi [closed]
I have to show all employees fine in our company in horizontal bar chart using Delphi.
0
votes
1answer
39 views
Open a Workbook and Run a Macro From Another - Delphi 2010
I'm trying to open a Excel workbook and run a macro in it, but the macro is localized in another workbook, like this:
Excel := CreateOleObject('Excel.Application');
Excel.Workbooks.Open('C:\Documents ...
2
votes
1answer
56 views
PromptDataSource and password
I use PromptDataSource to allow users to setup a database connection.
connectionString := ADOdb.PromptDataSource(0, '');
However I can't get it to work with "Allow saving password" when using the ...
2
votes
1answer
87 views
Change application taskbar icon at run time(ignore shortcut icon)
I have a program which has two different modes that users can be in. Depending on the mode I want to change the taskbar icon to reflect its state. I've found application.icon will allow me to set any ...
3
votes
1answer
71 views
Programmatical log in by providing credentials
Consider windows users A (with administrative rights) and B (restricted access rights).
Also a data folder located on the server to which only user A has the access to.
The challenge I’m facing is to ...
0
votes
1answer
43 views
Send and Receive text using sockets in Delphi 2010
I do not have much familiarity with Delphi 2010 and am having trouble with using components ClientSocket and ServerSocket. The question is simple: I am trying to send a text from a client to a server ...
2
votes
4answers
100 views
Conditional to the caption property of a popupmenu item
I have a popupmenu with a item named "Ativar", but i can not understand why this code don't work:
procedure TForm6.Ativar1Click(Sender: TObject);
begin
if ativar1.Caption='Ativar' then
begin
...
-1
votes
0answers
85 views
Update TLabels in OmniThread
I am using the OmniThread Library with ImageEn to process images in a thread.
THIS IT A TOTAL EDIT... Here is the entire Unit:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, ...
-3
votes
1answer
84 views
Automating picture loading into Delphi TImage Picture (TJPEGImage) [closed]
I need to automatically load pictures into TImage. I can figure out the location of the jpeg by the pas file name. If the file name is "chapter14screen45" then I know it is folder 14 then the images ...
0
votes
1answer
62 views
Delphi packages usage
I have a bunch of procs and funcs that I intend to use for all my projects.
Therefore, I created and installed a package (MyLib.bpl), with all those
procs and funcs to act as a global library.
Now, I ...
4
votes
0answers
99 views
Malformed string when inserting UTF8 database
I use Delphi 2010, Firebird 2.5.2, IBExpress components.
Database charset is UTF8. In db-connection UTF8.
Database:
var
Database: TIBDatabase;
begin
...
Database.params.Clear;
...
0
votes
0answers
33 views
at design time can't copy and paste on other container on the form
I have a custom component. At design time, I drop the component on the form.
After that, I right-click on the component and select "Copy" from the drop-down menu.
Then, I right-click on a tPanel that ...
6
votes
1answer
126 views
How to preview an image with TFileOpenDialog
Does anyone know how to display an image in the TFileOpenDialog preview?
I am using ImageEn to display image information and to add additional file type support to the dialog. For example... I can ...
2
votes
1answer
70 views
How to expand a subitems of a ListView when click into a ListView item
I'm trying to expand a ListView subitem when i click into listview item without code, see the estructure:
TListView
|
|_Item-01
|
|_SubItem01
|
...
-2
votes
1answer
72 views
how to disable launching some applications? [closed]
Is there a way to prevent some applications to be launched ?
1) ex: I don't want users to launch notepad.exe : is that possible ?
2) Is that possible to forbid all applications to be launched except ...
-1
votes
0answers
51 views
periodic error in Chromium.Load ()
When using Chromium.Load () in a specific, long-term cycle - Sometime treatment after 20-30 seconds (the URL is changed), the program crashes. Perhaps it is due to the asynchronous loading.As can be ...
-1
votes
1answer
122 views
write specific line in tmemo according to line number
I am using the following to insert text from a text file into TMemo.
procedure TForm1.Button1Click(Sender: TObject);
var
SL: TStringList;
begin
SL := TStringList.Create;
try
...
0
votes
0answers
118 views
Is there any key differences between Delphi 2010's compiler and Delphi XE that could cause an EOS Error Code: 1158
As the question suggests I have an app that I can run perfectly fine after building under Delphi 2010, however if its compiled under Delphi XE I get the error:
Project xyz.exe raised exception ...
2
votes
2answers
150 views
Why doesn't this thread terminate?
I can not get this thread to terminate. Where did I make an error?
type
TThumbnailThread = class(TThread)
public
procedure Execute; override;
procedure CreateContactSheets;
end;
...
2
votes
0answers
46 views
trapping drag-and-drop at design time in Delphi for a TCustomGroupBox descendant
I'm developing a tCustomGroupBox in Delphi 2010 and I want to trap drag-and-drop operations at design time.
I've tried to trap StartDrag and DragDrop, but it seems that those methods does not respond ...
0
votes
0answers
48 views
Is it possible to pass modified data from a ClientDataSet to a database in Delphi 2010?
I've a clientdataset with some data loaded into it. The user of the application modifies one field of each record from this dataset. When he push a button, it must save all the changes on the ...
1
vote
0answers
69 views
Delphi 2010 DataSnap Client with HTTPS
I have a DataSnap server written in Delphi XE3, deployed as an ISAPI module with SSL.
I'm writing a client application for this server, but it has to be written in Delphi 2010 for now. I'm having ...
2
votes
1answer
153 views
Can a unicode or UTF8 character be stripped from a ansistring?
In the case where a Unicode character or a UTF8 character exists in a ansistring is it possible to strip the characters from the string? In this particular case the ansistring contains EXIF ...
0
votes
0answers
86 views
VNC DES authentication algorithm
I'm doing a client for VNC protocol (RFB). Everything is working from the part where I connect to server, to the part where I receive 'challenge' from server. The challenge is a 16-byte random, that ...
5
votes
1answer
81 views
Delphi 2010 forms shows on “wrong” monitor
I have a simple test app, with one empty form, and a second containing a TButton. The button script is like this:-
procedure TForm1.Button1Click(Sender: TObject);
begin
Form2.Show();
end;
Form2 ...
0
votes
2answers
137 views
How can I send Unicode characters (16 bit) with Serial port in Delphi 2010?
I have a problem in Delphi 2010. I would like to send from my PC some Unicode (16 bits) characters to the printer with serial port (COM port).
I use the TCiaComPort component in D2010.
For example:
...
0
votes
0answers
81 views
How do I add the Controller Component Delphi 2010 kodak image scan
I've recently started to Delphi 2010, I have a question?The new project, write the text file on the picture writings. To do this you have to scan images. Import ActiveX component, but I wanted to say ...
6
votes
3answers
415 views
Delphi XE3 EXE file size 25 times larger than Dephi 7
As a test I decided to create a simple "Hello world" app in Delphi using Delphi 4, 5, 6, 7, 2005, 2010 and XE3. The app is nothing more than a TForm, a TButton with an OnClick event that calls ...
2
votes
1answer
152 views
How do I read a UTF8 encoded INI file?
I have an INI file in UTF-8 format.
I am using Delphi 2010 to read the INI file and populate a TStringGrid with the values in the INI file.
var
ctr : Integer;
AppIni : TIniFile;
begin
AppIni ...
1
vote
1answer
95 views
Sorting files in memory
D2010 Pro, Win Vista 32bit:
I need to parse a directory and its subfolders for files and read the file information (name, type, size, date modified ... the Windows Explorer columns) into memory. So ...
2
votes
0answers
91 views
Create an attribute for an inherited property
[EDITED] I'm trying to get RTTI to recognise the "Items" property of the TList generic class so that I can apply an attribute to it. I've written a console app which outputs the RTTI properties here:
...
2
votes
1answer
101 views
How to create tabbed views for RAD Studio's tool components
tl;dr
How can I group RAD Studio tool windows into a single tabbed container?
Brace yourself. Enormous amounts of unimportant details incoming.
Background
In the newer RAD Studio IDEs (versions ...
2
votes
1answer
94 views
Using Yahoo! Query Language (YQL) in Delphi
I see that yahoo yql can get many information in web services which can be very useful. However, when I search for "Delphi yql" in google. There are no useful information returned. Are there any ...
2
votes
1answer
105 views
I use Delphi to call a DLL but still have an error
This is the invoke code
unit CY;
interface
uses windows;
type
TMember_Rd = Record
iID: integer;
sCode: Array[0..255] of char;
sName: Array[0..255] of char;
end;
PTMember_Rd = ...
1
vote
1answer
105 views
GetLocaleFormatSettings for LOCALE_INVARIANT returns the users settings under Windows XP German
All numbers that I write to files for exchange purpose use the following code:
GetLocaleFormatSettings(LOCALE_INVARIANT, fsInvariant);
FloatToStrF(Value, fsInvariant);
When I read in the number I ...
0
votes
0answers
43 views
How use the mouse wheel in TScrollbox [duplicate]
i have a form with a PageControl(actually a TcxPageControl) with several tabs in each tab i put a TScrollBox and in this scrollbox several components. I want to scroll using the mouse whell, i already ...
1
vote
1answer
41 views
Creating a global frame?
Delphi RAD Studio 2010 on Windows platform:
Please excuse my ignorance and feel free to tell me if I am barking up the wrong tree.
I just need to know whether my idea would work in principle?
I ...
3
votes
1answer
241 views
Delphi 2010 button with Windows version that has Aero glass on turns text white
The other day, I started to play with different visual effects in Delphi, and ran into a problem using Aero Glass effect (I have a Delphi 2010 installed): when I put the button on the glass, some part ...
0
votes
2answers
213 views
How to pass string parameters to an TADOQuery?
Using Delphi 2010
Can anyone tell me what I am doing wrong here with my code. The comments show the errors that I receive with the particular methods that I tried to pass parameters to my ADOQuery
...
2
votes
1answer
152 views
Delphi and Windows Logon Events [duplicate]
I want to know how to receive windows logon and logoff events inside a delphi windows service.
The service itself is already built, now I want to show a systray icon that opens a settings/logs window. ...
1
vote
2answers
111 views
How to convert UTC to local time
I have to develop an application for ePrescribe and need to convert an UTC Time value (for example '2010-01-01T16:09:04.5Z') to local time. Delphi 2010, any suggestions?
1
vote
1answer
158 views
Insert partly existing data
I need to add extra data to my TEMP table shown at the bottom on button click.
I need all existing occurences of FROM - TO - DAYS in the table duplicated and inserted.
RATE_PRICE would be ...
-1
votes
1answer
144 views
cxGrid have the latest date selected
My query returns all the dates the guest stayed in the hotel (start_date and end_date) .
How can I have the cxGrid select the latest date (selected) in the grid when the query opens ?
By a filter or ...
-2
votes
1answer
89 views
by using Delphi . HOW to read whole data files for Search Engine ..? [closed]
Sorry for ambiguity, This is the first time that I use this site. OK, I'm trying to build a search engine, containing text files, I completed Read files line by line, cutting words and stored in a ...
1
vote
0answers
173 views
Java equivalent of Delphi encryption?
I have a Delphi 2010 application, that uses the Lockbox component for encrypt data. The program is calling the Triple DES Encrypt String CBCEx function with Key128. The key is generated by function:
...
0
votes
1answer
145 views
How to keep a global object in a Delphi DLL?
I have a simple DLL written in Delphi. It provides functions which operate on some read-only data, embedded as a resource. I found loading that resource on each call to be quite slow, so I want to put ...



