B
baldrick
I have a listview that I set to view.details with the following
code...
With Me.ListView
.View = View.Details
But when I add the declaration
Imports ADOX
I get the error message
'Details' is not a member of 'ADOX.View'
So the code needs to be fully qualified.
With Me.ListView
.View = ???.???.View.Details
What should the question marks be?
Cheers
code...
With Me.ListView
.View = View.Details
But when I add the declaration
Imports ADOX
I get the error message
'Details' is not a member of 'ADOX.View'
So the code needs to be fully qualified.
With Me.ListView
.View = ???.???.View.Details
What should the question marks be?
Cheers