Can you provide us with an example of how we can pass a particular exlist object to a sub procedure, in Access?
You have several options like follows: • Private Sub test(ByVal l As EXLISTLib.List) With l End With End Sub • Private Sub test(ByVal l As Control) With l End With End Sub • Private Sub test(ByVal l As Object) With l End With End Sub In the first case you need to call test List1.Object, in the second or third option you may call test List1.
Related Questions
- I’m overwhelmed with all the properties and methods available. How can I find out which methods and properties are available for a particular object?
- Can you provide us with an example of how we can pass a particular exlist object to a sub procedure, in Access?
- Can one pass an object/table as an argument to a remote procedure?