473,394 Members | 1,841 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

what is the difference between attributes and properties in things like fields?

Greetings once more,

I was wondering if someone figured out the difference between attributes and
properties.

I noticed that things like fields have a number of properties, but also
attributes.

For example, right now, I am looking for the rowsource property for a field
in a table. How do I find that?

Thank you

Nicolaas
---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.698 / Virus Database: 455 - Release Date: 02/06/2004
Nov 13 '05 #1
5 3828
The only thing I can think of that would need a RowSource in a table would
be a lookup field defined in the table. While this functionallity exists, I
recommend that you avoid it. It essentially places a combobox into your
table so that when you look at the table, the value you see if from the
lookup field, not the value actually stored in the table. This can get
confusing and cause problems later with wrong data types and such because
you're looking at the wrong thing. Tables are just for storing data, do work
such as lookups on a form. For more of an explanation on this and some other
quick tips, follow the link below.

http://www.mvps.org/access/tencommandments.htm

--
Wayne Morgan
MS Access MVP
"WindAndWaves" <ac****@ngaru.com> wrote in message
news:xG******************@news.xtra.co.nz...
Greetings once more,

I was wondering if someone figured out the difference between attributes and properties.

I noticed that things like fields have a number of properties, but also
attributes.

For example, right now, I am looking for the rowsource property for a field in a table. How do I find that?

Thank you

Nicolaas
---
Please immediately let us know (by phone or return email) if (a) this email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.698 / Virus Database: 455 - Release Date: 02/06/2004

Nov 13 '05 #2
Hi Nicolaas,

If you are perusing Lookup Fields in tables, DON'T! They are an abomination
and should never be used! If you use them they will lead you into trouble.
You only find the troubles as you are enhancing your initial design. Then
you have to go back and take out the Lookup Fields and put in the proper
fields and then you get to chase down all of the code that referred to the
old fields and deal with it ...

At some point overstressing distinctions and definitions leads right back
into Humpty Dumpty speak: "When I use a word it means just what I want it
to mean".

Use your MS Bookshelf dictionary or get out your Cambridge Unabridged,
Merriam Webster or other monster lex and I'm sure you'll find some
definitions almost interchangeable amongst attribute, property and
characteristic. I realize that you're trying hard to grasp everything at
once and resolve all ambiguities forever. Good Luck! Software types
develop their own terminology and jargon. However, we don't always invent
new words, we usually use words already in the language but restrict their
meanings to "what WE mean". :-) Try to absorb the meanings of things as
they are intended and recognize that you are being changed in the process.
Lest we get too proud, it has been pointed out that jargon and buzzwords are
much like bird calls: they serve more to identify members of the species
than to convey useful information.

Hope That Helps

--
-Larry-
--

"WindAndWaves" <ac****@ngaru.com> wrote in message
news:xG******************@news.xtra.co.nz...
Greetings once more,

I was wondering if someone figured out the difference between attributes and properties.

I noticed that things like fields have a number of properties, but also
attributes.

For example, right now, I am looking for the rowsource property for a field in a table. How do I find that?

Thank you

Nicolaas
---
Please immediately let us know (by phone or return email) if (a) this email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.698 / Virus Database: 455 - Release Date: 02/06/2004

Nov 13 '05 #3
Hey guys,

Thank you for the warnings. The reason I actually wanted to find out about
the rowsource is so that I could make sure that they were taken out.

Having said that, I sometimes put a rowsource in at the beginning of
development so that I can quickly edit data in a table. In the end, I will
then take them out before deployment.

I am talking not about 'data' tables here, but about little tables that help
in running the database.

-Nicolaas
Anyway, i will now make 100% sure that they are all out.
---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.700 / Virus Database: 457 - Release Date: 06/06/2004
Nov 13 '05 #4
very funny story about the birds. lol
---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.700 / Virus Database: 457 - Release Date: 06/06/2004
Nov 13 '05 #5
"WindAndWaves" <ac****@ngaru.com> wrote in
news:xG******************@news.xtra.co.nz:
Greetings once more,

I was wondering if someone figured out the difference between attributes
and properties.


Typically attributes are bit values, 0, 1, 2, 4, 8 etc expressed in hex
(base 16); 128 becomes &H80 (8 sixteens and zero ones). They are either
true, 1, or false, 0. They have their own special "arithmetic" using
logical operators for setting them on and off and, by extension, combining
them. For example the hidden file attribute in VBA is 2, while the system
attribute is 4. If a file is both hidden and system then both its two flag
and the four flag are up. We don't however know that its attributes = 6, as
there may be other attributes turned on (flags up). Is the file's readonly
attribute also set? We test with Attributes And 1 (the readonly attribute).
If Attributes And 1 = 1 then the readonly is set, if zero then no. The
attribute names we use are simply constants for 0, 1, 2 etc. For example
vbReadOnly is simple a constant equalling 1.

Properties are likely to be values whose range is coincident with that of
their type. They are generally independent of each other.

--
Lyle
(for e-mail refer to http://ffdba.com/)
Nov 13 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John | last post by:
I'm developing an application for medical use that will be used to capture patient background and visit data. The application will have approximately 50 forms, with an average of about 20 fields...
112
by: Andy | last post by:
Hi All! We are doing new development for SQL Server 2000 and also moving from SQL 7.0 to SQL Server 2000. What are cons and pros for using IDENTITY property as PK in SQL SERVER 2000? Please,...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
4
by: Mike Clair | last post by:
Hey, I'm having an issue with CSS, JS and the DOM. It's gonna drive me batty. I am trying to access the properties of a layer in JS which have been initially set in an external CSS. The problem...
3
by: Johnny | last post by:
Hi, I wonder what is the difference between the built-in function getattr() and the normal call of a function of a class. Here is the details: getattr( object, name) Return the value of...
13
by: Peter Kirk | last post by:
Hi there, can someone tell me what exactly a "property" is in a C# class? As far as I can see it is "two methods" - ie a getter and a setter for an instance variable. What is the difference...
669
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic...
9
by: Brett Romero | last post by:
I'd like to create a class with public properties and functions that I can map into a datatable with corresponding fields. For example: ClassA string Name {get;set;} int Age{get;set;} boolean...
1
by: TomGo | last post by:
Hi All I want to read out the properties of a field by the instance, which is referenced by the corresponding field. I want to read out the attributes. In a class I wrote the following: ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.