473,407 Members | 2,306 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,407 software developers and data experts.

Are Access Forms Polymorphic?

In response to different users or situations (data context) I
transform the appearance and characteristics of Access Forms through
code. This seems to fit in with the idea of polymorphism. Do people
consider Access Forms to be Polymorphic?

James A. Fortune
Nov 12 '05 #1
7 1353
James Fortune wrote:
In response to different users or situations (data context) I
transform the appearance and characteristics of Access Forms through
code. This seems to fit in with the idea of polymorphism. Do people
consider Access Forms to be Polymorphic?

James A. Fortune


They can morph yes, but then so can just about anything that has a
programming language behind it.

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 12 '05 #2

"James Fortune" wrote
In response to different users or
situations (data context) I
transform the appearance and
characteristics of Access Forms
through code. This seems to fit in
with the idea of polymorphism. Do
people consider Access Forms to
be Polymorphic?


Hmm. From your description, perhaps "Polychromatic" would be a better
description. However, somehow I don't think that is what is meant by
"polymorphism".

Larry Linson
Microsoft Access MVP
Nov 12 '05 #3
"Larry Linson" <bo*****@localhost.not> wrote in news:IdFjc.91913$L31.20613
@nwrddc01.gnilink.net:
Hmm. From your description, perhaps "Polychromatic" would be a better
description. However, somehow I don't think that is what is meant by
"polymorphism".


Polymorphism means Muchly Dead. In the Access world the term refers to DAO!

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)
Nov 12 '05 #4
"Lyle Fairfield" wrote
Hmm. From your description, perhaps
"Polychromatic" would be a better
description. However, somehow I don't
think that is what is meant by
"polymorphism".


Polymorphism means Muchly Dead. In the
Access world the term refers to DAO!


Ah, and sad that would be, if true, for anyone wantin' to use Jet to store a
little data.
Nov 12 '05 #5
"In object-oriented programming, the term is used to describe a variable
that may refer to objects whose class is not known at compile time and which
respond at run time according to the actual class of the object to which
they refer. " (http://wombat.doc.ic.ac.uk/foldoc/fo...gi?polymorphic)

Variables of type Access.Form are polymorphic: They may refer to any form
class, and respond at run-time according the actual class of the object to
which they refer. Variables of type Object are even more polymorphic: they
can refer to any object class.

The word polymorphic is derived from the idea 'many structures'. An Access
form can change structures: it may be in Form or Datasheet mode, so it is
polymorphic (bimorphic???) in a general sense. But since it is an Object,
not a Variable or Function, it would not, in it self, mean that Access or
VBA 'supported polymorphism'.

Changing the appearance and characteristics of an object is not the same as
changing the structure, so it would not generally be called polymorphism. In
fantasy terms, Shape-changing or death is morphing: changing the appearance
and characteristics is just Glamour.

(david)

"James Fortune" <ja******@oakland.edu> wrote in message
news:a6**************************@posting.google.c om...
In response to different users or situations (data context) I
transform the appearance and characteristics of Access Forms through
code. This seems to fit in with the idea of polymorphism. Do people
consider Access Forms to be Polymorphic?

James A. Fortune

Nov 12 '05 #6
On Wed, 28 Apr 2004 14:02:42 +1000, "david epsom dot com dot au"
<david@epsomdotcomdotau> wrote:

You call an Access form "bi" ! You want a piece of me?

-Tom.
"In object-oriented programming, the term is used to describe a variable
that may refer to objects whose class is not known at compile time and which
respond at run time according to the actual class of the object to which
they refer. " (http://wombat.doc.ic.ac.uk/foldoc/fo...gi?polymorphic)

Variables of type Access.Form are polymorphic: They may refer to any form
class, and respond at run-time according the actual class of the object to
which they refer. Variables of type Object are even more polymorphic: they
can refer to any object class.

The word polymorphic is derived from the idea 'many structures'. An Access
form can change structures: it may be in Form or Datasheet mode, so it is
polymorphic (bimorphic???) in a general sense. But since it is an Object,
not a Variable or Function, it would not, in it self, mean that Access or
VBA 'supported polymorphism'.

Changing the appearance and characteristics of an object is not the same as
changing the structure, so it would not generally be called polymorphism. In
fantasy terms, Shape-changing or death is morphing: changing the appearance
and characteristics is just Glamour.

(david)

"James Fortune" <ja******@oakland.edu> wrote in message
news:a6**************************@posting.google. com...
In response to different users or situations (data context) I
transform the appearance and characteristics of Access Forms through
code. This seems to fit in with the idea of polymorphism. Do people
consider Access Forms to be Polymorphic?

James A. Fortune


Nov 12 '05 #7
Tom van Stiphout wrote:
On Wed, 28 Apr 2004 14:02:42 +1000, "david epsom dot com dot au"
<david@epsomdotcomdotau> wrote:

You call an Access form "bi" ! You want a piece of me?


Oi, this Dowe Egbert's coffee is expensive, stop trying to make me lose
it on my keyboard :-)

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 12 '05 #8

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

Similar topics

4
by: Maurice Termeer | last post by:
Hi, suppose i've got this: class a { public: int n; }; class b : public a { public: };
3
by: Mario | last post by:
Hello, I couldn't find a solution to the following problem (tried google and dejanews), maybe I'm using the wrong keywords? Is there a way to open a file (a linux fifo pipe actually) in...
20
by: verec | last post by:
One problem I've come accross in designing a specific version of auto_ptr is that I have to disntiguish between "polymorphic" arguments and "plain" ones, because the template has to, internally,...
1
by: verec | last post by:
Last week I asked here how I could detect that a T was polymorphic, and received very thoughtful and useful replies that I used straight away. Thanks to all who answered. This week, it turns...
7
by: Mr. Ed | last post by:
I have a base class which has about 150 derived classes. Most of the derived classes are very similar, and many don't change the base class at all. All the derived classes have a unique factory...
7
by: James Fortune | last post by:
In response to different users or situations (data context) I transform the appearance and characteristics of Access Forms through code. This seems to fit in with the idea of polymorphism. Do...
5
by: Laban | last post by:
Hi, I am new to C# & .NET. I have a class A which contains a protected member M that I would like to access. If I derive my own class B from A, I can access M from within the class, and also...
12
by: Bob | last post by:
Hi, 'Shadowed' properties are not polymorphic. (See thread 'Inheritance and late binding') They should be. Problem: Base class has read only property 'X'. Derived class must have read / write...
13
by: dragoncoder | last post by:
Consider the following code #include <iostream> class Base { public: virtual void say() { std::cout << "Base" << std::endl; } }; class Derived: public base {
7
by: Arindam | last post by:
#include <cstdio> struct Test { void bar() { foo(); } private: virtual void foo() { printf("Test\n"); }
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.