0
votes
3answers
35 views
Delphi: constant class instance
If I define a record, I can define an instance of that record as a constant record e.g.
Tunit = record
_name: string;
_scale: real;
end;
const metre: Tunit =
(_name: 'metre';
_scale: 1.0;
…
0
votes
2answers
77 views
Anyone upgraded Turbopower’s Onguard to Delphi-2010
Titel says it all: has anyone been able to upgrade The Onguard component suite from Turbopower (which is opensource) to Delphi-2010 ?
I am still trying to make sure all my trusted components (which I …
1
vote
3answers
55 views
Profiler able to start profiling when executing some procedure
I browsed and read a lot of questions/answers about profilers on StackOverflow, but still have one more question I haven't found an answer to.
I have been using TurboPowers Memory Sleuth for years …
0
votes
1answer
41 views
How to convert WMI DateTime to standard DateTime?
I'm trying to read the install date from WMI (Win32_OperatingSystem.InstallDate). The return value looks like this: 20091020221246.000000+180. How can I get a valid Date?
1
vote
0answers
50 views
delphi and mysql DB help
hello all
I want to create an application for my friends ,Its like a slam book
I want like this
in nameditbox when i entered name it has to fetch data from database and have to display in …
4
votes
2answers
131 views
Using Delphi to take advantage of GPGPU technology?
GPGPU is the principle of using the parallel processors on video cards for massive increases in performance.
Does anyone have any ideas about using GPGPU in Delphi, using either OpenCL or CUDA? CUDA …
4
votes
2answers
159 views
Delphi newbie stuck on really simple if statement… seriously
Hi everybody.
I'm defecting from C# to Delphi 2009, I'm liking it so far very much.
I wrote a binary search procedure, which works fine. I added a simple if-else statement at the end of my proc and …
0
votes
3answers
96 views
Why Does Delphi’s Math.Payment Function Return A Negative Number
I'm trying to calculate the monthly payment for the following scenario:
$5,000 is borrowed for 3 years at 8.00% compounded monthly with $1,000 due at the end of the term.
/*
From Math.pas
function …
4
votes
8answers
263 views
How to protect the source of a delphi app?
How could I protect my delphi app from being decompiled?
I know there are some software like themida that I think will do that but then the protected exe trigger the antivirus.
0
votes
5answers
115 views
Looking for a public domain English dictionary to include in a app [closed]
Possible Duplicate:
Dictionary / List of words
Hi
I am looking for a public domain English dictionary that I can include in my Delphi application
From an Api point of view all I need is …
1
vote
3answers
140 views
FastShareMem still necessary in Delphi-2010?
Hi,
Up until now I am developing using Delphi 7. In order to pass f.e. TStringLists to my DLL's I use the FastShareMem unit as first unit in every program and dll I develop.
If I should migrate to …
0
votes
2answers
45 views
Troubleshooting SQL Server connection issues.
I'm relatively inexperienced at SQL Server, but am trying to troubleshoot some of the (non-SQL Server-related) logic and UI issues in a Delphi app someone else wrote which uses it. Currently trying to …
-8
votes
3answers
138 views
how can i post automatically in forums [closed]
hello all
I want to create an application ,which can post automatically to forums
example
www.warez-bb.org
myedit1.text:=is subject
myedit2.text:=is description
my memo1.text:= message
…
0
votes
2answers
56 views
How to provide cid email attachments to embedded browser
I'm using embedded web browser from Bsalsa to write an email client in Delphi
I have a problem with cid embedded attachments such as:
<IMG src="cid:5D4219C71EAE43B1864AE9CB27C224A8@somehost">
…
2
votes
5answers
109 views
Compare Delphi Exception Handlers
How would you compare MadExcept to EurekaLog as an Exception handler for your Delphi application?
Why would you pick one over the other?
Are there any other exception handlers for Delphi that should …
