Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Friends
I have problem that I am Using Source Safe and I Found Error Of ListView That is
'The Type or Namespace name 'ListView' Could not be Found(Are You Missing a Using Directive or an assembly Reference?)'

Please Help me Thanks in Advance
Posted

1 solution

'The Type or Namespace name 'ListView' Could not be Found(Are You Missing a Using Directive or an assembly Reference?)'
First thing, this has nothing to do with SourceSafe.

Now, the above error means that you are trying to use Class ListView which is missing and most probable reason for it could be missing assembly in GAC or application bin folder. Make sure that the assembly that has the class is present.

For Winforms, it's in System.Windows.Forms namespace of assembly: System.Windows.Forms (in System.Windows.Forms.dll)
For Web, it's in System.Web.UI.Control namespace of assembly: System.Web.Extensions (in System.Web.Extensions.dll)
 
Share this answer
 
Comments
hardy panchal 2-Mar-13 4:17am    
but how can i Check in Dll File
hardy panchal 2-Mar-13 5:47am    
still Error not solved
hardy panchal 2-Mar-13 5:59am    
other Control not showing Error Only ListView Show Error.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900