0
votes
2answers
56 views
Bypass keyboard,mouse input and let SendInput pass
I'm making user definable key macros to a program. (Those macros are limited to that program.)
I'm using TApplicationEvents to record key messages. And then use SendInput to play them back. But I …
4
votes
4answers
183 views
Delphi 2010 inlining useless?!
What is the go with inlining functions or procedures in Delphi (specifically v2010 here, but I had the same issue with Turbo Delphi)?
There is some discalimer in the help about it may not always …
0
votes
2answers
39 views
recursive file search thread
i have a routine that searches files:
procedure RecSearch(const sPathName, sFile : String; const subDir : Boolean);
var
sr : TSearchRec;
sPath : String;
begin
Application.ProcessMessages;
…
0
votes
4answers
195 views
ASMX in Delphi Studio
Hi guys,
I recently bought Bob's book Delphi XML, SOAP & Web Services
in page 85 of this book the (Delphi 2006 8used) comes with several New Item Categories such as
C# Projects
C++ Builder …
0
votes
2answers
26 views
Restore horizontal scroll position in TDBGrid
I wrote a simple method to sort column in TDBGrid.
If Option.RowSelect set to False everything works fine, but if RowSelect gets True the horizontal position scroll doesn't restore after sort column.
…
0
votes
0answers
29 views
PAC script with Indy in Delphi 2010
How do I handle a proxy PAC script file used by IE with Indy in Delphi 2010.
Earlier we used a 3:d party component to get the pac-script from IE, but the component is obsolete. I'm a newbie to the …
0
votes
3answers
81 views
How to share variables among libraries in Delphi 2009?
Hi dudes, I'm trying to divide my monolithic, Delphi-Win32 app in libraries, so I get some questions around how to share global variables and object among my libraries using Delphi 2009. For example, …
0
votes
1answer
30 views
Setting TTabControl color after XPManifest in Delphi
I have tabcontrol component on my form. After I put XPManifest, its color became white, I want to change it, but couldn't find color property. And I don't want to remove XPManifest as well. Is there …
1
vote
10answers
370 views
Should I start my new shareware project in C# or Delphi? [closed]
I want my code to be as secure as possible.
1
vote
4answers
191 views
What do you use as WPF alternative for Win32 Delphi?
If you are sticking with Delphi for Win32, what do you use as GUI framework, in order to approach the versatility and performance of the WPF framework on .NET?
There are some alternatives out there, …
0
votes
3answers
62 views
[Delphi] extract text from word or pdf based on format (font name and size)
Hello,
I need to parse large text (about 1000 pages of word or pdf document)and place some of the text inside this document into database fields
I found that the only thing I can distinguish the …
11
votes
32answers
5k views
Will you use Delphi Prism
CodeGear announces that their Next .Net product which is known as Delphi Prism Will be the RemObjects's Oxygene.
Oxygene has many nice features that not found in Delphi or C#, and I think it will …
8
votes
3answers
2k views
WebKit support for Delphi
Is there a way to embed the WebKit engine into a Delphi application?
3
votes
1answer
132 views
Delphi and Microsoft ATL security issue
My impression is that standard Delphi uses the Win32 API.
Recently Microsoft has been communicating a problem regarding ATL that requires application developers to rebuild ATL-using applications …
6
votes
3answers
145 views
Is it better to use TThread’s “Synchronize” or use Window Messages for IPC between main and child thread?
I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (up to 16 concurrent) that need to update a grid control on my main …
