473,769 Members | 3,102 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.Propert ies("MyProperty ")

or

MyClass.Item("M yProperty")

so that I could use variables instead of having to say

MyClass.MyPrope rty

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
24 5449
On 21 Jul 2005 06:27:08 -0700, "downwitch" <do*******@gmai l.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.Proper ties("MyPropert y")

or

MyClass.Item(" MyProperty")

so that I could use variables instead of having to say

MyClass.MyProp erty

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("Nam e").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.C opies = 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.Propert ies("MyProperty ")

or

MyClass.Item("M yProperty")

so that I could use variables instead of having to say

MyClass.MyPrope rty

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.

<clsPropertie s>
Option Compare Database
Option Explicit

Private m_properties As VBA.Collection

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

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

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

Private Sub Class_Terminate ()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCol lection()
Dim pc As clsPropetyColle ction
Set pc = New clsPropetyColle ction
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.

<clsPropertie s>


<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.Proper ties("NailPolis hColor") = "hot pink"

and you lose the self-documenting thing of storing strNailPolishCo lor
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("Bi gToe")

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("Bi gToe")(strPrope rtyIWantRightNo w)

_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******** ***********@twi ster.nyroc.rr.c om:
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.Propert ies("MyProperty ")

or

MyClass.Item("M yProperty")

so that I could use variables instead of having to say

MyClass.MyPrope rty

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.it em(key)
End Property

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

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

Private Sub Class_Terminate ()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCol lection()
Dim pc As clsPropetyColle ction
Set pc = New clsPropetyColle ction
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******** ***********@twi ster.nyroc.rr.c om:

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.Prop erties("MyPrope rty")

or

MyClass.Item ("MyProperty ")

so that I could use variables instead of having to say

MyClass.MyPr operty

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.

<clsPropertie s>
Option Compare Database
Option Explicit

Private m_properties As VBA.Collection

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

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

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

Private Sub Class_Terminate ()
Set m_properties = Nothing
End Sub

</clsProperties>

<test>
Sub testPropertyCol lection()
Dim pc As clsPropetyColle ction
Set pc = New clsPropetyColle ction
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******** ***********@twi ster.nyroc.rr.c om:
David W. Fenton wrote:
rkc <rk*@rochester. yabba.dabba.do. rr.bomb> wrote in
news:q0******** ***********@twi ster.nyroc.rr.c om:
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.Proper ties("NailPolis hColor") = "hot pink"

and you lose the self-documenting thing of storing strNailPolishCo lor
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_nailPolishCol or 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.It em(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.Ad d prop, key
Set prop = Nothing
End Property

Public Property Let NailPolishColor (clr As String)
m_nailPolishCol or = clr
End Property

Public Property Get NailPolishColor () As String
NailPolishColor = m_nailPolishCol or
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_Initializ e()
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( "NailPolishColo r") = "Orange"
toe.properties( "HasFungus" ) = True

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

'get property by method
MsgBox toe.NailPolishC olor & _
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******** ***********@twi ster.nyroc.rr.c om:

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

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

Similar topics

2
1685
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 PropertyDescriptor. The custom class also inherits from Component and therefore can be dragged on the form in the designer view. So far so good, I can bind properties from my class to textboxes etc. But when I try to bind an ArrayList containig instances of my...
0
1026
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 ObjectDataSource) for editing . The Person class exposes an Address property which in turn has ZipCode and City properties (both strings). How do I bind these to my FormView control? I tried Bind("Address.ZipCode") but I got an error stating I should...
3
2975
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 HttpModule to initialize an instance of a custom class, and have this class exposed directly through the HttpRequest for the current user through a property I add to the HttpRequest object. For example, I'd like my developers to be able to use this...
6
2227
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 class would have CurrentUser property that would hold customer class in session and that was fine for all my situations. Now ASP.NET 2.0 came and we have Profile property for pages that could be extended with configuration to have custom...
1
3706
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 the custom class to return one of its text properties. Life is good. The first of two problems involves the combobox showing the first item in the collection. To get around this,
3
1167
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 (its for a ASP.Net site) so that I can access any of the user's details from this session object. The problem is when I'm trying to access a Property of the object, the intellisence does not display the Property name. So when I type in: ...
1
1255
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 into my custom class. How does one go about adding new methods and/or properties to a custom class and then updating existing objects of that class w/out breaking everything? Ex: Pull existing object from DB -> Convert to new version of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10222
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10050
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9999
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9866
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7413
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.