Tagged Questions

9
votes
12answers
3k views

Is Delphi “with” keyword a bad practice?

I been reading bad things about the with keyword in delphi but, in my opinion, if you don't over use it. It can make your code look simple. I often put all my TClientDataSets and TFields in ...
9
votes
16answers
1k views

What's wrong with Delphi's “with”

I've heard many programmers, particularly Delphi programmers scorn the use of 'with'. I thought it made programs run faster (only one reference to parent object) and that it was easier to read the ...
5
votes
5answers
320 views

Any Resources/Tutorials on using nested “With” statements in Delphi?

I am trying to come to grips with using with statements in delphi properly. Overall it seems fairly simple to do simple things with but I am interested in finding some good code examples and/or ...
4
votes
1answer
183 views

How does name resolution work in compound “with” statements?

Which instance of Ready gets tested in the following code, and why? interface type TObject1 = class ... public property Ready: boolean read FReady write FReady; end; TObject2 = class ...
4
votes
2answers
322 views

Delphi: Since when are interface references no longer released at the end of a with-block?

I recently stumbled over a problem caused by some very old code I wrote which was obviously assuming that interface references used in a with statement would be released as soon as the with-block is ...
4
votes
5answers
293 views

Delphi 2009 Handling of With

Anybody know what is different about Delphi 2009's handling of "with"? I fixed a problem yesterday just by deconstructing "with" to full references, as in "with Datamodule, Dataset, MainForm". ...
2
votes
5answers
1k views

Reference object instance created using “with” in Delphi

is there a way to reference an object instance that is created using the "with" statement? Example: with TAnObject.Create do begin DoSomething(instance); end; Where DoSomething would use the ...