Asp.net - VS2008 ALWAYS Uses Space Indentation For New Files

Apr 16, 2010

I've changed my settings in Tools | Options | Text Editor, for All Languages, Basic, and C#, to having Block indenting, and 'Keep tabs'. I've also tried this with Smart indenting too. Now, although once I start editing a file, its auto indentation is done with tabs, when I create a new web form in my ASP.net website, VS2008 insists on creating the initial code with space indentation. So for example, I'll get an aspx.vb file for my new page like so:

Partial Class Admin_Index
Inherits System.Web.UI.Page
End Class

Note that the 'Inherits' line is SPACE-indented, even though I have the text editor settings set to keep tabs. Is there any way I can make the default created files indented with tabs, not spaces? Or is VS just too stubborn? :-)

I know this, but I have a software team that find it irritating as we have an SVN hook that prevents checkins if there's any space-indentation. It would be very useful if any newly-created files have tab indentation from the start, rather than us having to change it every time.

View 1 Replies


ADVERTISEMENT

.net - Override The Auto-indentation Of Comments In .NET/VS2008?

Nov 10, 2009

Is it possible to override the auto-indentation of comments in VB.NET (Using visual studio 2008)? the comment above the second Case Statement in the code below for context.The IDE auto-indents the comment beyond the following Case Statement. I would like to override this behavior and bring it in line with the C in Case that follows.

[Code]...

View 2 Replies

Make Code Indentation Behave Correctly In Vbhtml Razor Files?

Nov 25, 2011

This is driving me round the bend. I'm a long time VB.NET forms developer, quite new to ASP.NET and completely new to MVC. I'm creating vbhtml pages that use the VB.NET razor syntax, and I seem to be constantly fighting against the UI which is trying to indent my code incorrectly. Take the following example, based on the template page for a new Razor view:

@Code
Layout = Nothing
End Code

[code].....

View 2 Replies

Reading/writing Files VS2008?

Apr 6, 2009

I'm writing a system with several programs, each of which will start off with a number of 'run time parameters' which will be stored in what I call 'personality files'. Each file will have about 10 elements ( file locations, logo files, dates, numbers , text strings ). I"m starting by building little programs which maintain ( build and modify ) the personality files. To begin the first one, I"m only reading/writing 3-4 strings ( I"ll graduate to dates and numbers later )When I run the program below, I get " The process cannot access the file 'c:yyyyyyyy.zzz' because it is being used by another process. ". I also get"A first chance exception of type 'System.IO.IOException' occurred in Microsoft.VisualBasic.dll "

I get these errors even though I've done the usual stuff like deleting other versions of the test file, cancelling other processes which might be involved, and so on.

Code:
'.... user has clicked on SAVE in menustrip ....
Private Sub FileSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FileSave.Click

[code]....

View 19 Replies

VS2008 Make A Program That Copy An Hide The Files

Sep 2, 2010

I want to make a program to copy files from the directory c:/program files/common files/apple/apple application support to c:/ And hide these files

View 1 Replies

Get A Certain Text Inside A Textbox To Equal That Text Space To Space Or Null To Space?

Sep 25, 2011

How would i get a certain text inside a textbox to equal that text space to space or null to space?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Textbox1.Text.StartsWith(Textbox2.Text + " ") And Not String.IsNullOrEmpty(Textbox2.Text) Then
Textbox1.Text = Textbox1.Text.Remove(0, Textbox2.TextLength)
Textbox3.AppendText("a")
End If

Btw: after i finish this step my project will be finished!

View 4 Replies

IDE :: Indentation In VB 2008/2010?

Mar 24, 2012

i have this Code

'Send Proyect Data to Db
Call StoredProcedure1
'Send asigned persons to Db
Call StoredProcedure2

[code]....

The comment 'Send Proyect Data to Db as the other are pusshed to same level of the code.Is it any way to leave those comment lines at the left margin?

View 2 Replies

Visual Studio Forcing Indentation?

Feb 23, 2010

I am having a problem editing VB.NET .aspx pages in Visual Studio 2008. If I edit a line that is flush against the left margin, Studio automatically indents it 4 spaces, and there is no way to undo it! I am forced to save the file with that 1 line I edited indented differently than all the other lines!

Edit: How do I turn this off?

View 1 Replies

Visual Studio 2010 - .net Application Works With Files Dragged Onto The Exe But Crashes If There's A Space In The File's Path?

Jun 15, 2011

I'm developing an application in vb.net. You drag any type of file onto the exe, and a window pops up with some options for the file, then it saves the file to a different location, works some SQL magic, etc. It works great for the most part. The only issue I've found is that if the path of the file contains any spaces, the application will crash immediately with the error window:[URl]..I'm using: Private filename as String = Command$ This is located right inside my form's class declaration, not within a sub/function.Without this line, my program runs fine (although useless, without accessing the file).I've also tried (I think this was it, I don't have the code with me at the moment): Private filename as String = Environment.CommandLine So, in vb.net, is there a way to drag a file onto an exe and use that path name, even if there are spaces in the path name?

View 2 Replies

Keydown Space/Enter - Use The Space Or Enter Key To Change The Image In It?

Sep 8, 2011

I am using a picture box. I want to be able to use the Space or Enter key to change the image in it. For that, I try to use the keydown function as follow:

Private Sub ChestWindow_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
Select Case e.KeyCode
Case Keys.NumPad1[code]....

is the function which changes the image. It works well when I press '1' on my numeric part of the keyboard as a test.The issue is that when I press Space or Enter, the form containing the picturebox closes. (I've already put the keyPreview property to True)

View 13 Replies

Connect To SAP With VS2008?

Jun 29, 2010

I've found several articles/examples of connecting to SAP using VS03 however not with using only VS08. I understand they are working on a new connector (3.0) but need to connect now.

View 1 Replies

Debug A DLL From VS2008?

Mar 31, 2010

I have a program written in VB.Net (Visual Studio 2008) that uses a DLL written in Visual C++ by another developer. I'd like to be able to step in to the C++ code as my code makes calls to methods in the DLL. Since the DLL is it's own solution, I don't think it can be included in my solution/project. I tried putting the DLLs pdb file in the debug/bin directory with the rest of my build and pdb files. However, when I get to the point in stepping through my code, and it gets to the dll call, it just steps right over the dll code. Do I have to manually load symbols?

View 1 Replies

Having Both VS2005 And VS2008?

Jul 12, 2008

I am running on XP SP2 on my Intel C2D, and have VS 2005 on .Net 2.0 Now, can i install the new VS2008 and still have my vs2005?Can I have the both installed and still statisfy the following ?Can I have VS2005 and VS2008 on the same machineCan I do projects for Dot net 2.0on VS2005 while have VS2008 Can I have both .Net 2.0 and .Net 3.0 withouth any problem?Can I still work on my old project in native VS2005 ? Can I work on old .Net 2.0 project in the new VS2008 ?Can I Migrate some of my projects to VS2008 ? Can we also migrate .net 3.0 projects back to .Net 2.0 to work on VS 2005 ?

View 7 Replies

IDE :: Transforming Into VS2008?

Mar 3, 2009

Am currently developing web based applications using VS2005, i want to shift to VS2008, what are the things that i do have to take into consideration.

View 1 Replies

Use .hlp File In VS2008?

May 31, 2010

we are working on migration project VB6.0 to VS2008 ( Vb.NET 9.0) .In Vb6 we have .hlp file it will open appropriate help page/content when I click F1 from any of the forms. The same need to achevie in .NET 2008 . I came to know that .NET 2008 help provider will not support .hlp files. below code used in vb6

App.HelpFile -
Me.HelpContextID

View 2 Replies

VS 2008 Tell If Have VS2008 SP1 Or No SP1?

Dec 8, 2009

I had a support reply saying I needed to have VS2008 SP1 update installed. I clicked the About menu item for VS2008 and it shows SP1 under Microsoft .NET Framework Version 3.5 SP1. But on the left side for Visual Studio 2008 there is no SP1. Is the framework what they are referring to?

View 5 Replies

COMPILE VB6 Project In VS2008

Nov 2, 2010

I have a VB6 Project which I need to build in VS2008.

i tried to open vbp file in VS2008, it opened a VB Upgrade Wizard and created a new folder with in my VB6 Project Folder.

At this point I am completely stuck.

Is there anyway to build VB6 in VS2008 or Do we have any free tools to convert VB6 to VB.Net.

View 5 Replies

.net - While Debugging VB Code In VS2008?

Jul 31, 2009

On my last machine I had created a way to see a GUID variable while debugging by hovering over it. I don't remember what it was (a visualizer?). I have a new 64 bit machine with vs2008 - is there anyway to mouseover a guid value and have it appear? What makes guid's so special that their value doesn't show like most variables?

View 3 Replies

Buy VS2005 Or VS2008 Cheap?

Jan 27, 2010

I live in the UK and I want to buy the standard edition cheaply. I've seen an OEM version on eBay which the seller claims to be the full version. But it's only one a single disk and it states "Disk 1" so presumably it isn't the complete application.

View 12 Replies

Calling .exe File From VS2008?

Aug 8, 2011

I am programming in both Matlab (Matlab2011a) and Visual Basic (VS2008).I've created a .exe file from my matlab code. It works well when I click on it with my mouse. But I need to run it within Visual Basic. I know it's possible to call .exe files with Shell() or Process.Start(), and it works well for files such as firefox.exe or notepad.exe.

However, it doesn't work when I call my own .exe file ... It's weird because when I look to the Task Manager while trying to call it (within VB), I can see the process starting and ending, but its output doesn't appear.

View 4 Replies

Cannot Find AxWebbrowser In VS2008?

Jan 16, 2008

I wanna use axWebbrowser in VS2008. Is there a way of doing so?

View 7 Replies

Cannot Find Reference When Add Dll VS2008

Jan 21, 2010

I've created a dll in VS2010 with.NET Framework version 4.0 Now I want to add this dll as a reference in a 3.5 project in VS2008. When I do this I get <The System cannot find the reference specified>... does someone has a solution for this issue. When I downgrade the dll to version 3.5 I can add it as a reference and all works ok, but downgrading to 3.5 isn't an option because other dll's are depending on the 4.0 framework.

[Code]...

View 3 Replies

Cant Add New Data Source In VS2008?

Dec 19, 2007

am using visual studio 2008 professional edition and MS SQL Sever express 2005 SP2.i clicked Data then Add New Data Source choosed Database then click Nextwhen i clicked on New Connection the Data source configuration wizard disappears.

View 14 Replies

Elevated Permissions, VB, VS2008?

Aug 25, 2009

I have a project that I am testing with Windows 7, its almost complete but doesnt function without elevating the users permissions, I've tried a few of the sample codes I've found online and they don't seem to work... This has been tested on a admin account, but still requires elevated privaliges... I believe becuase it directly effects critical and non-critical windows services (starting, stopping, retreiving the status, enabling or disabling them)

[Code]...

I understand the UAC could be used to implement this "admin only" restriction, but as I havent even tried using the UAC Settings area yet. As I said, a link to helpful content would be cool, an example would be great.Running Visual Studio 2005 under a Visual Basic Environment.

View 4 Replies

How To See What References Have Been Added In VS2008

Apr 13, 2010

In the VB6 interface, when you went to Project>References, it would list all the references that have already been added to the project with a ticked box next to the name. However in VS2008, when you go to Project>Add references, the tickboxes are not there. So how do you know whether or not a reference has already been added?

View 1 Replies

Make The Move From Vb6 To Vs2008?

Apr 15, 2010

how to make the move from vb6 to vs2008 and while i was pleased to find alot of stuff intact i started migrating my lovechild project to the new enviroment. Immediately ran into a bunch of problems tho as some of the logic behind data hierarchies has changed alot it seems and its gonna take me some time to work it all out but right now id be happy if you guys could point out what im doing wrong here:

[code]...

its supposed to be your basic grab screenshot and stash it into picturebox thing but it isnt working, i did manage to copy a picture from 1 box to another tho which makes me think the second line is wrong or missing something?

View 12 Replies

Program Compiled With VS2008 On Pc With Only .NET 4.0

Apr 28, 2010

I have a program in vb.net compiled with VS2008. When I run it on a pc with only the .NET 4.0 installed, I get this error:[code]

View 11 Replies

Receiving An Email Using VS2008?

Sep 26, 2011

sample code to receive emails using VS2008 Visual Basic.



View 3 Replies

Regarding Of Vs2008 Product Running In Win 7?

Aug 10, 2010

I created a app using VS2008. It works fine in win xp but not in win 7.For example, I have code in one combobox leave method to load data into a datagridview, it failed to load. (blank).Do I need to do something in target pc which runs win 7?

View 5 Replies

Tool Disappers In The VS2008 IDE?

Aug 4, 2009

Solution configuration disappears in my vs2008 IDE. actually i have googled and got some tip that

Tools Menu -> Options ->Projects and
Solutions -> General->Show Advanced Build Configurations

this option should be checked. but stil i could n't see the solution configuration.

VS2008 details:Microsoft Visual Studio 2008 version 9.0.30729.1 sp

View 1 Replies







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