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 more efficiently.

learn more… | top users | synonyms

3
votes
1answer
34 views

Make Vista+ file dialogs work before main form is created

In a little app I want to show a open file dialog before the main form is created. I do it like this in the *.dpr: begin Application.Initialize; Init; // ...
2
votes
2answers
39 views

Interfaces polymorphism in Delphi

I have two interfaces one deriving from antoher: type ISomeInterface = interface ['{5A46CC3C-353A-495A-BA89-48646C4E5A75}'] end; ISomeInterfaceChild = interface(ISomeInterface) ...
1
vote
1answer
31 views

IIS Handler, Delphi to C# conversion

I am currently converting a Delphi application to C# for an ISS Handler.Delphi uses these memory classes (TMemoryStream, TStreamAdapter) to pass to methods, insert string values, and return and ...
0
votes
1answer
45 views

Segmentation fault when calling a Delphi function from Fortran

I have a Fortran 90 program which repeatedly calls on a Delphi function. The function gets called a large number of times but eventually the program quits with a segmentation fault. I have an ...
0
votes
0answers
36 views

how to capture Post and Get in Webform and store in Strings

I have an application that gets inside a webform one html page with 2 fields, what I know and how I can capture and store strings in the values ​​of the methods Post when you click the send button
4
votes
1answer
68 views

when you terminate() a Thread (class TThread), does it exit every child of this thread?

I have a code in Delphi which does the following: procedure THilo.Execute; // (which is the thread) begin inherited; FreeOnTerminate := True; while not Terminated do begin (...) ...
1
vote
1answer
40 views

How can the forms of my application use different Vcl Styles?

How can the forms of my application uses different Vcl Styles? For example : form1 -> ruby form2 -> carbon
1
vote
1answer
35 views

ChartFX 4.0 components in Delphi XE4: inconsistent design time license issue

We have a huge app that uses ChartFX 4.0 a lot and we're migrating from Delphi6 to XE4. The programmer mainly responsible so far has basically created a new package for the ChartFX components and has ...
0
votes
0answers
30 views

Rave report not following orientation with Delphi 7

I have a calendar report that is constructed in code using an TLabelShell from Rave Reports. For certain clients it refuses to obey the orientation set for is as such: if Portrait then begin ...
-3
votes
0answers
60 views

Delphi need source for AdbWinApi.dll and AdbWinUsbApi.dll [closed]

i am beginer,and want to use this 2 dll for my app,i looking for suorce of this files? can anyone help me. BR.
1
vote
0answers
47 views

When filtering a Delphi TDataSet is there a difference between the NULL and BLANK keywords?

When using the Filter property of TDataSet I enter the following filters: 'State <> ''CA'' or State = BLANK' 'State <> ''CA'' or State = NULL' Does BLANK mean empty but not null or are ...
0
votes
0answers
38 views

Is it possible to change the Response Code when user authorization fails in a datasnap server?

Is it possible to change the HTTP Response Code in my DataSnap (Delphi XE3) server when user authorization fails? Currently it's returning HTTP/1.1 500 Internal Server Error, which can happen in many ...
0
votes
1answer
64 views

Dynamic file type icon

I want to register a file type in windows and make a program with Delphi to draw the icon of file according to its contents (something like a custom icon format). How can I do this?
1
vote
1answer
70 views

How do I make two controls each occupy half their parent's area?

I have an application that has a sidebar attached to it (TPanel --> alRight), that uses a CategoryPanel (alClient) inside of it. This CategoryPanel has exactly 2 Groups which are non aligned. I would ...
0
votes
2answers
57 views

How do i detect new columns added to a list-view control?

I am writing a component that descends from TListView, and I want to know when the developer using this component adds a column so I can react. How can I detect when a new column is added? Is there an ...
-1
votes
0answers
43 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 ...
0
votes
0answers
54 views

Injecting interface implementation into script

How one is supposed to "inject interface implementation" into script? Say I define an interface type in TdwsUnit, like IFoo = interface procedure Bar; end; now how can I implement an function ...
3
votes
2answers
70 views

How to check if the system master volume is mute or unmute?

I'm using this code to mute/unmute system master volume: const APPCOMMAND_VOLUME_MUTE = $80000; WM_APPCOMMAND = $319; procedure TForm1.Button1Click(Sender: TObject); begin // toggle ...
0
votes
0answers
50 views

Indy10 TCP and asynchronous data exchange

Good morning to all.I am building a Delphi TCP server/client application using Indy 10.0.52,with TIdTCPClient and TIdTCPServer. I have problem with receiving asynchronous responses from server. Here's ...
0
votes
0answers
55 views

TSpeedButton stop sending the click event [closed]

I'm working in a huge Delphi project, and I have a problem: one of the TSpeedButtons stop working between compilations. If I delete the button and the event handler and I create it again, it works ...
-1
votes
1answer
118 views

Converting Delphi code to c# [closed]

I am in the process of converting a ISS handler application from Delphi to C#. I have never coded in Delphi so this is a small challenge. I need help understanding what some code does. Here it is ...
0
votes
0answers
84 views

How to parse RTSP request and response headers?

I'm in the middle of building an RTSP server, and am creating two request/response objects named TRTSPRequest and TRTSPResponse similar to TWebRequest and TWebResponse but specific to RTSP. I have a ...
0
votes
1answer
84 views

Can db-aware and non-aware components be used simultaneously to insert/update databases?

I have a typical [Delphi] set-up for connecting to an external database--a Connection component hooked onto a Table, a DataSetProvider, ClientDataSet, and DataSource. I can successfully insert a new ...
1
vote
3answers
137 views

Add Time to a TDateTime

I would like to add seconds to a TDateTime variable, so that the result is the top of the minute. For example, if it's 08:30:25, I want change the TDateTime variable to store 08:31:00. I see that ...
2
votes
1answer
43 views

TADOQuery: 'EDatabaseError type mismatch for field 'MyField', expecting: String actual: FixedWideChar'

I have 3 different databases (development, homolog and prod), each of them in one of the following Oracle versions: 11g and 10g. I'm using a TADOQuery to query for some data in only one of those ...
-4
votes
0answers
66 views

Download a file using TIdHTTP [closed]

I have a URL in the format of http://my-site.com/go.php?id=123456789. If i browse to it in a browser, I download a file. How would I automate this using TidHTTP?
-2
votes
1answer
123 views

Which component pack should I use instead of default VCL pack: TMS, LMD or JEDI? [closed]

Which is the best collection for me to use in my projects? I have all the three installed in my Delphi XE3 and I know that if I use them mixed up, my executable will grow very much on space and memory ...
2
votes
2answers
76 views

TClientSocket and Threads

Okay guys, I'm using TClientSocket class and Threads to work simultaneously with a list of hosts. It's all good but I started note that after sometime, all threads get stucked into a ReceiveBuf ...
1
vote
1answer
97 views

How to run a .JAR file with Delphi [closed]

Me and a friend have being trying to do this for a while and regardless of how hard we searched and tried; we just couldn't do it. But what we are trying to do is Run/Execute a .jar file from delphi ...
0
votes
1answer
47 views

Delphi - idFTP get current Directory

I like to get the current Dir I am into on my FTP Server. I know that I can switch the Dir with idFtp1.ChangeDir('MyDirectory); but how can i check if I am alread into this Dir?
0
votes
1answer
67 views

How to load Listview items into image object and update it in OnTimer event in Delphi

I'm a noob in Delphi V7. I'm creating a SlideShow, i need the images loaded in a ListView be sent to a Picture object using the OnTimer event of the Timer object. See the code I'm using: ...
2
votes
1answer
69 views

Delphi minimize all MDI children

I have trouble in minimizing all my MDIChildren and came across MDIChild to minimize not activated properly My code to minimize all my children is: procedure TMainWindow.MinimizeAll1Click(Sender: ...
1
vote
0answers
61 views

How to get folder path of SaveDialog when that dialog appers for first time, before the file is saved?

When SaveDialog pops up first time and when FileName is '', and initial directory is not set, how to get directory path?
1
vote
1answer
65 views

Access Denied when copying DLL files for particular client

We have a small utility which updates our software on client computers by simply copying/replacing certain files. The files consist of both EXE's and DLL's. All works fine, except for one client of ...
0
votes
2answers
79 views

Delphi XE2: Loading .EXE icon into MenuItem at run-time

At run-time, I want to load and show the main icon of a specific .EXE file in a specific MenuItem. When this is not possible for this specific .EXE file (e.g. due to access restrictions or similar), ...
0
votes
1answer
80 views

Building and evaluating expressions using Delphi RTTI

I am faced with a task of allowing the user to define the expressions using the compiled classes with RTTI enabled. Let me put it in a simple way. TAnimal = class(TPersistent) private fWeight : ...
0
votes
1answer
59 views

Delphi - Format Filename from FTP

okay, I've the following problem: I like to get a list of all .txt files on my FTP Server in a special folder. I solved this already. if IdFTP1.DirectoryListing.Count>0 then for i := 2 ...
1
vote
1answer
56 views

How do I allow dragging files for specific control(s) in Delphi

I would like to accept files as soon as someone drops a file to a specific control (e.g. TMemo). I started with this example: http://delphi.about.com/od/windowsshellapi/a/accept-filedrop.htm and ...
-1
votes
0answers
96 views

Delphi, redirecting StdOut with WinExecAndWait32

In Delphi7, I use WinExecAndWait32 to call a program:cmd.exe, redirecting the output: cmd.exe /C mickey.pl >D:\TEMP\dosLog.txt This command create an empty file dosLog.txt . But if I run it ...
0
votes
1answer
107 views

creating delphi timers dynamically at runtime (performance, cpu consuming)

In my current project I have a structure like this: Main Thread (GUI): ->Parser Thread ->Healer Thread ->Scripts Thread the problem is that the Healer & Scripts Threads have to create ...
-3
votes
0answers
93 views

What settings recommended for working in an unstable network with DataSnap? [closed]

When I am using DataSnap in unstable networks, "Socket Error" exception occured. What settings are recommended for working in an unstable network with DataSnap?
0
votes
1answer
46 views

Scaling the TRotLayer

I'm working on graphics32. And I'm using the given component from its examples, the TRotLayer. Basing on the example (Examples/Layers/RotLayer_Ex), the created RotLayer only scales together with the ...
0
votes
0answers
74 views

Delphi (XE3) UPS Communication

I can't seem to find anything about how to talk to a UPS over USB connection from a Delphi application. The UPS software is at best useless in sending a SMS to inform me of power failures. I have a ...
1
vote
2answers
80 views

export delphi stringgrid to excel

I'm trying to export data from a stringgrid in delphi 7 to microsoft excel. I have been using this code to do it: objExcel := TExcelApplication.Create(nil); objExcel.Visible[LOCALE_USER_DEFAULT] ...
1
vote
0answers
54 views

Combining rotating and scaling functions of Graphics32 components

Good day. I wanted to incorporate two functions to manipulate a bitmap image. I wanted to rotate and scale the same image. What I did was to use one of the given examples, the TRotLayer. My plan was ...
4
votes
2answers
104 views

How do we cheat Windows Help System from Delphi Form to execute our own form?

In the TForm we have the HelpFile, HelpType and HelpKeyword properties. We set the file and keyword. when we press F1 the magic comes. Everybody knows it. But what if we want to use a data base with ...
0
votes
0answers
48 views

TStylebook iOS Delphi XE4

Does anyone know if the TStylebook component will allow a user to change the look of the listview... (Not just an item title and detail). It works on a windows app which is fine, but i would like to ...
1
vote
1answer
60 views

Inaccessible field error

Sometimes when I write a Class and then test it, I get the error in the picture at the bottom, and when I try to debug it the editor shows me that the attributes I want to access are "inaccessible ...
0
votes
0answers
81 views

Delphi MathML Parser

How to parse MathML and convert formulas to real code. Similarly how MathSharp does it. Are there any opensource parsers out there for MathML?
3
votes
1answer
59 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 ...

1 2 3 4 5 416