Listview question - fully qualifying

  • Thread starter Thread starter baldrick
  • Start date Start date
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
 
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

found it...
System.Windows.Forms.View.Details
 
Back
Top