Visual Studio :: Add Folders Instead Of Items One By One

Feb 22, 2011

VWD 2010 Express.

I have a folder contains 3 sub-folders and each folder contains sug-folders and files.

Anyway I can add into my project by including the parent folder instead of add the files one by one?

View 1 Replies


Similar Messages:

Visual Studio :: Cannot Add CSS File To Theme Folders

Jan 12, 2011

When I right click on any folder below the App_Themes folder in VS 2010, the only web file that appears to be able to be added is the Skin file. If I pick a regular folder within the site (other than App_Themes), Style Sheet does appear.

I checked both an existing web application project (VS2008 upgraded to VS2010) and a new web application project created in VS2010 and both yield the same results.

I can create a CSS file in another folder (like the main folder) and then drag it into the theme folder, as a work around. Just trying to determine if I was missing something regarding theme folder and CSS files.

View 1 Replies

Visual Studio :: Excluding Files And Folders Cause Them To Disappear?

Jul 2, 2010

I tried excluding some files and folders in VS 2008 and they just disappear when I just want them to appear "whited" out. How can I change this behavior?

View 1 Replies

Visual Studio :: Prevent Move Of Files And Folders?

May 27, 2010

Sometimes i move files and folders by mistake. Is there a way to prevent this. Something like putting a "lock" on the position of files and folders?

View 6 Replies

Visual Studio :: CheckOut Separate Files In Divers Folders (SCE)?

Jan 13, 2010

I have set of folders in Source Control Explorer:

1, 2, 3, 4... etc

in each we have files:

a, b, c, d... etc

I need to CheckOut files with name 'a' in all folders Is it possible automatically or I should go into all folders and check one by one all files?

PS I have Visual Studio 2005, but installed only TFS.

View 2 Replies

Visual Studio :: Choose Items(Toolbox) - How To Get Missing Items

Sep 16, 2010

I am using Microsoft Visual Studio 2008 Professional Edition on Windows Vista Home Basic SP2 and when I am editing Visual Basic and want to add an item to the toolbox I click on Choose Items... and from that point I can't find important controls (items) like Windows Media Player or Adobe PDF Viewer. I have tried to reinstall and reset the toolbox and program. I can't find this problem anywhere in the web

View 10 Replies

Visual Studio :: Referencing / Adding Folders Subfolders In Solution Explorer?

Jan 18, 2010

i have few folders which has files & some sub folders ----- in another application

i need to add it in current application

without creating the folders/sub folder/subdolder1 is it possible to add all the subfolders as it is using add exixting item

View 1 Replies

Visual Studio :: Unable Access To Classes From Other Folders Out Side Project Files

Jan 24, 2010

im facing problem to access classes out side my project folders. for example if i want to use some methods from store.vb file inside my project i get error : Name Space is not defiend, i have tried all ways such as import sdf.ITracjer.Data

[Code]....

i can't fetch the Store Class Methods or Function because its out of project directory, as its showin in image.

View 3 Replies

Visual Studio :: How To Remove Unused Css Items

Jan 28, 2010

Is there a way to easily tell which items in my css file are not used on any of my pages? I am trying to avoid going through each page individually.

View 1 Replies

Visual Studio :: Toolbox Items Greyed Out...

Mar 28, 2011

I notice when I create a project the common controls menu which includes the webbrowser control is available. When creating a web application in either vb.net or c# the controls are NOT available. Why is this? How can I get them to appear in my web application. I want to use the webbrowser control in vb.net .

View 3 Replies

Visual Studio :: Grayed Out Tool Box Items?

Jun 8, 2010

I installed the Visual Web Developer 2008 Express on my Windows XP, I also install the SP1. But somehow all the tool box items in the ToolBox are grayed out and I cannot access them,

View 3 Replies

Visual Studio :: Toolbox ShowAll Items Grayed Out

Jul 6, 2010

I am trying to use one of the componets of the WPF Toolkit,[URL] but when I look for the component in my Toolbox it's not there, so when I set the Toolbox to ShowAll, the components are listed but they are grayed out. I right click on the Toolbox > Choose Items and look for the component in my list and ensure that the component is selected, but it still shows up as grayed out. If I turn off ShowAll the components are not listed. How do I get these grayed out components available for use?

View 10 Replies

Visual Studio :: Toolbox Shows Items Multiple Times

Sep 14, 2010

My tool box shows the same tools about 12 times. This is for all of them and for all categories. I tried repairing it but it didn't work.

View 6 Replies

Visual Studio :: Filter The Work Items To The Right User From The TFS Store?

Jan 26, 2010

I'm trying to conect to the Team Foundation store to get the work items from the user who was authenticated in the TeamFoundationServer but I'm getting all work items from all users. I was expecting to find the "Alias" or "AssignedTo" in the WorkItemCollection and filter the correct user from there but there's no correspondent field, so I think I should change sql query but I don't know how. As far as I've got see the code bellow:

[Code]....

View 3 Replies

Visual Studio :: How To Convert Whole Visual Studio 2008 Web Site Project To Visual Studio 2010

Aug 14, 2010

is it possible to convert whole visual studio 2008 web site project to visual studio 2010 web site project

my current project references

i have a very annoying iis problem

iis server stops working until app pool is recycled

i am hoping that new visual studio (net framework 4.0) may solve this very annoying unsolveable problem

View 2 Replies

Visual Studio :: Opening Visual Studio 2008 Project In Visual Studio 2010?

May 21, 2010

Anyone know if I can maintain a VS 2008 (.net 3.5) project by using the VS 2010 IDE ?

View 1 Replies

Listing Folders In Folders Then Creating Arrays In JS For Each Of The Folders?

Jun 21, 2010

Listing folders in folders then creating arrays in JS for each of the folders?

Directory Structure:

I have a directory structure as follows;

ad_folder
--folderA
--folderB
--folderC
--anotherFolder
--etcfolder
--afile.aspx
--anotherfile.gif
ad_code
--folderA
--folderB
--afile.aspx
--anotherfile.gif
ad_prep
--folderA
--etcfolder
--afile.aspx
--anotherfile.gif
ad_bin
--etcfolder
--afile.aspx
--anotherfile.gif
other Folder
files folder
assetsfolder
index.aspx
web.config
image.gif

Task at hand:

I want code in VB.NET to create javascript arrays of the folder contents that can then be used on the client end. I only need arrays for all folders contained in folders starting with ad_ and an array for all the base folders . like so:

var folders=["ad_folder","ad_code","ad_prep","ad_bin"];
var ad_folder=["folderA","folderB","folderC","anotherFolder","etcfolder"];
var ad_code=["folderA","folderB"];
var ad_prep=["folderA","etcfolder"];
var ad_bin=["etcfolder"];

note that I do not know the number of or the names of the folders, they can be different in different cases, I only have the root path.

[code]...

View 3 Replies

Visual Studio :: Visual Source Safe Plug In Control For Visual Studio 2005 IDE

Jan 28, 2010

where to find/download visual source safe plug in or visual source safe client for visual studio 2005 IDE?

I do not want to install visual source safe 2005 server.

View 1 Replies

Visual Studio :: Items That Select In Design View Are Not Being Highlighted In Source View?

Sep 30, 2010

I'm using Visual Studio 2008, and when I select/highlight something in design view and switch to source view it does not highlight and scroll to the selected item. This makes it really hard to change stuff in source view, and it's very inconvenient at worst

View 2 Replies

Visual Studio :: Migration From Visual Studio 2003 To Visual Studio 2010?

Apr 15, 2010

Is it possible to migrate the application which is in visual studio 2003 to visual studio 2010. provide me details about how to migrate.

View 2 Replies

Visual Studio :: Migration From Visual Studio 2005 To Visual Studio 2010?

Jun 16, 2010

I have a site in production developed in 2005 and i am planning to migrate to Visual studio 2010. Is there an easy way to do it?

View 1 Replies

Visual Studio :: Visual Source Safe 2005 + Visual Studio 2010,?

Feb 28, 2011

I want to use a source control in VS2010, I know my best bet is TFS, but at the moment TFS(can't afford ). As i understand TFS is the new VSS_2005(can afford)Can VSS 2005 be use as a source control for VS 2010 solutions/projects?

View 2 Replies

'Add Config Transforms' And One Click Publish Option Not Working When Upgraded From Visual Studio 2005 To Visual Studio 2010

Jul 28, 2010

I just recently upgrade my asp.net web project from visual studio 2005 to visual studio 2010. The upgrade was successful with no problems however im missing some features with this project. The One Click Publish feature(which is greyed out) in the header area of Visual Studio 2010 and the Add Config Transforms feature which is no where to be seen when you right click on web.config. When i create a new web project straight from visual studio 2010, these options work fine.

View 1 Replies

Visual Studio :: After Having To Do A Devenv /resetuserdata To Get Visual Studio 2010 Beta 2 Back, AJAX Drag Panel?

Mar 9, 2010

Visual Studio 2010 Beta 2 locked up, and when I tried to restart it, it wouldn't load, so I did a devenv.exe /resetuserdata to get it going again. It reset everyhing in my options of the web app/ etc, and now some AJAX conrols don't work such as dragpanel. I assume that it is because something got reset that I haven't enabled again, but can't figure it out.

View 2 Replies

Visual Studio - What Is Best Option In Visual Studio 2010 To Sync Project Files Between Home & Work Computers

Feb 14, 2011

Im working on a website project with Visual Studio 2010 from 2 different computers (home & work).
In Dreamweaver Im used to FTP to upload/download files to/from a webserver to syncronice my files on the current computer Im working on.What is best option in Visual Studio 2010 to sync project files between home & work computers? I have seen there is a built in FTP, but seems only it can upload files, limited functionality?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved