Ulrich Gerhardt

1,865
Reputation
576 views

Registered User

Name Ulrich Gerhardt
Member for 1 year
Seen yesterday
Website
Location Franconia
Age 39
Dec
1
comment GetStackTrace in Delphi 7?
I just tried it with Firefox and IE7 - I get different pages but both show the answers at the bottom. Re "killing EE": +1 :-)
Nov
27
answered How to use TControl.Align := alCustom ?
Nov
27
comment Saving strings to disk under Delphi 2009
Is it possible to write something like TShortUnicodeString<N: Integer> = record analog to string[N] (I have no D2010 to test it.)
Nov
23
comment Tutorial for Pascal/Delphi for C++-Coders
+1 for Delphi-Praxis.
Nov
23
comment Tutorial for Pascal/Delphi for C++-Coders
FTR: delphi-forum.de
Nov
23
comment How Can I Get the Compile Date and Time in Delphi
We use this one for some months now and it works fine AFAICT.
Nov
20
accepted Delphi/pascal: overloading a constructor with a different prototype
Nov
19
comment How Do I Add A TLabel To The Menu Bar in Delphi?
I use EDA/EN_DIS_ABLE (available at heise.de/software/download/… or delphipraxis.net/topic166020,0,asc,0.html/…) if I'm curious. :-)
Nov
19
comment How Do I Add A TLabel To The Menu Bar in Delphi?
Are you sure that Beyond Compare uses the native menu (TMainMenu). Maybe it's some third party menu (Toolbar2000, DevEx, ...).
Nov
18
comment Delphi/pascal: overloading a constructor with a different prototype
Sorry for having been unclear.
Nov
18
comment Delphi/pascal: overloading a constructor with a different prototype
I just tried - it is before. :-)
Nov
18
revised Delphi/pascal: overloading a constructor with a different prototype
added 499 characters in body
Nov
18
answered Delphi/pascal: overloading a constructor with a different prototype
Nov
18
comment How to get the size of an image in bytes with Delphi?
Isn't this Rob's solution, just less flexible (TBitmap instead of TGraphic) and less safe (no exception safety)?
Nov
18
comment Form is hidden behind other forms when ShowModal is called.
... besides poOwnerFormCenter which therefore seems an unfortunate idea).
Nov
12
accepted How can I troubleshoot design-time packages in Delphi/C++Builder?
Nov
9
answered How can I troubleshoot design-time packages in Delphi/C++Builder?
Nov
7
awarded  Yearling
Nov
5
comment Quick padding of a string in Delphi
@sinibar - pass by ref: Yes, aString should be passed as const. Otherwise there's unnecessary reference count management (however no cloning).
Oct
29
answered Delphi: SetLength() on argument of type “array of TObject”
Oct
25
accepted Delphi text offsets in edits and memos
Oct
22
comment How do I force the linker to include a function I need during debugging?
Of course that would be nice to have. But at least it's a workaround that doesn't burden the release version. (Which GJ's published trick would, BTW. :-))
Oct
22
answered How do I force the linker to include a function I need during debugging?
Oct
22
comment Can Delphi 5 generate a .PDB file that VS can use?
I really don't remember Delphi 5 as bug-ridden. Admittedly the debugging features left some wishes compared to VS.
Oct
22
comment How to wash/validate a string to assign it to a componentname ?
@Rob: Exactly. :-)
Oct
22
comment How to wash/validate a string to assign it to a componentname ?
After thinking about it, I'll correct the implementation (see my edit) and call "MakeValidIdent(APrefix + SomeRandomString)" instead of the current "APrefix + MakeValidIdent(SomeRandomString)". It's a tiny bit more inefficient for my use cases (where APrefix always is a valid identifier) but also fool proof.
Oct
22
revised How to wash/validate a string to assign it to a componentname ?
Implementation corrected as per mghie's comment
Oct
22
comment How to wash/validate a string to assign it to a componentname ?
Thanks, I never noticed that. That's no problem if you use the routine as I do and berocoder could. So I have to decide whether to rename it or adjust the implementation.
Oct
22
answered How to wash/validate a string to assign it to a componentname ?
Oct
20
comment How do I make my Delphi 5 app display password “blobs”?
Params.Style := Params.Style or *ES_PASSWORD*; Please!
Oct
20
answered How to draw on the entire area of a resized TImage in Delphi?
Oct
16
answered Matching windows system colors: light on dark
Oct
16
comment Matching windows system colors: light on dark
I'd like to make this comment my accepted answer. Instead, I'll accept its "parent answer", even if that is not the solution to my problem.
Oct
13
comment Matching background color for COLOR_GRAYTEXT
Sounds reasonable. :-)
Oct
13
asked Matching background color for COLOR_GRAYTEXT
Oct
13
comment Matching windows system colors: light on dark
Thanks for the suggestion. I just tried all the reversed combinations, but unfortunately they are either too colorful (title bar, highlight) or light on black which is too dark for my taste. :-)
Oct
13
asked Matching windows system colors: light on dark
Oct
13
revised Where can I find a movable toolbar demo?
added 188 characters in body
Oct
12
answered Where can I find a movable toolbar demo?
Sep
21
revised How can I make my form resize more smoothly?
Swapped links
Sep
21
answered How can I make my form resize more smoothly?
Sep
18
revised Faster DirectoryExists function?
edited tags
Sep
18
answered How to create a dynamic array of single as a property in a class
Sep
17
answered How to display rich text in a TDBGrid?
Sep
16
comment getwindowtext not retrieving text
Your code says "Form1" to me. And this is the title (= text) of the current active window.
Sep
15
comment How should I free an array of objects in a Delphi 7 destructor?
Finalize won't Free referenced objects or Dispose New'ed pointers etc.
Sep
15
awarded  
Sep
14
comment Why do I get “type has no typeinfo” error with an enum type
Maybe you can alleviate the pain of doing this by using a subrange type: type TMyEnumWithDummy = ( meNOTUSED, meFirstValue, meSecondValue, meThirdValue ); TMyEnum = Succ(meNOTUSED)..High(TMyEnumWithDummy);
Sep
14
revised How do I make the scroll bars show up on a TScrollBox?
added 591 characters in body
Sep
13
answered How do I make the scroll bars show up on a TScrollBox?