Visual Studio :: Replace Dialog "look In" Dropdown Bug?
Jan 11, 2010
The "Look in" dropdown doesn't always default to "selection" when selecting a *single line*.
Screenie: [URL]
Reproducing the issue:
1. Make sure nothing is selected, cursor at beginning of a line.
2. Hit CTRL-H. "Look in" will show "Current Document"
3. Hit ESC to cancel the dialog.
3. Hit SHIFT-DNARROW to select a *single* line.
4. Hit CTRL-H. "Look in" still shows "Current Document". It should show "Selection".
This is VS Team 2008 v9.0.30729.1 But it also occured in VS 2005 and VS 2003.
Surely someone's noticed this before? It's quite painful when you just want to replace something on a single line, but end up doing it on the entire doc.. but only notice sometime later.
The text and style runs properly but the server side code is ignored. How would I write this so that it's not ignored? Do I have any options?
Text = Text.Replace("Blank Div", "<div class=""New""><% If Session(""User"") Is Nothing Then%><asp:LinkButton ID=""lbtnSignup"" runat=""server"">Sign up</asp:LinkButton><% End If%></div>")
When using Visual Web Developer Express there seems to be an issue when trying to insert a DDL into the Wizard. If I create a Wizard, and then insert a DDL inside the wizard, the source shows, correctly,
However, if I return to the Design view and use the Smart Tasks button to 'Edit Items', although I can complete the relevant details in the 'ListItem Collection Editor' they are not transferred to the source. If I use exactly the same procedure on a DDL outside the Wizard everything functions correctly.
I work with Visual studio 2005 and Sql server data base. I extract 1 million rows from a database and I put the rows in a Sql table. With a simple direct extraction, in a few minutes I complete the operation:
Dim cmd As New SqlCommand(query, cnSql) cmd.ExecuteNonQuery() cmd.Dispose().
But, if I must select and modify some fields between extraction and introduction, it takes a lot of time! I work in this way. I extract rows from Dbase, Table1, and I put all into a Collection using dataReader:
Dim cmd As New SqlCommand(query, cnSql) Dim coll As New Collection coll.Clear() Dim dr As SqlDataReader = cmd.ExecuteReader() I replace some fields with the string "YES". Dim toRepl As String = "" If dr.HasRows Then Do While dr.Read toRepl = dr(5).ToString If Len(toRepl) <= 3 Then ToRepl = "YES" collPrel.Add(dr(0).ToString) collPrel.Add(dr(1).ToString) .................. .............. collPrel.Add(toRepl) collCount = collCount + 1 Loop End If dr.Close() cmd.Dispose() Now, I insert all into a SQL Table2: Dim a As String = "", b As String = "", c As String = "" etc. For i = 1 To collPrel.Count Step 6 a = collPrel.Item(i).ToString b = collPrel.Item(i + 1).ToString .............. ............... f = collPrel.Item(i + 5).ToString queryIns = "INSERT INTO Tab (name, adress, etc) VALUES ('" & a & "', '" & b & "', '" & c & "', etc. ) Dim cmdIns As New SqlCommand(queryIns, cnSql) cmdIns.CommandTimeout = 600 cmdIns.ExecuteNonQuery() cmdIns.Dispose() Next
This way to work goes right but it is necessary a lot of time for completing the operation.
I have had a persistant problem, which occurs in "Visual Web Developer 2008" express, but also in "Visual Studio 2010"
When I drop a data control onto my webpage, and the select "Configure Data Source", the dialog box opens, but when I try and browse for the data file (could be MDB or XLS) the data file does not appear in the "Select (XML/MDB) file" - in the example below a XML file. If I set the filter to "All Files (*.*)" I can see all of the files EXCEPT the XML files.
The project is a web project, and is set to HTTP - using my local IIS.
I am trying to create MVC Web application in Visual studio 2008 but cannot find the template in the "New Website/Project" Dialog box. Same in Visual Web Developer Express.
I also tried searching in google for downloading the template but found nothing.
I have an assembly and i have registered that in GAC. Now i want to reference some methods of this assembly in my some other project or i want to reference this assembly. How can i do that?
How to display an assembly in the "Add Reference" dialog box?
MS webcast event "Quality Assurance in Visual Studio Team System 2010" * # 1032443491 happens Eastern DST 14:30 today.
The registration e-mail gives a confirmation number but does not specify the "Location" server value for the "Microsoft Office Live Meeting" "Join a scheduled meeting ..." dialog. How do I connect to this meeting?[URL]
if a asp.net web site project is created using code behind as C# language then the Page and its controls events are not shown in the DropDown at top of the editable area in Visual Studio.But contrary to this if code behind is VB.NET then in the DropDown all Page events and its controls events are shown.
Is the same possible with code behind as C# language ?
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?
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.
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.
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?
can Visual Studio 2008 be All-In-One tool to integrate source code continuously from team members, build, unit test?
Having used Visual Studio Team Edition 2005, unit testing each method within VS itself. I strongly believe that it is feasible to add-on tools. Example ankhsvn tool to use SVN from Visual studio [URL]
In my investigating i have come across number of tools(shown below) to use with Visual Studio 2008 professional
Development tool:- Visual Studio 2008 professional using Subversion as source control tool. Continuous Integration:- Hudson or Cruise control Build tool:- NAnt Testing:- NUnit, Selinium As Visual Studio 2008 can be used for unit testing I think NUnit is out of consideration.
In the same way i would like to have any other tools/add-ons to Visual studio to implement continuous integration, building and unit testing. This process should be automated such a way source code between team members is continuously integrated, built and unit testing is done as configured.
Objective is to use few number of tools as add-on to Visual Studio or achieve most from Visual studio itself (example unit testing). Visual Studio should be all in one tool.
I am aware that Team Foundation Server best suits my requirement, but it is out of scope due to its cost.
I am building master page in visual studio 2005 and I have placed contentplaceholder into between <head> and </head> tag of master page, but in source view of visual studio 2005, I am getting error that says "unrecognized tag prefix or device filter" how do i get rid of this error or is this bug in visual studio 2005
when i opened my Visual Studio 2010 i noticed that my ajax tab was missing from my toolbox and ajax control kit too.Then i noticed even that when i create new website, there is no web.config in it and it should be.WHAT IS GOIN ON???? :/