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.
0
votes
2answers
36 views
How can I paint the whole form on a bitmap?
I want to paint the whole form including its caption bar and frame on a TBitmap object.
GetFormImage is cool, but it has two problems:
It doesn't also paint window frame.
It doesn't work when the ...
1
vote
2answers
103 views
Why is this resource directive showing in the list of available forms?
I just stumbled on something very peculiar. Refer to this screenshot:
Why is it showing $R *.res in the list of available forms? This project only has two forms and one additional unit, and here's ...
1
vote
2answers
26 views
How to overlap TImage over TChromium component
I'm having a little bit of a headache here since I can't really realize what's going on. So I have this TChromium element set as aligned to alClient. Now, since my borderStyle is bsNone (fullscreen ...
5
votes
1answer
349 views
Can I execute a Javascript function inside Spidermonkey and get the return value?
I'm just getting into using Delphi with Spidermonkey. Previously I would load a web page into a TWebBrowser component and interact with the Javascript code in the loaded web page. This was messy ...
0
votes
0answers
37 views
Draw a geometric shape
I am trying to draw/display a geometric shape on a Delphi form given a list lines and arcs at a specific X and Y (Cartesian).
Example:
-Line X0Y0 to X10Y0
-Line X10Y0 to X10Y10
-Line X10Y10 to ...
4
votes
3answers
2k views
Delphi: load BASS DLL and play MP3
I want to load a bass dll manually from somewhere and then play a mp3 file. How to do that? Delphi XE2.
My attempt doesn't work:
type
QWORD = Int64;
HSTREAM = LongWord;
type
TBASS_ChannelPlay ...
0
votes
1answer
105 views
Get name Drive Hardware
hello someone could help me how to get
the name of the drive / hardware / / 'C: \' 'D: \' .......
example
NameDrive function (const sDrive: string): string;
begin
result: = GetDriveName (sDrive);
...
0
votes
1answer
31 views
Delphi xe3 vcl to firemonkey array issue
When converting from VCL to Firemonkey in Delphi, I have the following issue:
In VCL I have the following array:
Tcarray=array[1..$04000000] of Tcoordinate; - This works fine.
However, declaring the ...
0
votes
2answers
50 views
How to set onChange Event on comboBox at runtime using a procedure inside another procedure?
I have a dynamic code which It create a comboBox into a StringGrid Cell and this combo is created at runtime and I should set onChange Event for it.
I'm using this code bellow, but this code raise a ...
0
votes
1answer
19 views
How to pass custom parameter in TChromium
I'm interested if there's any way possible for a custom parameter to be sent with every request in TCHromium (DCEF3, with Delphi XE3). Like the "Send a ‘Do Not Track’ request with your browsing ...
1
vote
1answer
315 views
download a page into memory using chromium embedded
I have an application with DCEF (Chromium Embedded).
During a browser session I want to download a specific page into memory, without displaying it in Chromium (the page to download is an xml file ...
1
vote
3answers
181 views
Chromium Embedded Framework favicon
How to get favicon website with Chromium Embedded Framework? I could look at the source code and get the url of the icon, but some sites, like Facebook, do not use a standard procedure to add a ...
0
votes
0answers
54 views
Simulate Mouse dragging in Delphi
I have a Delphi Form and on it an TWebbroser with a google map. I want to simulate a Mouse Drag. Left klick, move mouse to another position, release mouse. It should drag the Map from left to right.
I ...
17
votes
4answers
16k views
Delphi: StringList Delimiter is always a space character even if Delimiter is set
I am having trouble with the delimiter in the TStringList Class. Take a look:
var
s: string;
sl: TStringList;
begin
sl := TStringList.Create;
s := 'Users^foo bar^bar foo^foobar^barfoo';
...
7
votes
3answers
418 views
How can I compress and encrypt a large file without using external DLLs or runtimes?
I am looking for a component or other technique to compress and encrypt multiple large files (files which exceed 4gb in size, and thus will not fit in the memory available to a win32 process) into a ...
0
votes
2answers
355 views
ADOQuery closes after constructor
I am using TADOQuery in Delphi 7.
In the constructor, I call ADOQuery.open.
Why is the ADOQuery closed when another function is called from outside the form?
constructor TClass1.Create(AOwner: ...
109
votes
2answers
3k views
How to create “No Activate” form in Firemonkey
In XCode by adding these methods to your NSView subclass can prevent the window from becoming active when clicking on it:
- (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent {
return ...
1
vote
3answers
175 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 ...
4
votes
2answers
90 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 ...
1
vote
1answer
58 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 ...
2
votes
3answers
191 views
How to executing string as procedure
i made button component in runtime and i want every button clicked there executing unique procedure.
for example
exec('showmessage('+quotedstr('hello word')+');');
How to executing string as ...
4
votes
1answer
90 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; // ...
0
votes
1answer
71 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?
3
votes
2answers
126 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)
...
2
votes
1answer
78 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 ...
1
vote
2answers
1k views
capture a text selected with the mouse
i'm trying to make a program that when i press a hotkey it concatenate a certain text to a selected text from a window. for example: i have the text "capture a text selected with the mouse", i select ...
2
votes
0answers
111 views
Unidac 5.0 performance degradation
We migrated from UniDAC 4.1 to 5.0 (simply rebuilded or app with new version) and catch huge degradation in our datapump routines.
Running pgfouine catch many queries like:
SELECT current_database() ...
1
vote
1answer
50 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 ...
5
votes
1answer
100 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
(...)
...
0
votes
0answers
50 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
1
vote
1answer
60 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
98 views
Delphi - How to make a diagram?
i've been with this problem for some time.. I want to make a diagram, made on runtime with the data that user enters in the other forms etc etc.
My first and actual option, was making cycles and then ...
0
votes
0answers
65 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
1answer
82 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 : ...
-3
votes
0answers
67 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.
0
votes
0answers
35 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
...
2
votes
1answer
45 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 ...
2
votes
2answers
78 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
67 views
Capture a window inside my form
I want to capture a window inside my form, how can I do that? I remember seeing a code that did this. It worked with the window handle. It behaves kind of like WinRAR's extraction window:
0
votes
1answer
87 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 ...
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 ...
1
vote
0answers
54 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 ...
3
votes
1answer
62 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
vote
1answer
75 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 ...
4
votes
5answers
878 views
Default parameter value for a TSomething in Delphi
I'd like to know if this is possible in Delphi (or if there's a clean way around it):
type
TSomething = record
X, Y : Integer;
end;
GetSomething( x, y ) -> Returns record with those values.
...
0
votes
0answers
89 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
2answers
59 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 ...
0
votes
4answers
80 views
PInvoke & Delphi
How can i use this dll function in c#? I tried the following but i get error.
"External component has thrown an exception."
First time i am doing this PInvoke stuff with C# and Delphi.
function ...
1
vote
1answer
358 views
Control+Click freeze in Delphi XE
I've just reinstalled a new machine and a new Delphi XE on it, Delphi XE's control+click IDE feature (to navigate to the declaration of whatever you control+click on) is freezing, on the previous ...
3
votes
1answer
35 views
How to find variable calling TdwsGlobal.onReadVar/OnWriteVar event
I am dynamically creating variables within a DWSUnit as follows:
v := dwsUnit.Variables.Add('c', 'float'); // etc
v.OnWriteVar := writeVar;
v.OnReadVar := readVar;
All variables point to the same ...




