Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB source language formatting

Status
Not open for further replies.

AustinOne

Programmer
Mar 22, 2002
59
US
Is there a way in Visual Studio to have your source code in this format:
Code:
Dim dTotal      As Decimal
Dim dGrandTotal As Decimal  
Dim dCount      As Decimal
instead of:
Code:
Dim dTotal As Decimal
Dim dGrandTotal As Decimal  
Dim dCount As Decimal
?
 
Go to the menu "Tools -> Options -> Text Editor -> Basic -> VB Specific" and uncheck "Pretty listing (reformatting) of code.


Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top