Uwe Raabe
|
Registered User
|
|
Dec 10 |
comment |
D2007: Installed IDE Extensions - now one important component doesn’t work You can register at www.delphipraxis.net and contact him via private mail. His user name is "jbg". |
|
Dec 10 |
comment |
fix broken german characters ...assuming that the file can be handled as a text file. |
|
Dec 10 |
comment |
fix broken german characters What kind of file are the texts stored in? ASCII, Unicode, ...? |
|
Dec 9 |
comment |
fix broken german characters If it is of any interest, the correct text reads: "Wählen Sie eine Fachgröße" |
|
Dec 8 |
comment |
How to programmatically disable window animation under Vista Aero? A few lines below - look at my answer to my own question. |
|
Dec 5 |
comment |
How to programmatically disable window animation under Vista Aero? That is indeed a possibility. Althoug, I wouldn't do it in my case as it would increase the time used a lot, just because of the shear number od the screenshots to take. But at least it is an option. |
|
Dec 5 |
comment |
How to programmatically disable window animation under Vista Aero? I didn't say it "is" a property - I said it is "as easy as setting" a property. |
|
Nov 22 |
comment |
Can I create an object of the same type as itself? @mjustin: That is a complete different case, because Clazz is declared as TClass. So only TObject.Create is executed. This would be the same as I would write result := ClassType.Create, but that will give a type mismatch. The typecast guarantees that in my example TMyClass.Create will be executed. |
|
Nov 22 |
comment |
Can I create an object of the same type as itself? @gabr: Only when the derived class has its own create. In that case the base Create has to be virtual and the derived must override it. The use of ClassType only guarantees that the correct class is instantiated - the user has to take care that the correct Create is called. |
|
Nov 21 |
answered | Can I create an object of the same type as itself? |
|
Nov 16 |
revised |
how to show hex code char ? added reference to HexToBin |
|
Nov 16 |
accepted | how to show hex code char ? |
|
Nov 16 |
answered | how to show hex code char ? |
|
Nov 14 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? Thanks to all for your suggestions. |
|
Nov 14 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? ICS and Indy seem to be quite comparable. Can you elaborate WHY you never liked Indy? |
|
Nov 14 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? Given the download page Synapse has still only experimental D2009 support. This doesn't give much confidence IMHO. |
|
Nov 13 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? Will have a look. |
|
Nov 13 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? The SSL is an interesting idea. |
|
Nov 13 |
comment |
What are the ways of interchanging string data between clients and a server in Delphi? I already have a look at those. Only wanted to gather suggestions... |
|
Nov 13 |
asked | What are the ways of interchanging string data between clients and a server in Delphi? |
|
Nov 12 |
accepted | How to find the actual width of grid component with scrollbar in Delphi |
|
Nov 12 |
revised |
How to find the actual width of grid component with scrollbar in Delphi pointed out method CalcDrawInfo |
|
Nov 11 |
answered | How to find the actual width of grid component with scrollbar in Delphi |
|
Nov 8 |
comment |
How to debug a DLL called from Java in Delphi? To debug a DLL you have to specify a host application (as the message suggests). You can do that via the menu: "Start" - "Parameter". |
|
Nov 6 |
comment |
Why are TGeneric<Base> and TGeneric<Descendant> incompatible types? As others already explained WHY you get this error, try making MakeAllThreadsActive a method of TThreadBaseList<T: TThreadBase> to workaround it. |
|
Nov 2 |
comment |
Delphi: how to use TObjectList<T>? 3. SetLength(List, Length(List)); actually does nothing |
|
Nov 2 |
comment |
Delphi: how to use TObjectList<T>? 1. TClass is a very bad choice for a class name 2. List is not declared as var in FillChar |
|
Nov 2 |
accepted | Overloading array insertion? |
|
Nov 1 |
accepted | How can I efficiently retrieve the number of files in a directory? |
|
Oct 30 |
answered | How can I efficiently retrieve the number of files in a directory? |
|
Oct 30 |
comment |
converting TForm win32 app to Win7 gadget (delphi) The translation is just rubbish, but I like the "dolphin" ;) |
|
Oct 29 |
comment |
Masking an image with another image and also define 'better"... |
|
Oct 29 |
comment |
Masking an image with another image You asked for masking, you got an example for masking. I guess many people (including me) will rate it a good example. You should consider recalibrating your expectations! |
|
Oct 29 |
answered | Loading BDE BPL from another directory |
|
Oct 29 |
comment |
Delphi: generics and TObjectList Shouldn't the declaration be TMyClass<List1, List2>? And what is FillArray(Content) supposed to do regarding FList1 and FList2? How is Content declared? |
|
Oct 29 |
answered | How to move to the next control inside a frame? |
|
Oct 28 |
answered | project load faster |
|
Oct 27 |
answered | converting TForm win32 app to Win7 gadget (delphi) |
|
Oct 26 |
comment |
Resuming suspended thread in Delphi 2010? He mentioned D2010 explicitly... |
|
Oct 26 |
answered | Overloading array insertion? |
|
Oct 26 |
answered | Resuming suspended thread in Delphi 2010? |
|
Oct 24 |
comment |
How to create a case in-sensitive TEqualityComparer for TDictionary? You are right! I mixed up the original implementation and an example. |
|
Oct 23 |
answered | How to create a case in-sensitive TEqualityComparer for TDictionary? |
|
Oct 12 |
answered | Implementing a ‘tag panel’ control in Delphi? |
|
Oct 11 |
awarded | ● Yearling |
|
Oct 4 |
comment |
Need a name=value class similar to TStringList but the value part is variant Thats why I recommend a TObject to wrap the Variant... |
|
Oct 3 |
answered | Need a name=value class similar to TStringList but the value part is variant |
|
Oct 3 |
comment |
Why is my TStringList not sorted? 1. Which Delphi version are you using? (IOW: Is the cast of Items[I] to PWideChar valid?) 2. Why do you use StrIComp and not simply CompareText? 3. Is the result of calling Sort OK? |
|
Sep 26 |
comment |
How to recreate a function retrieving the highest element of an object? I have not the slightest idea what you want to achieve. Can you give an example? |
|
Sep 20 |
comment |
How convert null-terminated string to an AnsiString ? In other words: declaring var Data: PAnsiChar seems to be a decent solution. |
