I using VS2010 professional edition. I can't find the TabControl anywhere. It's not only the tabControl, there are some others.
Do I need to download them from somewhere?
Thanks for helping
The link you refer to is Windows Forms and the TabControl is in the ToolBox:
You mention jQuery and for ASP.Net applications to you need use controls like these:
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Tabs/Tabs.aspx
http://jqueryui.com/demos/tabs/
http://jquerytab.codeplex.com/
http://codecanyon.net/item/sliding-tabs-jquery-plugin/full_screen_preview/141774
http://www.codeproject.com/Articles/13165/A-Simple-ASP-NET-Tab-Control-Using-the-MultiView-c
http://www.codeproject.com/Articles/17292/Tab-control-for-ASP-NET-Applications
Related
I've wondering if it's possible to use visual studio (2013) to develop a HTML5 based website (HTML5-CSS-jQuery-etc), like Dreamweaver (which I hate by the way). Working with MVC Views was so easy because of IntelliSense, so that's why basically asking this. I want make a webpage, but the only option is ASP.NET...
For all those who are going to ask: Yes I've searched about this, but all the tutorials were about ASP.NET
Visual Studio 2012+ offers built-in support for HTML5 as explained in this article: http://msdn.microsoft.com/en-us/magazine/jj618298.aspx. You can create an empty web site and write your code/markup in it.
For the earlier 2008-2010 versions there is a VS extension:
http://visualstudiogallery.msdn.microsoft.com/d771cbc8-d60a-40b0-a1d8-f19fc393127d
Someone asked about getting the WinRT XAML Toolkit controls to show up in Visual Studio Toolbox. I can see that they do show up when I look at the sample project that uses the source code version of the WinRT XAML Toolkit and I can find them in Blend in an app project that uses NuGet-packaged version of the Toolkit - just by searching for the controls by name, but they don't automatically show up in VS Toolbox somehow. I saw in Tim Heuer's article that you can make them show up in the Toolbox if you do a VSIX deployment, but the Toolkit doesn't support that option right now.
Is it possible to get it to work with NuGet or are using the source code or building Extension SDK the only options?
I think the possible way to do this would be to allow package manager to take additional parameters which would then add them to toolbox
If the default project templates reset the toolbox items each time, this might work great otherwise we will see versioning related issues in no time.
I am building a Windows utility that shows the user interface of a Windows Phone page. Visual Studio has similar designer that shows how the XAML of the selected page looks like. Visual Studio's designer must use some special assemblies that actually render XAML of the page just like on a real device.
I would like to use the same assemblies as the designer of Visual Studio uses. What are those assemblies?
These are all internal stuff for VS and Blend. The following blogpost gives you some insight into how this works under the covers: http://advertboy.wordpress.com/2012/04/27/xamluipresenter-what-are-you/
Albeit not WP specific the same applies to phone. However this is NOT supported for use anywhere else.
I'm wondering what your use case is? There might be something better and supported for you to use.
I have experience in c++ but not in c#.
I have a windows phone project going and would like to use this library:
http://sshnet.codeplex.com/
it has lots of C# source files and one Project File
After hours of googling and trying I still can't use the functions of Renci.sshnet.
I have Microsoft Visual Studio 2010 Express for Windows Phone.
Thanks in advance..
WP is Silverlight, so you need SshNet Windows Phone Binary. Did you took this one? What steps did you took to use(eg could you add a reference?).
I hope this help you.
First add the existing project(http://sshnet.codeplex.com/) into your same solution. Right click on the project in solution explorer and click on add reference , select the project tab. select the project you want to add.
I'm trying to learn game programming. I am using Microsoft Visual Studio 2010 Express on Windows Vista. I want to know how to create a resource file (.rc). The microsoft website gives some fairly ambiguous instructions on creating one. http://msdn.microsoft.com/en-us/library/sxdy04be.aspx. If I go to my Solution explorer, right click and select Add New Item, the IDE does not give a .rc file as one of the options. It only gives me a .cpp, .h and windows form as options. I don't know what to do. I just can't figure out where i'm goofing up. I'd be very grateful if someone could point me in the right direction.
Thanks a lot
Merry christmas!
The Visual Studio Express 2010 does not have the ability to edit resource files. Take a look at this MSDN page it is the listing of which features each version of VS 2010 contain.
From above link. There is no resource editor in the Express Version.
This link discusses a way to add a resource editor to Visual Studio Express.
Also take a look at this MSDN Forum Link It has some tips and links to external editors.