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

Properties for a custom class (not a collection)

Hi,

I know this has been covered here and in the .public groups, but it
seems like it's been a while, especially around here, so I just thought
I'd ask again to see if anyone has figured out a new angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different types,
I'd like to be able to reference them via the standard VBA syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using the
Item/IEnumerator trick, but seems to me that kind of squashes the
usefulness of properties in the first place.

Thanks in advance.

Nov 13 '05 #1
24 5397
Since Access 2000 one can put properties into a Standard Module.
One can reference them as ModuleName.PropertyName

example (in a standard module called PseudoClass)

Dim mInput As Double

Public Property Let InputNumber(ByVal vInput As Double)
mInput = vInput
End Property

Public Property Get TwelfthRoot() As Double
TwelfthRoot = mInput ^ (1 / 12)
End Property

---------------------
somewhere else

PseudoClass.InputNumber = 29
MsgBox PseudoClass.TwelfthRoot
'Shows
'---------------------------
'Microsoft Office Access
'---------------------------
'1.32393450111241
'---------------------------
'OK
'---------------------------

That being said, one of the great values of Classes is that multiple
instances can be created. TTBOMK only one instance of a Standard module
can exist at one time.

As well, these properties seem to operate no differently than Subs and
Functions, (well maybe a bit slower).

Nov 13 '05 #2
Thanks, but that's not what I'm asking. To use your example, I want to
be able to do this.

MsgBox PseudoClass.Properties("TwelfthRoot")

So that I could potentially say

Dim strTest as string
strTest="ThirteenthRoot"
MsgBox PseudoClass.Properties(strTest)

That's a silly example, but if for example you want to return a bunch
of different properties with a single piece of code, you begin to see
how Class.Property is a limitation.

Nov 13 '05 #3
The following MSDN article shows how to make the Item property the default
property of a collection. It requires using Procedure Attributes, normally
set in Visual Studio 6.

http://msdn.microsoft.com/library/de...seofbricks.asp

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.
"downwitch" <do*******@gmail.com> wrote in message
news:11*********************@g49g2000cwa.googlegro ups.com...
Hi,

I know this has been covered here and in the .public groups, but it
seems like it's been a while, especially around here, so I just thought
I'd ask again to see if anyone has figured out a new angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different types,
I'd like to be able to reference them via the standard VBA syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using the
Item/IEnumerator trick, but seems to me that kind of squashes the
usefulness of properties in the first place.

Thanks in advance.
Nov 13 '05 #4
Bri

lylefair wrote:
Since Access 2000 one can put properties into a Standard Module.
One can reference them as ModuleName.PropertyName


I was curious, so I have verified that this works in AC97 as well.

--
Bri

Nov 13 '05 #5
While I appreciate the attempts to help, please take a moment to read
the subject line and the first post before so doing.

I am intimately familiar with constructing classes and collections. I
am trying to find a workaround to the fact that VBA will let you build,
set, let, get, etc. a property, but does not expose the properties as a
native collection through which one can loop as one does through any
other native collection, such as a form's properties, or yes, as one
does through a collection object. I don't hold out much hope, but I
figured it was worth dashing the little bit I had for good, and this
would be the place to do it.

Nov 13 '05 #6
I misread your post. Me Bad. Sorry!

Nov 13 '05 #7
Not a problem. All in a day's work!

lylefair wrote:
I misread your post. Me Bad. Sorry!


Nov 13 '05 #8
"downwitch" <do*******@gmail.com> wrote in
news:11**********************@g44g2000cwa.googlegr oups.com:
That's a silly example, but if for example you want to return a
bunch of different properties with a single piece of code, you
begin to see how Class.Property is a limitation.


What you're asking for is a collection that you can walk to get the
properties.

There is no way to do this in Access class modules. THe only way to
implement it is either with a custom collection or an array stored
in class module, with an interface for allowing you to enumerate its
values. I don't believe an array can be a public member, but you
should be able to create a public property of type array.

I've only wanted to walk the properties collection of a class module
internally, never externally, so I've only implemented it with an
array.

But once you're at that point, you have to ask yourself:

1. will you allocate a variable for each property, then double enter
it into an array?

OR

2. will you use the array for storing all the properties, and then
have the property LET/GETs operate directly on the array, and
completely ignore internal variables.

I don't know if the latter slows things down.

The former is easy enough, and that was how I implemented it, but I
was adding functionality to a class that was already in list, so I
needed backward compatibility.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #9
"downwitch" <do*******@gmail.com> wrote in
news:11*********************@o13g2000cwo.googlegro ups.com:
I am intimately familiar with constructing classes and
collections. I am trying to find a workaround to the fact that
VBA will let you build, set, let, get, etc. a property, but does
not expose the properties as a native collection through which one
can loop as one does through any other native collection, such as
a form's properties, or yes, as one does through a collection
object. I don't hold out much hope, but I figured it was worth
dashing the little bit I had for good, and this would be the place
to do it.


I posted in response to Lyle and explained one approach I've used.

It involves creating either your own internal custom collection or
an array to store the properties, then exposing that externally in
some fashion.

Having done it before, I immediately grasped the question -- you
want to be able to walk the properties collection of your class.

I use a class for storing the criteria for query-by-form interfaces,
and when writing the SQL, being able to walk a collection in order
to write the WHERE string would have been highly desirable. I
implemented an internal array, so I avoided the problems associated
with making the contents of an array in a class module public.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #10
On 21 Jul 2005 06:27:08 -0700, "downwitch" <do*******@gmail.com> wrote:
Hi,

I know this has been covered here and in the .public groups, but it
seems like it's been a while, especially around here, so I just thought
I'd ask again to see if anyone has figured out a new angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different types,
I'd like to be able to reference them via the standard VBA syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using the
Item/IEnumerator trick, but seems to me that kind of squashes the
usefulness of properties in the first place.

Thanks in advance.

Hi
Is this problem special to custom classes?
I don't know how to do this for the Application object, for example.

If you were in VB you could examine the input file for the linker and see what code
is actually produced. You can also generate a map file if you paste
SetEnv "LINK", "/MAP"
into the immediate window.See
http://www.constantthought.com/yabbs...y;threadid=240
Debugging tip: Getting the name of the current and calling function at runtime
Nov 13 '05 #11
I guess the thread shows this is a difficult problem.
Would you consider using an Access form (as a class) with textbox
controls for your "properties"
You could open the form with
Dim f as Form_FormName
Set f as New Form_FormName
The form's open and close event procedures would give you the
equivalent of the class's Initialize and Terminate Procedures.
You might have to set the form's visible property to false in it's open
event procedure.
You form visible, I think it does not matter.
You could access your Properties as
f.Controls("Name").Value
I THINK ... haven't got time to test this. I played with the notion
several years ago, as a Class with a visual show of what's going on ...
like a meter.
Of course, one would have to close the form or set the instance to
nothing when its work was done.

A post about this (1998) was

The form is tiny and has no recordsource and no controls, images or
whatever.
It does have a module. The module has four properties, viz. Application
(private), Copies, Document, and Status (which prints the document and
returns the status).
The first reference to the form is in code, something like
form_frmPrint.Copies = 5
whereupon the form open event creates an instance of Word.
Now the form slumbers, invisible.
I can let and get its public properties at will from anywhere. (The
properties are private actually, and I access them through Property Let
and
Set procedures.)
As far as I know, as long as I don't close the form, the word instance
remains on the alert ready to do the printing.
When the application closes, the form closes, running the close event
procedure that quits and releases the Word app.

Question: Is performance taking any significant hit by keeping this
form
open (but invisible), over and above what it might take keeping a
non-form
class instance open?

And for the Why? sayers ... the form is always in scope ... and the
closing
of it and therefore the quitting and release of Word are implicit in
the
closing of the database. In pertinent error routines, I'll close it as
well.

Nov 13 '05 #12
rkc
downwitch wrote:
Hi,

I know this has been covered here and in the .public groups, but it
seems like it's been a while, especially around here, so I just thought
I'd ask again to see if anyone has figured out a new angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different types,
I'd like to be able to reference them via the standard VBA syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using the
Item/IEnumerator trick, but seems to me that kind of squashes the
usefulness of properties in the first place.


I think the following is a basic approach to what you are after.

<clsProperties>
Option Compare Database
Option Explicit

Private m_properties As VBA.Collection

Public Property Get properties(key As String) As String
properties = m_properties.item(key)
End Property

Public Property Let properties(key As String, value As String)
m_properties.Add value, key
End Property

Private Sub Class_Initialize()
Set m_properties = New VBA.Collection
End Sub

Private Sub Class_Terminate()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCollection()
Dim pc As clsPropetyCollection
Set pc = New clsPropetyCollection
pc.properties("Horse") = "Mustang"
MsgBox pc.properties("Horse")
Set pc = Nothing
End Sub
</test>

Nov 13 '05 #13
rkc wrote:
I think the following is a basic approach to what you are after.

<clsProperties>


<snip>

Yes, this is the idea, but it's still more wheel reinvention than I'm
after (of course ;)). The trick to a catch-all properties collection
is that what DFW is talking about still poses a problem. Normally when
you set variables and hold properties in a class, you've got a cogent
"object" that organizes your code. The hierarchy can be quite rigid,
which I've always found very useful--I use a full class hierarchy that
emulates some table data when the structure is very complex, because it
makes code manipulations easy to make, and virtually self-documenting.

Using collection-type classes and flat "single-object" classes as in

classFoot parent of classToes parent of classToe

makes things very nice and pretty, and while I suppose you could set a
generic objParent in your clsProperties collection, and then add that
"collection" to any other single-object class, but at that point you
have to *always* use

classToe.Properties("NailPolishColor") = "hot pink"

and you lose the self-documenting thing of storing strNailPolishColor
as a visible "member" of the class. Property Let/Set and Get are
strict, and that's very useful, I think, one of the things that makes
classes so powerful.

It'a shame that MS didn't take the (obvious, to me anyway) extra step
of exposing the set of properties one invents as a public collection,
since after all they *behave* like other similar exposed collections.
An instance of the above example that calls

MyFoot.Toes("BigToe")

is so easy to read and hard to miscode it's almost magical, and it's
not such a leap from there to see

MyFoot.Toes("BigToe")(strPropertyIWantRightNow)

_with the same class setup_ as a logical step. I would think it has to
be the same logical engine, but I'm only speculating.

Using a hidden form could work, I suppose, but I suspect at that point
the whole thing would run much faster using temporary tables, at which
point you're out of VBA and fake OOP anyway, so it's more like
abandoning custom classes than making them work.

I'm still up for any ideas. Worth pointing out that the
default-item-of-collection method of exporting a collection, pasting
some standard text into it, and reimporting it--which I first learned
from the developer's handbook a few years back--is totally undocumented
and works like a charm. Might there be other workarounds out there for
those of you who know pure VB classes better than I?

Nov 13 '05 #14
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:q0*******************@twister.nyroc.rr.com:
downwitch wrote:
Hi,

I know this has been covered here and in the .public groups, but
it seems like it's been a while, especially around here, so I
just thought I'd ask again to see if anyone has figured out a new
angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different
types, I'd like to be able to reference them via the standard VBA
syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using
the Item/IEnumerator trick, but seems to me that kind of squashes
the usefulness of properties in the first place.


I think the following is a basic approach to what you are after.

<clsProperties>
Option Compare Database
Option Explicit

Private m_properties As VBA.Collection

Public Property Get properties(key As String) As String
properties = m_properties.item(key)
End Property

Public Property Let properties(key As String, value As String)
m_properties.Add value, key
End Property

Private Sub Class_Initialize()
Set m_properties = New VBA.Collection
End Sub

Private Sub Class_Terminate()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCollection()
Dim pc As clsPropetyCollection
Set pc = New clsPropetyCollection
pc.properties("Horse") = "Mustang"
MsgBox pc.properties("Horse")
Set pc = Nothing
End Sub
</test>


That still doesn't get you a collection that you can walk through to
pull out all the properties (or a specific subset of them).

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #15
rkc
David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:q0*******************@twister.nyroc.rr.com:

downwitch wrote:
Hi,

I know this has been covered here and in the .public groups, but
it seems like it's been a while, especially around here, so I
just thought I'd ask again to see if anyone has figured out a new
angle.

If I have a class MyClass--not a collection container but a
single-level class--that has a bunch of properties of different
types, I'd like to be able to reference them via the standard VBA
syntax of

MyClass.Properties("MyProperty")

or

MyClass.Item("MyProperty")

so that I could use variables instead of having to say

MyClass.MyProperty

to get and let.

Of course, I could create a whole collection myself to loop using
the Item/IEnumerator trick, but seems to me that kind of squashes
the usefulness of properties in the first place.


I think the following is a basic approach to what you are after.

<clsProperties>
Option Compare Database
Option Explicit

Private m_properties As VBA.Collection

Public Property Get properties(key As String) As String
properties = m_properties.item(key)
End Property

Public Property Let properties(key As String, value As String)
m_properties.Add value, key
End Property

Private Sub Class_Initialize()
Set m_properties = New VBA.Collection
End Sub

Private Sub Class_Terminate()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCollection()
Dim pc As clsPropetyCollection
Set pc = New clsPropetyCollection
pc.properties("Horse") = "Mustang"
MsgBox pc.properties("Horse")
Set pc = Nothing
End Sub
</test>

That still doesn't get you a collection that you can walk through to
pull out all the properties (or a specific subset of them).


The collection is there. A method to add or retrieve a single property
from the collection is there. If you want to iterate the collection
of course there is more to it. You write an iterator class or provide
methods in each class (which would would be redundant) to iterate the
collection.

How do you get a specific subset of properties from a dao.field object?

Nov 13 '05 #16
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:HZ*******************@twister.nyroc.rr.com:
David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:q0*******************@twister.nyroc.rr.com:
The collection is there. A method to add or retrieve a single
property from the collection is there. If you want to iterate the
collection of course there is more to it. You write an iterator
class or provide methods in each class (which would would be
redundant) to iterate the collection.

How do you get a specific subset of properties from a dao.field
object?


Well, you can filter by name.

The custom class module allows you to create different
collections/arrays for different purposes. In the query-by-form
criteria class that I have there's an array for the individual
criteria that is used in the private method that writes WHERE
clause, which is called by the public property that returns the SQL
string.

There are other properties that are *not* part of that array.

Had there been a pre-existing Properties collection for my class, I
would have had to use naming conventions to get a walkable structure
for assembling the WHERE clause, as with the DAO collections.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #17
rkc
downwitch wrote:
Yes, this is the idea, but it's still more wheel reinvention than I'm
after (of course ;)). The trick to a catch-all properties collection
is that what DFW is talking about still poses a problem. Normally when
you set variables and hold properties in a class, you've got a cogent
"object" that organizes your code. The hierarchy can be quite rigid,
which I've always found very useful--I use a full class hierarchy that
emulates some table data when the structure is very complex, because it
makes code manipulations easy to make, and virtually self-documenting.

Using collection-type classes and flat "single-object" classes as in

classFoot parent of classToes parent of classToe

makes things very nice and pretty, and while I suppose you could set a
generic objParent in your clsProperties collection, and then add that
"collection" to any other single-object class, but at that point you
have to *always* use

classToe.Properties("NailPolishColor") = "hot pink"

and you lose the self-documenting thing of storing strNailPolishColor
as a visible "member" of the class. Property Let/Set and Get are
strict, and that's very useful, I think, one of the things that makes
classes so powerful.


This is probably more than you're interested in since you want
magic as opposed to effort. But then taking care of that mule
team is probably time consuming.

<clsProperty>
Option Compare Database
Option Explicit

Private m_Name As String
Private m_Value As String
Private m_parent As Object

Public Property Let Name(ByVal nm As String)
m_Name = nm
End Property

Public Property Get Name() As String
Name = m_Name
End Property

Public Property Get Value() As Variant
Value = m_Value
End Property

Public Property Let Value(ByVal vlu As Variant)
'uses VB6 CallByName function to call the property's
'parent's Property Let method
m_Value = vlu
CallByName m_parent, Me.Name, VbLet, Me.Value
End Property

Public Property Set parent(prnt As Object)
Set m_parent = prnt
End Property

Private Sub Class_Terminate()
Set m_parent = Nothing
End Sub

</clsProperty>

<clsToe>
Option Compare Database
Option Explicit

Private m_nailPolishColor As String
Private m_hasFungus As Boolean
Private m_properties As VBA.Collection

Public Property Get properties(key As String) As String
Dim prop As clsProperty

Set prop = m_properties.Item(key)
properties = prop.Value
Set prop = Nothing
End Property

Public Property Let properties(key As String, Value As String)
Dim prop As clsProperty
Set prop = New clsProperty
Set prop.parent = Me
prop.Name = key
prop.Value = Value
m_properties.Add prop, key
Set prop = Nothing
End Property

Public Property Let NailPolishColor(clr As String)
m_nailPolishColor = clr
End Property

Public Property Get NailPolishColor() As String
NailPolishColor = m_nailPolishColor
End Property

Public Property Get HasFungus() As Boolean
HasFungus = m_hasFungus
End Property

Public Property Let HasFungus(ByVal bln As Boolean)
m_hasFungus = bln
End Property

Private Sub Class_Initialize()
Set m_properties = New VBA.Collection
End Sub

Private Sub Class_Terminate()
Set m_properties = Nothing
End Sub
</clsToe>

<sub test>
Sub Test()
Dim toe As clsToe
Set toe = New clsToe
toe.properties("NailPolishColor") = "Orange"
toe.properties("HasFungus") = True

'get property by name
MsgBox toe.properties("NailpolishColor")

'get property by method
MsgBox toe.NailPolishColor & _
vbCrLf & _
"has fungus: " & toe.HasFungus

Set toe = Nothing

End Sub

</sub test>
Nov 13 '05 #18
rkc
David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:HZ*******************@twister.nyroc.rr.com:

How do you get a specific subset of properties from a dao.field
object?

Well, you can filter by name.

The custom class module allows you to create different
collections/arrays for different purposes. In the query-by-form
criteria class that I have there's an array for the individual
criteria that is used in the private method that writes WHERE
clause, which is called by the public property that returns the SQL
string.


How are you doing on the demo of your query-by-form implementation?
You've been threatening to publish it. I'd like to see it.

Nov 13 '05 #19

rkc wrote:
This is probably more than you're interested in since you want
magic as opposed to effort. But then taking care of that mule
team is probably time consuming.

<snip>

No, on the contrary, I find this pretty unspeakably awesome.

I'd venture to guess that this is the first time anywhere in the world
Access has tracked the lower phalanges, and I thank you for it.

So one last question--and I was really with you on this before you went
to all the trouble--how do you validate data? I think your clsProperty
needs a data type property... And so on. I see your point, but you
wind up reproducing, well, VBA in VBA. It's not the effort that's the
problem, it's the having-to-write-the-language-for-the-language that
gets me down.

I wish the MS Access development team was subjected to developing with
Access. They could probably work this through in an afternoon, and
then justify jacking up the price of MS Office Pro another fifty bucks
(and a team of mules).

Nov 13 '05 #20
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:xn********************@twister.nyroc.rr.com:
David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:HZ*******************@twister.nyroc.rr.com:

How do you get a specific subset of properties from a dao.field
object?

Well, you can filter by name.

The custom class module allows you to create different
collections/arrays for different purposes. In the query-by-form
criteria class that I have there's an array for the individual
criteria that is used in the private method that writes WHERE
clause, which is called by the public property that returns the
SQL string.


How are you doing on the demo of your query-by-form
implementation? You've been threatening to publish it. I'd like to
see it.


Hmm. I don't remember ever promising that. A review of my Access
folder (where I keep these kinds of things) shows no QBF example
database. The Report Switchboard database is much further along,
though, and I should spend a weekend getting it put together.

But the QBF one, ho-boy, that would take a *lot* of work!

And, in fact, the last QBF interface I implemented was so simple I
didn't use my own QBF class module. But that was mostly because the
criteria were *very* simple (from only two tables).

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #21
On Sat, 23 Jul 2005 18:06:31 -0500, "David W. Fenton" <dX********@bway.net.invalid> wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote i

....
How are you doing on the demo of your query-by-form
implementation? You've been threatening to publish it. I'd like to
see it.


Hmm. I don't remember ever promising that. A review of my Access
folder (where I keep these kinds of things) shows no QBF example
database. The Report Switchboard database is much further along,
though, and I should spend a weekend getting it put together.

But the QBF one, ho-boy, that would take a *lot* of work!

And, in fact, the last QBF interface I implemented was so simple I
didn't use my own QBF class module. But that was mostly because the
criteria were *very* simple (from only two tables).

I seem to remember that the licence agreement for using the ADT (run-time development
system - see how old I am) made you promise not to distribute runtimes which duplicate
the functions of Access itself. A really good QBF would do this for a lot of users!

Nov 13 '05 #22
happy@last (polite person) wrote in
news:42e34aba.431964111@localhost:
On Sat, 23 Jul 2005 18:06:31 -0500, "David W. Fenton"
<dX********@bway.net.invalid> wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote i

...
How are you doing on the demo of your query-by-form
implementation? You've been threatening to publish it. I'd like
to see it.


Hmm. I don't remember ever promising that. A review of my Access
folder (where I keep these kinds of things) shows no QBF example
database. The Report Switchboard database is much further along,
though, and I should spend a weekend getting it put together.

But the QBF one, ho-boy, that would take a *lot* of work!

And, in fact, the last QBF interface I implemented was so simple I
didn't use my own QBF class module. But that was mostly because
the criteria were *very* simple (from only two tables).


I seem to remember that the licence agreement for using the ADT
(run-time development system - see how old I am) made you promise
not to distribute runtimes which duplicate the functions of Access
itself. A really good QBF would do this for a lot of users!


???

I've never created a generic QBF interface. Indeed, writing one
would be extremely complex. The only way to do it would be to
duplicate the QBE design (since how else would you be able to define
which tables to query?).

I assume you were distinguishing QBF from QBE?

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #23
rkc
David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:xn********************@twister.nyroc.rr.com:

David W. Fenton wrote:
rkc <rk*@rochester.yabba.dabba.do.rr.bomb> wrote in
news:HZ*******************@twister.nyroc.rr.com :

How do you get a specific subset of properties from a dao.field
object?
Well, you can filter by name.

The custom class module allows you to create different
collections/arrays for different purposes. In the query-by-form
criteria class that I have there's an array for the individual
criteria that is used in the private method that writes WHERE
clause, which is called by the public property that returns the
SQL string.


How are you doing on the demo of your query-by-form
implementation? You've been threatening to publish it. I'd like to
see it.

Hmm. I don't remember ever promising that. A review of my Access
folder (where I keep these kinds of things) shows no QBF example
database. The Report Switchboard database is much further along,
though, and I should spend a weekend getting it put together.


Sorry. That was from memory, which fails me at times these days.
Might be time to start responding to all the mail AARP sends me.

Nov 13 '05 #24
rkc
downwitch wrote:
rkc wrote:
This is probably more than you're interested in since you want
magic as opposed to effort. But then taking care of that mule
team is probably time consuming.


<snip>

So one last question--and I was really with you on this before you went
to all the trouble--how do you validate data? I think your clsProperty
needs a data type property... And so on. I see your point, but you
wind up reproducing, well, VBA in VBA. It's not the effort that's the
problem, it's the having-to-write-the-language-for-the-language that
gets me down.


That was just a demonstration of how you could work both a properties
collection and let/get/set methods into a possible solution. I haven't
even attempted to add flesh to the bone. That'd be for someone who
actually wants a working solution bad enough to think it through.

Nov 13 '05 #25

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

Similar topics

2
by: raymi | last post by:
Hi, I have a custom class that gets its properties dynamically from a database at runtime. Therefore I implemented the ICustomTypeDescriptor in this class and created a a custom...
0
by: Imar Spaanjaars | last post by:
Hi there, Can anyone tell me how to perform two-way binding with custom properties in ASP.NET 2? Let's say I have a custom class called Person that I want to bind to a FormView (using an...
3
by: Steve Franks | last post by:
Is there a way I can extend the HttpContext or one of its subclasses to include a property that exposes a custom class of mine to all ASP.NET pages? More specifically, I'd like to use a...
6
by: Shimon Sim | last post by:
Hi I am working on application that need to hold custom user information - Last and first name, email, some other domain related information. I used to create Base class for all my pages. The base...
1
by: Marty Cruise | last post by:
I have a custom collection which contains instances of a custom class. With me so far? OK, now I set the datasource of a combobox to the collection, having overridden the ToString() function of...
3
by: MicroMoth | last post by:
Hi, I've got a User class which holds details of the user and is populated by a query. I create this User object when the user successfully logs in and then I set this object to a session variable...
1
by: nrasch | last post by:
I am coding an application in VB.Net 2005 where objects of a custom class are saved/retrieved into/out of a DB. As my application moves into its 2nd version I have to add new methods and properties...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....

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.