Search Result

Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
public
  •  

  • Can anyone explain Private vs. Public properties in Class modules

    I've started using class modules, and admittedly is quite inexperienced in this particular area, and there is one thing I can't seem to wrap my head around.

    Part of the code is the property StartHeight. Get and Let shown below:
    Code:
    Public Property Let StartHeight(intValue As Integer)
        pIntStartHeight = intValue
    End Property
    Public Property Get StartHeight() As Integer
        StartHeight = pIntStartHeight
    ...
    See more | Go to post

  • Where are VBA Public variables values stored on a Server

    I have an Access database on a Server which is accessed by several users via Remote Desktop. In the VBA code there are several values stored in Public Variables. I am wondering if each user who opens the database has it's own memory space on the server so that they do not overwrite the Public variables from another user? Does anyone know how Public variable data is stored in this situation?
    See more | Go to post
Working...