Monthly Archives: January 2006

comments (2)

Often, I find myself commenting out chuncks of code. Either because I decide to go on a different route with the solution, or because the specs for the program change (do they change? YES). When revisiting the code after a while, I sometimes don’t seem to be able to come up with the why of […]

Read more

Comments

If you want to temporarily disable your code you normally comment this piece out. I generally use either — (line comment) or /* */ (block comment). The code below: SELECT * FROM emp WHERE 1=1 AND empno < 1000 becomes either: --SELECT * -- FROM emp -- WHERE 1=1 -- AND empno < 1000 or: […]

Read more

Pronunciation

Eddie Awad has a couple of nice posts on his blog on how to pronounce the terms used in PL/SQL. The first one is Char or Car? The second one is see-quel wins, but what about the others? On the second one he has a poll on pronunciation of a couple of terms. The nicest […]

Read more

Regular Expressions in 10G

Today, I came across an article on how to Develop and Test Regular Expressions with a Unit Testing Package. I know just a little bit about Regular Expressions but I know that they are really powerful. I have used some (simple) form of them to find (and replace) stuff in Delphi files, mostly the .dfm […]

Read more

Records in Delphi

In Delphi, you still have the old pascal method of creating records to hold data and then create pointers to get to this data. The problem with this approach is that it is not really object oriented. You have to cleanup the records behind the pointers. There is no way Delphi can do this for […]

Read more

ANT 2.0 (2)

I just got the demo for the mouse hook I downloaded from about.com to work. This might be a good thing to use to implement the autohide functionality of the new ANT application. Nice to play with Delphi and Windows messaging again… 😉 And I found another link with explanation on how to hook the […]

Read more

ANT 2.0

First there was YALM (Yet Another Launcher Manager). Then I rewrote that application into ANT (ANother Toolbar). Now I came up with the idea to build ANT 2.0 and then blog some about it. I don’t know when I have the time to do this (it will be a really slow project), but I will […]

Read more