Since the Leszynski naming convention is a special form of
Hungarian notation the same general advantages also apply to the Leszynski convention. The use of distinctive prefixes makes your database self-documenting; when you see
frmSales in VBA code, you will know that it references a form, and when you see
curSales you will know that it is a Currency variable. When selecting a query from a drop-down list, you will know that a query starting with
qmak is a make-table query, while one starting with
quni is a union query. This information will allow you to avoid errors such as using the SetFocus method (a control method) with a field, or trying to open a table. ==Disadvantages==