Learn to protect against tuberculosis


dantb.org keyword stats



Most current MSN search phrases:

Pneumonia - symptons and treatment potts disease
tuburculosis picture of positive tb test
TUBURCULOSIS Pictures of chrons disease
Cronic Interstial Lung Disease tuburculosis test
tuberculosis syptoms Picture Positive Tb Test
T spot TB symptons of tb
unbound report symtoms of meningitis
Most current Yahoo search phrases:

Signs and Symtoms of Tubercolosis  

Naming Conventions for Microsoft Access

Software development in Microsoft Access isway we overcome this, is by naming our
relatively simple and almost anyone can do itcontrols based on the control type. For
but if you want to be taken seriously byexample if our field was called fldPostcode
professional database developers then thereand the control we are using for this field
are some mandatory rules that you must followis a text box, then we would name the text
whilst developing your database. One of thebox txtPostcode. Below is a list of prefixes
first aspects professional developers willfor  the forms and report objects.frm - Forms
look at when reviewing your work will be the
naming standards you are using for yourrpt  -  Reports
Microsoft Access Objects. Microsoft Access
allows you to use, what is considered in thelbl  -  Lables
professional database development world, poor
naming standards. For example in your fieldtxt  -  text  boxes
names, you can have spaces however in the
professional world that is a major no no.Onecmd  -  command  buttons
of the reasons we don't use spaces in
Microsoft Access is that when you startlst  -  List  Boxes
creating complex queries and functions that
refer to fields, if you have spaces in thecmb  -  combo  boxes
field names it is possible to put two spaces
into the field name but it only appears thatopt  -  option  buttons
there one space. What this means is that
your query won't work and can sometimes takeole  -  ole  objects
many days to find the mistake. The key issue
is that you must never use spaces in yourchd - Child Objects (Subforms or
field names, database names or any of thesubreports)For a full list of all prefix
seven different object types. There are innames that you should be using in Microsoft
fact two ways that you should be naming yourAccess Development is shown below:Microsoft
fields, database names and so on.NamingAccess  Objectsdb  -  Database
FieldsLet us say for instance you wanted to
create a field to store the Postcodes for thetbl  -  Tables
suburbs your customers live in. We could
write this field in two ways, the first thingqry  -  Queries
you must do for fields is to add the prefix
fld at the start of the field. Then add thefrm  -  Forms
field name as required -fldPostcode or
fldPost_codeEither technique is quiterpt  -  Reports
acceptable. If you were developing a field
for Post Codes, that is codes on posts, thenmcr  -  Macros
the recommended way for writing the field
name would be -fldPostCode or fldPost_CodeYoumdl - ModulesTable Objects -tbl - Core Data
will notice that in the second example theStore
second word is in capitals rather than in
lower case. The use of capital letterstmp  -  For  temporary  Tables
signifies that each word represents a
separate aspect of the field, so in this casebck - Tables that you have backed upForms &
the code in capitals means you are referringReports  Objects  -frm  -  Forms
to codes on posts. The same naming
principles apply to database names, and eachrpt  -  Reports
of the seven Microsoft Access object
types.Naming TablesWhen naming tables, therelbl  -  Lables
are three prefixes that you can use. The
first prefix tbl is used for the core tablestxt  -  text  boxes
you will be storing your good data in. The
tmp prefix is used for tables that will becmd  -  command  buttons
storing temporary data. It is also
recommended that you import your data into alst  -  List  Boxes
temporary table before inserting the data
into your good data tables. We do this forcmb  -  combo  boxes
two core reasons; the first is that testing
your data in a temporary table is much easieropt  -  option  buttons
than doing it on the fly while you are trying
to import your data.The third table prefix Iole  -  ole  objects
recommend being used is bck for backup
tables. The key advantage of using thesechd - Child Objects (Subforms or
prefix's on your tables is that Microsoftsubreports)Report Names -rpt - For General
Access will automatically group them by theReports
prefix, which means you will keep all your
good tables together, your temporary tablescht  -  For  Chart  Reports
together and your backup tables
together.Naming the Seven Access Objectlbl - For Label ReportsVariables -str -
TypesWhen you are working with the sevenstrings
different object types that make up Microsoft
Access, each of the objects has its ownole  -  ole  object  types
prefixes. A list of those prefix names you
should be using for the Access Object Typesint  -  integers
are shown below -db - Databasetbl - Tablesqry
- Queriesfrm - Formsrpt - Reportsmcr -dec  -  decimal
Macrosmdl - ModulesOne of the key reasons we
name our tables and queries with a prefix isdte - datesModule Objects -sub - Subroutines
that when you are working with these two
object types in the query window, Microsoftfn  -  Private  Functions
Access simply lists all tables and queries
together without differentiating them. Bypfn - Public FunctionsUsing the naming
using the tbl and qry prefixes on these twostandards shown above will assure that if you
objects, it always ensures that the tablesdo require assistance from a professional
are shown first and then the queries becausedatabase developer that they will take you
t comes before q.Other objects that need tofar more seriously than before because you
be named include the bound and unboundhave shown a professional understanding on
controls found on forms and reports. Whenhow to name your database object. This will
you create a form or report using the wizardcertainly give you credibility in the eyes of
or AutoForm or AutoReport each of theprofessional database developers.Chris Le Roy
controls are named the same as the fieldis a professional software developer and has
names. Now whilst this is by default, it isbeen developing software applications for
not really an acceptable way of namingover 20 years in Visual Basic, VB .net, VBA,
controls. One of the key reasons we don'tC++, Microsoft SQL Server, Transact SQL, ASP,
want to do this is that sometimes when we arePHP and Microsoft Access. He is the Managing
working with forms and reports we want toDirector of One-on-One Personal Computer
refer to the control rather than the field.Training that trains over 2000 people per
By having the field names the same as theyear across Australia and Overseas from basic
object names, you can often have a situationMicrosoft Office functionality to advanced
where the wrong control is referred to. TheDatabase Design and VBA.



1 A B C 52 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107