Delphi is a language for rapid development of native Windows, OS X and iOS applications through use of Object Oriented Pascal. The name also refers to the Delphi language (a modern evolution of Object Pascal) as well as its IDE, which is used to help edit and debug Delphi projects.
1
vote
0answers
6 views
PngComponents: how to add PNG file to TPngImageList
I'm tryin to add PNG file to TPngImageList (PngComponents for D7 got from http://code.google.com/p/cubicexplorer/downloads/list ).
type
TImgListCrack = class(TPngImageList);
function ...
0
votes
0answers
14 views
Why cant we do PChar('*') in Delphi 7?
I wrote this code and am getting AV in it.
procedure TForm1.Button1Click(Sender: TObject);
Var
C : Pchar;
s : string;
begin
c:= PChar('**');
s := string(c); // AV here , but ...
0
votes
3answers
26 views
Is there a block label for Delphi?
In Java we can make things like:
Test {
{ break Test; }
// ignore
}
Is there a Delphi equivalent?
2
votes
0answers
19 views
XML line feed symbols are replaced with carriage return
i tried load XML document and save an exact copy. Problem is all line feed symbol (#10, hex 0A) are replaced with carriage return. (#13#10, hex 0D0A)
<?xml version="1.0" encoding="utf-8" ...
-1
votes
2answers
34 views
SQL error on inserting UTF8 string into SQL Server 2008 table
I'm having problems trying to insert strings containing UTF-8 encoded Chinese characters and punctuations into a SQL Server 2008 table (default installation) from my Delphi 7 application using Zeosdb ...
2
votes
1answer
32 views
Unicode in Delphi form TRectangle TText
I'm new to Delphi & in DelphiXE4 editor I am trying to make chessboard gui on form, using x64 TRectangle for board (alternate colors). I want to add unicode chess pieces but in ObjectInspector ...
0
votes
0answers
47 views
Delphy 7 throws an error: RLINK32 Too many resources to handle
Delphi 7 has decided that it no longer want to cooperate. I was working on a relatively small project and was all but finished, but as I chose an icon for the exe-file the program threw this error: ...
1
vote
1answer
61 views
Result value logic in Delphi?
I'm coding this function where if a string differs only by one character, returns the distinct characters position, if they're right the same is supposed to return -1 and -10 in the case they differ ...
-1
votes
1answer
97 views
ReadStr() and WriteStr() in Delphi
I have some code that uses ReadStr and WriteStr for what I presume is writing a string to a binary file.
The explanation for WriteStr in the documentation states that it will write raw data in the ...
0
votes
1answer
50 views
delphi7 create component from table fields
I want to create components (Panels) on run-time in Delphi 7 from a table, but only create if the field value is > 0.Example:widht |p1|p2|p3|p4|p5|p6|p7|..|px|1500 | 5 | 5 | 5 | 0 | 0 | 0 | 0 |..|0 | ...
0
votes
1answer
66 views
How to set distinct result values in Delphi function?
I'm coding this function and for the line where I set result := -10 compiler gives me a warning saying such value is never asigned. Is there something wrong about my logic?
function combine (m1, m2 : ...
-1
votes
1answer
36 views
How to highlight changed cells when updating a DBgrid?
Let's say I am showing stock prices, or sports scores, or movie attendance or something.
Periodically, I will refresh the grid by Close() and then Open() of a query linked to its associated ...
-1
votes
0answers
42 views
Incrementing the build number in a batch compile of an XE project
In my Delphi 2006 projects I increment the build number when I'm generating a new build from the command line (dcc32.exe compilation) with the IncBuildNo utility. I'm trying to replicate incrementing ...
2
votes
1answer
41 views
Delphi7Personal EAccessViolation while creating component derived from TImage
I have an assignment to create a game in Delphi and since the board will be the size 7x7 i wanted to do it by deriving my own component from TImage. Due to the fact that I wanted to have position of ...
0
votes
2answers
47 views
Delphi & Absolute database : Delete Query
Why is it that my query does not work ?
Form1.ABSQuery1.Close;
Form1.ABSQuery1.SQL.Clear;
Form1.ABSQuery1.SQL.Text:='DELETE FROM LOG WHERE status = ''YES'' and DATE BETWEEN :d1 and :d2';
...
0
votes
1answer
48 views
How to paint a selected cells in a drawgrid using a button click
How do I paint inside a Delphi drawgrid cells after selecting the cells using mouse and by clicking on a button. Cells to be painted after pressing the button.
0
votes
2answers
60 views
Setting an object's property in another procedure
I have an object that has some properties:
Obj.Big
Obj.Rotate
Obj.Paint
Obj.Lines
etc. They are all boolean type properties.
In my main procedure, I call another procedure:
procedure ...
0
votes
2answers
102 views
DLL call works in Delphi 2010 but AV in Delphi XE2
I'm trying to call a DLL built with Delphi 7 (before unicode support) using Delphi XE2.
The code is like this:
function Foo(Param1: PChar; Var Param2: DWORD; Var Param3: DWORD): PChar; stdcall; ...
1
vote
2answers
105 views
Is CompareMem suitable for comparing two arrays for equality?
I need to compare if all items of a given array are the same.
For now, I have the following code:
Type
TD = array [0..1] of TDateTime;
var A: TD;
B: TD;
begin
A[0] := Date-1; A[1] := ...
0
votes
2answers
70 views
How to assign foreign key in a master detail relationship using generator in Delphi XE2?
As an example:
I have two tables in firebird:
TB_CUSTOMER
IDCUSTOMER (autoincrement generator)
CUSTOMERNAME
TB_PHONE
IDPHONE
IDCUSTOMER (foreing key from TB_CUSTOMER)
PHONE
I have a ...
-1
votes
0answers
97 views
Why does the debugger show different results for a rounding expression than the program calculated?
I'm very confused about my application's behavior in this function.
After the Result := RoundTo(curVal, -dec) evaluation, the value of Result according to the local-variables debug window is not equal ...
0
votes
1answer
49 views
PngComponents for Delphi 7
I need this PngComponents pack for D7. I need only TPngImageList.
If i try to compile this pack (pas files) in D7, i get many errors:
unknown compiler directive {$Pointermath}
invalid operation for ...
-2
votes
1answer
58 views
How do you make conversions tables?
I need to make some ebcdic_1141/cp1252 convertions.
Here are the tables I found :
...
0
votes
1answer
34 views
sqlite3 delete on cascade with Delphi XE Zeosdb Tztable
I have two tables Client , Commande
The DDL in sqlite3 is the following ,
CREATE TABLE Client (
id_client INT NOT NULL,
nom varchar(10),
PRIMARY KEY ( id_client ...
-1
votes
0answers
43 views
How to detect Network driver removed programmatically In delphi 7?
I was looking for some Windows API that will give me notification for any change in the Local Area Connection Properties.I tried Searching for the Entry in the Registry which it modifies after we ...
0
votes
0answers
17 views
Delphi 5 QuickReports: Ensure one detail and its subdetail bands are never split accross pages?
I want this:
detail 1
subdetail 1
subdetail 2
subdetail 3
<--- page break --->
detail 2
subdetail 1
subdetail 2
subdetail 3
but never this:
detail 1
subdetail 1
<--- ...
0
votes
0answers
41 views
Non-breaking breakpoint constantly triggers OnMouseMove event in Delphi XE3
I was trying to use a non-breaking breakpoint to log some values in a control's OnMouseMove event handler. I noticed that the breakpoint was constantly being hit while the mouse was idle (not moving) ...
1
vote
1answer
80 views
Try to split strings without success
i have made this piece of code while trying to get split one string into 2 pieces which i would save onto database later. For now i have succeed with geting 3 word string like " word word number" into ...
4
votes
1answer
139 views
JSON parser in PascalScript
Is there a JSON parser written in standard, procedural Pascal? There are a couple of object-oriented implementations in Delphi, but I need to do the parsing in PascalScript, and unfortunately classes ...
1
vote
1answer
37 views
SpTBX: can I use Panels' DockedWidth/FloatingWidth
Moving from TBX to SpTBX. I used in the past TTbxDockablePanel which has such props:
DockedWidth
DockedHeight
FloatingWidth
FloatingHeight
I can't find such properties in SpTBX panels, so how ...
3
votes
3answers
142 views
Delphi - tools/technics for tracking propagated access violation
Even if it sounds strange, I believe that everybody encountered this kind of issue when working on big applications with lots of custom components. An AV is generated somewhere but the application is ...
0
votes
0answers
67 views
Using TWebBrowser for parsing HTML data
I got an app that uses TWebBrowser component, and i have link to one site, that opens it using TWebBrowser using "for" statement, by example like this:
adoquery.sql.text = "select top 10 id from ...
5
votes
0answers
87 views
Is there a way to set the Keyboard Type when entering a value in a StringGrid?
I would like to create an iOS App, with a fixed StringGrid. Every cell of this thing should only accept numeric values. For this I want to set the KeyboardType to vktNumberPad...but so far have not ...
-4
votes
1answer
110 views
Browse for folder dialog stuck in last folder [closed]
After installing Rad Studio XE3 Trial my browse for folder dialogs are 'stuck' in the last folder used. This is happening in all compilers from 2006 and up but Delphi 7 and below do not exhibit this ...
3
votes
1answer
52 views
PostgreSQL 9.X bytea representation in 'hex' or 'escape' for thumbnail images
My application (developed in Delphi and ZEOS components) uses PostgreSQL 8.4 and stores some thumbnail images into a bytea column.
I want to migrate to PostgreSQL 9.2 and have restored the dump and ...
2
votes
1answer
110 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 : ...
-3
votes
0answers
65 views
Delphi drawgrid fix column values [closed]
I am trying to write a booking system: I want to insert short date to fix headers 0 and room numbers to fix columns 0. I am using Delphi xe3 drawgrid component
A sample picture:
1
vote
3answers
128 views
Delphi Array Initializations
This is somewhat a continuation of my previous question, found here. Essentially, I'm trying to test the dll/functions with a basic example, but I'm getting 'E2010 - incompatible types: ...
-3
votes
1answer
69 views
Input Dialog with mask using RegExp [closed]
How it's possible create in Delphi Xe a input dialog with regex mask. for example restrict only 3 numbers.
2
votes
1answer
82 views
Reading/writing dynamic arrays of objects to a file - Delphi
Im trying to write some code which will read/write a dynamic array of objects to a file. The objects represent the structure of the java source code. I need to be able to scan the whole source code ...
-3
votes
0answers
68 views
how to generate HTML Code in delphi application for email embedded picture natively (i.e. no indy using) [closed]
I need to generate HTML Body for email application with embedded image in it..
How to generate HTML Code in delphi application for email embedded picture natively (i.e. no indy using).
0
votes
1answer
91 views
Delphi lightweight Database components/ engine [closed]
Im working on an application for a friend and I want to store some information.
Its not huge, its like a dvd collection he wants to keep track of.
What im looking for is a way to store his data. Like ...
0
votes
4answers
98 views
What regular expression can I use to extract the value of a query-string parameter?
This is my string: href="/store/apps/details?id=SomeString&.
How can I extract the SomeString with PerlRegEx? I'm using Delphi XE2.
3
votes
1answer
47 views
Delphi 7 ADO, DBGrid combobox field
I have these tables in my MySQL database:
I want to display the employee table and job.jobName in DBGrid and allow user to edit it (using DBNavigator maybe).
So I created an ADOQuery with SELECT ...
-3
votes
1answer
104 views
How do I toggle an activity with a single button?
I have a problem with a start and stop button.
When I click start, it can't stop exact we exit: How can I can make it like this:
Before
After
My code:
procedure TForm1.Button1Click(Sender: ...
-1
votes
1answer
90 views
“Undeclared identifier” in Delphi 7 - what must I do?
procedure TForm1.Button2Click(Sender: TObject);
begin
showmassage('Create by rihsano');
end;
Delphi reports the following error:
[Error] Unit1.pas(38): Undeclared identifier: 'showmassage'
One ...
-2
votes
1answer
72 views
Problems with Delphi 2009 + HidD_GetSerialNumberString
I am having problems getting HidD_GetSerialNumberString to simply give me the serialnumber of some devices.
On some devices it works fine, but on others all I get is "ÿÿÿ" as the serialnumber.
I am ...
-1
votes
1answer
93 views
Why does the CSG Operation raise “Stack Overflow” in GLScene
In some cases, the method "TFGBSPNode.PerformSplit" trapped into an "dead-loop" causes "stack overflow" exception.
I have traced the source code and found that the method ...
2
votes
2answers
55 views
Accessing IXMLDOMDocument2 via TXMLDocument?
I have some working code using Delphi's TXMLDocument class, and using the TransformNode method to perform XSLT translation.
But, I need to enable XSLT Javascript functions (<msxml:script> tags) ...
2
votes
3answers
147 views
How do I write Web Application for a Delphi Server?
I have a Delphi Application with a Client-Server Architecture. Now, I want to write a Web-application for this Delphi Client-Server Application.
To write a this Web App I don't want to use Delphi - I ...

