Reputation: 51063
I've just installed DXperienceXaf-10.1.7, but the controls do not appear in the VS 2010 toolbox, neither do they show in the VS 2008 toolbox. I have run ToolboxCreator from the 'start menu' shortcut to no avail. This is on Windows 7.
Is there a fix for this? If not, how do I manually add them? There seem to be a zillion dll files.
Upvotes: 18
Views: 82528
Reputation: 11
Lest do like this:
1. Open your visual studio
2. Open your solution, for example in mine is mngpwn (it's windows form app)
3. Set application target .net framework to .net 4.7 or above
4. On opened solution in visual studio solution exploler, open the form. In mine is Form1.cs [Design],
5. actived Toolbox, select General Tab,
6. Restore down the visual studio windows
7. Open windows explorer an go to folder of installed DexExpress dll file
8. Restore down the window exploler
9. select view as Detail View and then sort view by Type file
10. Go to window exploler, select the .dll stored. In mine is in C:\Program Files (x86)\DevExpress 13.2\Components\Bin\Framework,
11. Drag to general tab on toolbox,
12. Wait a momen. When appear the dialog window, click Ok,
13. Rename the general tab in tooolbox as you want,
14. Make new tab and move the group of DevExpress Component you want to group,
15. Done!
16. You now can use all of DevExpress component.
17. Do the same for web component in web solution type.
Upvotes: 1
Reputation: 615
Here is the basic steps to display DevExpress toolbar; for beginners. Select View > Toolbox. Select anywhere on the toolbox and right click and select Add Tab. You need to name this tab. Right click on this new group, select Choose Items. A dialog box appears and it might take a while to load the components. If DevExpress components are not present here, click on Browse and select the dll files. This will add all the items to the new group.
Upvotes: 0
Reputation: 101
DevExpress Controls not showing up (disable) in Visual Studio toolbox:
This issue was caused by the application Target Framework being set to .Net Framework 2.0
once the Target Framework was changed to 4.0, the controls became available in the Toolbox.
To change the Target Framework in Visual Studio : For VB.net:
For C# .net:
After that you need to repair toolbox by right clicking on toolbox tab, where controls exist. Visual Studio will close automatically and will reopen after some configuration will apply. Now you will find all devExpress Controls available on toolbox..
Thank you...
Pulkit Aggrawal (email: [email protected])
[JITR Technology]
Upvotes: 4
Reputation: 967
Although question quite old, I often get this problem when installing a DevExpress upgrade. Steps to get it working are:
Also one thing I noticed with this version is that the toolbox only seems to appear on .Net Framwork 3.5 and above web projects.
Had this issue with Dev Express v2011 vol 2.
Hope it helps.
Upvotes: 7
Reputation: 11376
I would suggest that you grab the installation's log (it should be positioned near the installer) and send it to the devexpress by creating a new ticket in the support center. We will research why the problem appears using it and let you know what causes this issue.
Upvotes: 2
Reputation: 3374
You can manually add them by creating a new DevExpress Toolbox Tab and dragging all the DLLs from
"C:\Program Files (x86)\DevExpress 2010.1\Components\Sources\DevExpress.DLL"
Remove (x86) for a 32 bit Windows installation.
Hope that helps!
Upvotes: 27