Xaml Editor In .Net Express / Visual Studio: Auto Completion Annoyance?

Mar 23, 2012

As I'm typing out Xaml in VB.Net Express 2010, it helpfully finishes certain things for me. Most of the autocomplete is fine, but some of it annoys me and it leads me to wonder if I'm missing something or doing it wrong.

If I type:

<GroupBox Header=

It automatically puts a quotation mark before and after my cursor. I've gotten used to the quotation mark before the cursor - I immediately start typing in whatever property I wanted. But now there is a quotation mark after my cursor! I have to reach over to the other side of my keyboard and press the right arrow key to move past it. I find this insanely aggravating, because it breaks my "flow" while I'm typing. Are you supposed to be able to press a close-at-hand key (like tab, but that doesn't work) to move to the other side of the quotation mark or do they really intend for you to have to constantly use the right arrow key?

View 1 Replies


ADVERTISEMENT

Statement Completion In Visual Studio 2008 SP1?

Jul 10, 2009

After installing SP1 of Visual Studio 2008, code completion shows all types when an object member shows the parameter list. Before SP1, parameter list would only show related types.Take a look at this image for an example: This happens on a Windows 7 and Windows XP machines I have, all services packs installed.

View 1 Replies

C# - Visual Studio: Edit XAML File While Debugging

Jul 26, 2010

I have a WPF application running in debug mode, and I would like to change the XAML while the application is still running. I'm not asking for Edit-and-Continue. I don't mind that I will have to restart the application for the changes to become effective. I just want to be able to make changes to the XAML file while the application is still running, rather than having to (1) remember what I want to change in the UI, (2) close the application, (3) recall what I want to change and make the change.

View 1 Replies

Open Visual Studio Express Files With Normal Visual Studio?

Apr 11, 2011

Is it possible to open visual studio express files with normal visual studio?

View 2 Replies

Visual Studio - .Net Editor Using RichTextBox?

Aug 3, 2011

I've created a simple vb.net text editor using a RichTextBox for a Logic Program. I've got the coloring(highlighting) to to work except for comments. However it runs really really slow after a 100 lines or so.

Note: I call the SyntaxHandler on the RichTextBox TextChanged event.

Friend vbKeys As String = "And|As|Case|Catch|CDbl|Ceiling|CInt|Class|Const|Continue|CStr|Decimal|" & _
"Default|Delegate|Dim|Do|Double|Each|End|Else|Enum|Event|" & _
"Explicit|Extern|False|Finally|Floor|For|Format|GoTo|If|IIf|In|Int|Is|Long|Module|" & _

[code]....

View 1 Replies

Visual Studio 2010 C# Editor More Cumbersome

Oct 6, 2011

I traditionally work in VB.NET, but have been asked to code the latest project in C#.This is fine as I can work in either language, having had to frequently translate C# code to VB in the past and I've no qualms about developing in either.My issue is with the Visual Studio editor and how many of the tasks that have traditionally been automated for me while writing VB.NET code are missing when writing C# code, or involve a larger variety of key-presses.For example, creating a new #region or function. In VB.NET creating a region involves typing "#r", at which point intellisense kicks in and shows me "#Region". I press "space" and "#Region" is auto-completed, thus allowing me to type the region name, then click "Enter" and the closing "#End Region" is automagically added.In C#, I type "#r"... and nada.. I have to either click "Ctrl + k + x" and select #region from the list of snippets to achieve the same effect.Similarly when writing functions in VB.NET ... the autocomplete creates the structure in seconds, whereas C# involves having to manually add the brackets etc, adding precious seconds to the development process. (or perhaps there is another shortcut key combo)

These are just two examples, but there are many others where the short-cuts that the VB.NET editor provides make coding much faster than the C# editor.I'm pretty shocked actually as C# is so often lauded for being "better" than VB.NET.My question is, are there any plugins which allow autocomplete on the C# editor in the same way as provided to the VB.NET editor?

View 6 Replies

Visual Basic Express File System Editor?

Apr 18, 2009

I am trying to publish a program but when I run the setup I get an error saying I need to put WindowsBase v3 in the Global Assembly Cache which I can do using the File System Editor apparently. The Help says to access the file system editor go to "Editor" on the "View" menu in Visual Studio. But it isn't there.

View 1 Replies

Can't Load It Into The Visual Studio 2010-editor/compiler?

Feb 22, 2011

I have a project written in Vb6, and I can't load it into the Visual Studio 2010-editor/compiler, because no wizard pops up. The idea then was to install Visual Studio 2008 and try to get to 2010 via that. But apparently the downloadlink for 2008 is not working. Does anybody have answers or ideas to my problems.

View 4 Replies

IDE :: Visual Studio 2008 Ressource Editor Not Working?

Jan 31, 2011

when i try to load the ressouce editor instead of open it per default i get it in xml"The file cannot be opened with the selected editor.

View 1 Replies

IDE :: Up Close And Personal With The Visual Studio 2010 Editor Team

Jun 11, 2009

For those you that joined in, I would like to thank you for joining us last week on the topic of Visual Studio Setup.

This week, we have something even better with the team that has built the new editor: Sean Laberee; Kav Latiolais; Selma Ikizto and Brittany Behrens (whom many of you may have already met on the forums) to do a quick walk through of their new features -and of course gather your feedback for the work of sorting through their Beta2 DCRs.

View 1 Replies

Interface And Graphics :: Visual Studio 2008 IDE Code Editor Settings

May 11, 2008

Does anyone know how to turn off the blank space delimiter of a dot? I have no idea how I turned it on, but now there's a dot where every whitespace charater would be in the IDE's code window.

View 2 Replies

Resource File ( Resx ) Editor Not Painting / Rendering In Visual Studio 2008

Jan 18, 2010

I have Visual Studio 2008 SP1 installed and lately it is taking longer and longer to bring up a Resource File (.resx) in its standard editor. Some of the file loads up, but you can see that the screen does not paint/render it 100%.I tried doing some searching on the web and the only thing I came across was doing a edit to the GDIProcessHandleQuota registry entry from 10,000 to 20,000. This appeared to work initially, but the problem came back the next day.I am doing an extensive localization project and this is severely limiting the amount of work I get done.

View 2 Replies

Turn Off Auto-add Of Subroutines In Visual Studio?

Nov 20, 2009

My project is built in VB.Net.Many times I find that Visual Studio has added subroutines to my code files even if a subroutine of the exact same name already exists. This can cause debugging nightmares as the new empty routine seems to override the correct routine. I think this can happen if I double-click on a control in the form Design view, but I try not to do this.Is there any way to turn this off?

Example:

Hand entered

Private Sub TS_Main_View_Network_Click Handles TS_Main_View_Network.Click

System added:

Private Sub TS_Main_View_Network_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TS_Main_View_Network.Click

I guess that the system adds the second routine because the argument list (which is unneeded but may be required) list is missing from the first routine.

View 2 Replies

.net - Finding A Mac Alternative To Visual Studio Express?

Oct 29, 2010

I use a Mac for all my other work like design work and coding in Dreamweaver but would like to know if there is an alternative to Visual Studio Express so that I can do all my vb.net stuff on the mac too.

View 3 Replies

.net - Using LINQ With Express Version Of Visual Studio?

May 28, 2009

Is it possible to use LINQ in the express version of visual studio? I am planning on refactoring my project to use LINQ, but I am the only person in my group that has a copy of visual studio pro. Will that cause any problems if someone using the express version has to modified my code?EditI realize that the graphical tools are not available in the express version, so my question does not pertain to those. I am more interested in the actual code, which I assume will work

View 2 Replies

Informes En Visual Studio 2010 Express?

Aug 18, 2011

Estoy trabajando con visual studio 2010 express, que alternativa tengo de crear informes, ya que no viene con crystal report ni puedo descargarlo al parecer porque no es compatible.

View 1 Replies

Is Free Visual Studio Express Good Enough

Apr 7, 2011

I've got .net v4 installed, and the SDK, and I've managed a Hello World msgbox winform .exe app using the free IDE "SharpDevelop", but that doesn't seem to have an Immediate Window which I'm a bit lost without. I also tried MonoDevelop but I couldn't get the Immediate Window there to work, and worse than that, I couldn't even find a way to design forms and plonk down some controls! I think their main interest is C# rather than VB? So it looks like I'm going to have to try the crippled Express Edition from MS - which feels annoyingly limiting from what I've seen - but I'm struggling to understand exactly what missing features would halt me in my tracks.Basically (pun intended, sorry) I'm hoping to see if I can upgrade myself to vb.net from some VB6 dabbling a few years ago. From what I've read it seems mostly quite manageable, I can understand the "everything's an object" concept, etc.

But, would I be able to produce useful software, deployable around the office with proper msi installer packages? If not, then I just won't have the motivation to progress beyond a few little experiments. The question is - can I actually do anything worthwhile without risking the waste of a considerable sum of money if I were to shell out for an uncrippled version?

View 23 Replies

Visual Studio VB 2010 Express Downloads?

Oct 27, 2010

I'd like a redist package (full single download) instead of the web installer (tiny single download, massive multiple at-runtime downloads). Anybody know where to get one?It never hurts to try. In a worst case scenario, you'll learn from it.

View 3 Replies

Autocomplete - Visual Studio Intellisence Auto Create Function ()

Jun 1, 2011

In visual studio programming in Vb.Net you get a special autocomplete around functions. If you add a name in front of a statement the rest of the line is treated like function parameters.

strInEditBy dsInfo.Tables(0).Rows(0).Item("plandesc").ToString()

strInEditBy ( dsInfo.Tables(0).Rows(0).Item("plandesc").ToString() )

I wanted to add a = operator in the place of the ( but unless I type really fast it auto-adds the ( ). How can I turn that off.

View 1 Replies

IDE :: Auto-complete Statements Not WORKING In Visual Studio 2010

Jun 24, 2010

I have just installed VS 2010 Premium on my Windows Vista Machine. I've noticed that in VS2008 when I typed for eg " Public property MyProperty() as string " and pressed the enter..I was getting automatically the expected result. Meaning by that , that VS2008 was generating for me the rest of the code. [code] In Visual Studio 2010 I am not getting this anymore. What happened ? Is this feature still working in VS 2010 ?

View 3 Replies

IDE :: Auto-complete Statements Not WORKING In Visual Studio 2010?

Jan 18, 2011

I have just installed VS 2010 Premium on my Windows Vista Machine. I've noticed that in VS2008 when I typed for eg " Public property MyProperty() as string " and pressed the enterI was getting automatically the expected result. Meaning by that , that VS2008 was generating for me the rest of the code.

View 10 Replies

IDE :: Auto-insertion Of Interface Members In Visual Studio 2010

May 10, 2010

In VS2008, I can stub out interface members with the following code using TextSelection to insert the implement line and then "simulate" the Enter key by inserting a new line. However, it doesn't work anymore in VS2010.

CodeClass cclass = {Target_Class};
TextSelection txtSel = {After_Class_Declaration_Line};
foreach (string i in interfacesFullName)

[Code]....

View 1 Replies

Visual Studio 2005 - Auto-Desk Inventor 11 Customization

May 14, 2009

I've done some looking through the site and on the Internet trying to find a solution to a problem with a VB.NET application I'm attempting to create. Unfortunately, I'm stumped by an error message that has prevented me from moving forward with any Inventor customizations.

[Code]...

View 1 Replies

Visual Studio Shortcut To Auto-Add Event Delegate Methods

Sep 2, 2009

In C# adding event handler methods is very easy. You just type "object.event +=" and then press tab twice. Is there anything like this for VB projects? Note: This is for dynamically created controls or controls that are not declared WithEvents.

View 1 Replies

.net - RemoteConnection To SQL Server2008 Express Failed On Visual Studio?

May 27, 2011

After 2 Days of search i still didnt find an answer.

Situation:
Server:
SQL Server 2008 Express installed on RemoteServer
TCP/IP: Enabled on port 1433
Named Pipes: Enabled

[Code]...

View 2 Replies

Can Visual Studio Express 2008 Connect To MySQL

Apr 8, 2011

I've installed MySQL .NET connector but it's not shown in data source options to connect in Visual Studio Express Edition.

View 2 Replies

Datagridview And BindingNavigator - Visual Studio Express 2010

Feb 23, 2012

Visual Studio Express 2010. Windows Forms Application. New MDF Database. Add a table, put some data in it. Now, from the data sources window drag a DataGridView over to the Form1, drop it. There is no BindingNavigator created with it, so I drag on over there from the toolbox. Run it and the BindingNavigator does nothing. Why/how do I make it talk to the DataGridView?

View 3 Replies

IDE :: Microsoft Visual Studio 2010 Express Prerequisites X64?

Sep 22, 2011

When i try to install Visual Basic Express 2010 and Visual C++ Express 2010, I get this error:Setup could not install the following component:Microsoft Visual Studio 2010 Express Prerequisites x64

I'm on Windows Vista Things I've tried: Deleting contents of %temp% folder

[Code]...

View 1 Replies

Possible To Write Projects In The Express Edition Of Visual Studio

Apr 29, 2010

I couldn't find a quick answer on the official pages,is it possible to write VB projects in the express edition of Visual Studio that connect to a SQL Server that is not the included 'Express' server ?

View 1 Replies

Scrolling Text / Marquee Visual Studio Express

Nov 5, 2008

i'v found several scrolling text / marque examples on the net .. i'v tested a lot of them .. but some some reason all of them are not smooth .. text is 'blinking' .. anyone knows a good marque control? a paid one is also good (withing budget ) .. i really tried alot of them..

View 3 Replies







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