[AccessD] Any limits on what can be passed as an argument?

Arthur Fuller fuller.artful at gmail.com
Tue Mar 12 08:27:20 CDT 2013


William (et.al.),

Your example reminds me of the Russell-Whitehead question: is the set of
all sets that are not members of themselves a member of itself? i.e.

<vba>
    Dim c1 As Collection
    Dim c2 As Collection
    Set c1 = New Collection
    Set c2 = c1
    c1.Add "Bill"
    Debug.Print "c1 count = " & c1.Count
    Debug.Print "c2 count = " & c2.Count
    c1.Add c2
    Debug.Print "c1 count = " & c1.Count
    Debug.Print "c2 count = " & c2.Count
</vba>

A.


On Tue, Mar 12, 2013 at 4:10 AM, Gustav Brock <gustav at cactus.dk> wrote:

> Hi Arthur
>
> A DAO.Recordset has a Clone method.
>
> /gustav
>
> >2. If Yes, is there a method such as Clone which would NOT change qd1?
>
> --
> AccessD mailing list
> AccessD at databaseadvisors.com
> http://databaseadvisors.com/mailman/listinfo/accessd
> Website: http://www.databaseadvisors.com
>



-- 
Arthur
Cell: 647.710.1314

Prediction is difficult, especially of the future.
  -- Niels Bohr


More information about the AccessD mailing list