Gerry

1,476
reputation
139 views

Registered User

name Gerry
member for 1 year
seen 1 hour ago
website
location NZ
age 46
Delphi programmer with 10+ years experience. Have used Delphi since release of D3. Originally learnt Pascal on a Vax back in 1984.
Dec
17
revised Delphi: Records in Classes
added 316 characters in body
Dec
17
answered Delphi: Records in Classes
Dec
17
comment Delphi: Records in Classes
Which is the same as would happen once someone put a Getter on the class!
Dec
17
comment Delphi: Records in Classes
@Smasher. Then your legacy code would be broken once someone put a getter method on the class. It would compile, but NOT WORK.
Dec
17
comment Delphi: Records in Classes
Ken: What's atrocious about it?
Dec
17
comment Delphi: Records in Classes
There can still be advantages to using records. They are useful in TPersistent.AssignTo. Also, if you have a memory intensive app, tou can used packed records to reduce memory usage (a a performance cost)
Dec
14
answered Why does building with runtime packages make the EXE file smaller?
Dec
7
comment Is there a way to make the “Code Folding” Stay Folded In Delphi 2010
Seconding Gunny's comment. Or try <insert flame war>
Dec
6
awarded  Enlightened
Dec
6
accepted Freeware “Structural Highlighting” for Delphi 2007 IDE
Dec
3
accepted Delphi 2006 translating sql server 2008 express date fields as twidestring…
Dec
2
revised Delphi 2006 translating sql server 2008 express date fields as twidestring…
added 184 characters in body
Nov
30
answered Delphi 2006 translating sql server 2008 express date fields as twidestring…
Nov
30
revised ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
added 128 characters in body
Nov
30
revised ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
added 4 characters in body
Nov
30
answered ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
Nov
26
comment Should I start my new shareware project in C# or Delphi?
So what are object references? An object ref can still be null! Highly subjective - and biased by been written by Sun
Nov
26
comment Is it bad practice to use temporary variables to avoid typing?
If getting $this->CurrentDatabase involves a function call (I don't know any PHP so I can't tell), it should be FASTER to use a temporary variable, as the function is only called once. Nut bear in mind Nakedible's answer.
Nov
24
comment Large dynamic array - slow writing
FastMM definitely works in D6 - I have used it in the past. But Marco's comment still applies.
Nov
12
comment Delphi 2009 causing shell32.dll errors?
What OS is the client using?
Nov
11
comment Delphi: How to use line breaks in a ini file?
@PA: It isn't a bug - it is intended, but often undesirable behaviour. Later versions of Delphi (2006+) added the "StrictDelimiter" property to avoid this.
Nov
10
accepted Access violation when calling external function (C++) from Delphi application
Nov
10
revised Access violation when calling external function (C++) from Delphi application
added 241 characters in body
Nov
10
answered Access violation when calling external function (C++) from Delphi application
Nov
9
awarded  Fanatic
Nov
5
answered Delphi MDI Application Next Window menu item
Nov
4
revised How to pass and return objects to and from a DLL?
added 161 characters in body
Nov
4
answered How to pass and return objects to and from a DLL?
Nov
4
comment How to pass and return objects to and from a DLL?
Look at stackoverflow.com/questions/1596704/…
Nov
4
awarded  Nice Answer
Nov
4
answered Freeware “Structural Highlighting” for Delphi 2007 IDE
Nov
2
comment Looking for a Delphi Gantt chart component
I have used this component in one application. It has a fairly steep learning curve, but is very flexible. The default look for scroll bars etc was a bit dated, but owner draw options allowed using ThemeServices. There seems to be a D2009 version.
Oct
30
answered How to fully justify texts programmatically (Delphi)?
Oct
30
comment Case-insensitive Bob Jenkins Hash?
+1 for Knuth's FULL quote. So often we only get the "premature optimization is the root of all evil" part.
Oct
30
comment Can I Have Unnamed Dynamic Array Types as Var Parameters
Why do you want/need to? This is standard Pascal usage. All you need to do is declare "a" as a: TIntArray. If you are working on legacy code, you need to make changes to it anyway (to add call to SizeArray) I assume that SizeArray is just a sample - otherwise why not call SetLength directly>
Oct
30
comment System Uptime in Delphi 2009
Not much really - depend on what he wants to use it for. I seem to recall someone saying that GetTickCount may miss some millseconds, but I have no evidence of that - in retrospect, I suspect it was nonsense.
Oct
30
answered System Uptime in Delphi 2009
Oct
29
revised delphi textrect with angle and wordwrap and vertically aligned
Added link to help
Oct
29
revised delphi textrect with angle and wordwrap and vertically aligned
added 16 characters in body
Oct
29
comment delphi textrect with angle and wordwrap and vertically aligned
If you are using Delphi 7 or earlier, you will need to use the method mentioned by Nick D
Oct
29
comment delphi textrect with angle and wordwrap and vertically aligned
What version of Delphi? It does in Delphi 2006 (but not in Delphi 7)
Oct
29
answered delphi textrect with angle and wordwrap and vertically aligned
Oct
23
comment need to add a progress bar for when a (blocking) DLL call is busy
More than "very much like" a windows program on Windows - it IS a native Win32 windows program (same as if it had been written in VS C++).
Oct
21
comment How to explicitly pass a program flow into the finally block in C#?
A clarification for C# programmers - in Delphi the code in the finally block will always be executed, even if the code calls "Exit" (equivalent to return). I think Wodzu wants to know if this is the same in C#.
Oct
21
comment Convert UTC string to TDatetime in Delphi
I like the idea of using the XSBuiltIns functions - don't reinvent the wheel.
Oct
19
answered Delphi: Access violation after calling function from external DLL (C++)
Oct
19
comment Can’t use DLL (written in C++) in Delphi: The procedure entry point could not be located
title shouldn't be "string" in Delphi - use packed array[1..512] of char
Oct
16
comment delete char from binary file
It would probably be easier to use a TFileStream than BlockRead/BlockWrite
Oct
14
comment Determine if running as VCL Forms or Service
It is possible (with some conditional code in the dpr) to create a single EXE which acts as both a service and GUI application - not always a good idea, but possible.
Oct
14
comment Actual width of a text/caption in Delphi 7
Bet me too it by 10 secs!