Search Results

0
votes

How to explain events to beginners?

In Delphi - I have added/defined and implemented additional event handlers and because I grew up in the 60's I called these "Happenings". I think the word describes it better than …
7
votes

Where to start OOP in Delphi mainly focusing on database development?

Hmmm. Big question, this stuff is not in the manuals:( Would really require a book to answer it. However if you are starting a new largish? project then my advice list, after 10 years doing this wi …
0
votes

Can I avoid handling a file twice if I need the number of lines and I need to append to the file?

A bit late to the party but for the file existing problem why not use (Psuedocode): If FileExists(C:\NEWMASTERLIST\FULLLIST.txt') then begin Open file etc Calc numlines etc end …