4,046 reputation
1620
bio website
location
age 45
visits member for 7 months
seen 32 mins ago
stats profile views 549

May
5
revised Why doesn't System.Include work when the Set is provided by a property?
deleted 6 characters in body; edited title
May
5
comment Category of a component
All of your components should implement an interface (e.g. IMyOwnComponentInformation) to get some information (e.g. build number, revision) or only just for identification purpose
May
4
comment Indy IMAP - which property to use for identifying new email messages?
MsgID is set by the sending mail server and UID is set by the receiving mail server. So you should use the UID for identification tools.ietf.org/html/rfc3501#section-6.4.8
May
4
comment Delphi - MemoryStream or FileStream
@DavidHeffernan "I am downloading an EXE file from internet ... Is there any difference in the structure of the EXE file when using one or other type?" OP is wondering if TMemoryStream will store the data different than TFileStream would do :o)
May
4
answered Delphi - MemoryStream or FileStream
May
3
awarded  Nice Answer
May
1
comment TDBGrid doesn't update when multiple users are editing it
To refresh a dataset just call the dataset method refresh
May
1
comment TDBGrid doesn't update when multiple users are editing it
This is as designed. If you want to refresh the data, refresh it. Firebird can send notifications if the data has changed, but you have to refresh the data. firebirdsql.org/file/documentation/papers_presentations/…
Apr
18
comment Is it safe to return a cloned XmlNode of a local IXmlDocument in Delphi?
The answer to your question (last sentence) is yes and to your question in title is simply no
Apr
17
comment How can I access a hidden member from a derived class?
@Artik If this is perfect (and to me this is the answer to your question) why did you accept Rob's answer which - as to your comment - did not answer?
Apr
17
answered Run complex SQL scripts from memo (multi lines)
Apr
17
comment RTTI & marshalling in Delphi XE2
@Arioch'The To me this is not a real question and so I can not post a real answer :o)
Apr
17
revised Delphi - Creating MySQL database at runtime
added 32 characters in body
Apr
17
revised Delphi - Creating MySQL database at runtime
added 16 characters in body
Apr
17
revised Delphi - Creating MySQL database at runtime
added 31 characters in body
Apr
17
revised Delphi - Creating MySQL database at runtime
added 31 characters in body
Apr
17
revised Delphi - Creating MySQL database at runtime
added 31 characters in body
Apr
17
answered Delphi - Creating MySQL database at runtime
Apr
16
comment RTTI & marshalling in Delphi XE2
Get the source from trunk code.google.com/p/superobject/source/browse/trunk
Apr
15
comment Delphi Firemonkey: Creating Cube on a 3D viewport at runtime, from a different unit
How did you declare CubeArray? Maybe you miss the starting array index and you have to go from 0 to CubeCount-1