0
votes
0answers
2 views
generate DBF files
How to generate DBF files with delphi?
0
votes
1answer
38 views
open process as different user
hi all
I want to get the privileges of a selected user on a local machine. I know how to get them from the current user, so my problem is how to open a process as as a different user.
I'm currently …
0
votes
1answer
28 views
Enabling XP visual themes / visual styles kills performance
While trying to modernize the appearance of an old C++Builder / Delphi application, I enabled visual themes (visual styles) and was surprised at just how much of a performance hit themes added. For …
0
votes
3answers
31 views
Setting up background images for forms in Delphi
How can I make my program load an image and make it the background for a form?
I need the exact code for it. I've looked all over the internet and the only things I've found are various tweaks and …
0
votes
2answers
59 views
How can I enable my 32-bit Delphi application to use 4gb of memory on 64-bit windows (via Wow64.exe)?
According to this MSDN page:
WOW64 enables 32-bit applications to
take advantage of the 64-bit kernel.
Therefore, 32-bit applications can use
a larger number of kernel handles and
window …
5
votes
7answers
111 views
Pre-sorting analysis algorithm?
It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the …
3
votes
3answers
74 views
Does Visual Studio 2008 have something like Delphi’s structure view?
I use Delphi 2007 in my daily work and have now start to look at VS2008 and C#.
One confusing thing compared to Delphi is the design editor in VS.
Here is the Form Designer in Delphi
As you see on …
0
votes
2answers
30 views
Delphi + Transparent forms with parent.
I want to create a form, but just use it to keep an image. (Like a splash form)
To create a form like these I use these lines:
"SetWindowLong(Handle, GWL_EXSTYLE, LexStyle or WS_EX_LAYERED);
…
0
votes
2answers
27 views
How to create calculated field in Access Database using SQL during runtime in Delphi
I am creating a table during runtime. This is how I do it:
AdoCommand1.Connection:=AdoConnection1;
cs:='CREATE TABLE '+edname.text+' (' +
'ID Integer IDENTITY(1,1) NOT NULL UNIQUE PRIMARY KEY,' +
…
0
votes
0answers
13 views
Delphi ADOQuery result concatenation using ClientDataSet
I have written an application that allows a user to define a query, run it using a TADOQuery component, and save the report to their PC as an XML document (SaveAsFile passing in pfXML as the Format …
4
votes
3answers
99 views
Library to parse SQL statements.
I would like to be able to parse an arbitrary SQL SELECT statement and retrieve the various component parts (columns, relations, JOIN conditions, WHERE conditions, ORDER BY columns), ideally using …
0
votes
2answers
35 views
update TListView item
hi all
I want to update values in a TListView. I tryed this
...
lvProcess : TListView;
liEdit : TlistItem;
...
liEdit:=lvProcess.Items.Item[1];
liEdit.Caption:='11';
…
0
votes
1answer
28 views
Windows user profile seems to be blocking certificate auth on webservice calls
I have a Delphi app that's running on Windows Server 2003. The app communicates with a webservice on another server that is protected by a Cisco ACE XML Gateway requiring a certificate for client …
1
vote
1answer
21 views
Setting page margins in Rave Reports
I am using Rave Report to print my reports in Delphi. Is there a way i can set the page margins(left, right, top and bottom) for printing my reports? please help me....
4
votes
4answers
80 views
How to check if string is a valid DateTime Format string in Delphi
I want user to be able to manually enter format of the datetime fields in the program. I have Tedit component. For example if user enters 'HH:nn', then this is a valid datetime format string and all …
