Visual Studio 2010 toolbox controls disabled or inactive

后端 未结 13 2177
难免孤独
难免孤独 2020-12-03 17:02

I am trying to fix this from last two 2 or 3 days but failed. VS 2010 toolbox in asp application development(design mode or source) is not showing all controls(showing html

相关标签:
13条回答
  • 2020-12-03 17:40

    This was driving me crazy for a pair of days. In the choose items menu my 3rd party controls (CrystalReportsViewer) were checked. Reset toolbox did nothing to enable them. My solution was changing the target framework from .NET Framework 4 Client Profile to the full version .NET Framework 4, seems the client profile which is a subset of the version optimized for client applications does not support my controls or just using references to other 3rd party .dll librarys. This issue should only be for .NET 3.5 and 4.0, Client Profile is discontinued for .NET 4.5

    0 讨论(0)
  • 2020-12-03 17:42

    I had the same problem and fixed it now after 3 days:

    1. reset toolbox (not worked)
    2. close and reopen the solution (not worked)
    3. close and reopen the VS (it worked!)
    0 讨论(0)
  • 2020-12-03 17:45

    Right click in toolbox and remove check from "SHOW ALL" (if checked)

    0 讨论(0)
  • 2020-12-03 17:48

    I worked for me doing the following steps:

    1. Reset Toolbox (Right click in Toolbox->Reset Toolbox)
    2. Add a new tab with any name (Right click in Toolbox->Add Tab)
    3. Reset Toolbox (Right click in Toolbox->Reset Toolbox)
    0 讨论(0)
  • 2020-12-03 17:53

    Probably your project is RUNNING. STOP the project then your toolbar items will become enable.

    0 讨论(0)
  • What helped me was changing Project type from Windows Application to Class Library - then (after re-build and reopen...) I got all Controls Enabled.

    0 讨论(0)
提交回复
热议问题