Nov 15, 2005 #1 AustinOne Programmer Joined Mar 22, 2002 Messages 59 Location 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 ?
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 ?
Nov 16, 2005 #2 Ruffnekk Programmer Joined Aug 2, 2005 Messages 249 Location DE 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? Upvote 0 Downvote
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?
Nov 29, 2005 Thread starter #3 AustinOne Programmer Joined Mar 22, 2002 Messages 59 Location US Thanks! Upvote 0 Downvote