Re: Remove or Delete a User-defined Property
- From: Stefan Hoffmann <stefan.hoffmann@xxxxxxxxxx>
- Date: Thu, 27 Jul 2006 16:10:32 +0200
hi,
swedbera wrote:
Can someone help me with creating and deleting user-defined properties? If you can point me to a site with information on how to do this, I would appreciate it. I have looked in Visual Basic Help and search this site, but couldn't find anything.
Private m_CurrentDb As DAO.Database
Private m_MyProperty As String
Public Property Get CurrentDbC As DAO.Database
If m_CurrentDb Is Nothing Then
Set m_CurrentDb = CurrentDb
End If
Set CurrentDbC = m_CurrentDb
End Property
Public Property Get MyProperty() As String
MyProperty = m_MyProperty
End Property
Public Property Let MyProperty(NewValue As String)
m_MyProperty = NewValue
End Property
mfG
--> stefan <--
.
- Prev by Date: Re: Remove or Delete a User-defined Property
- Next by Date: Re: Invoke Command Line (Shell Method with Winzip)
- Previous by thread: Re: Remove or Delete a User-defined Property
- Next by thread: RE: Displaying records in a form
- Index(es):
Relevant Pages
|