Visual Basic.NET Programming. Beginner Lesson 2. Customise The Visual Studio IDE

Share

Summary

This video, aimed at beginners in Visual Basic.NET programming, demonstrates how to customize the Visual Studio Integrated Development Environment (IDE). It covers opening existing projects, avoiding common pitfalls with code generation, and personalizing the IDE's appearance, including themes, font colors, and file locations.

Highlights

Opening a Visual Studio Project
00:00:05

The video begins by showing how to open an existing Visual Studio project. It highlights using the 'recent files' list or navigating to the project's solution file (.sln) which ties together all files in an application.

Warning: Auto-generated Code and Form Load Events
00:01:15

A warning is given about accidentally double-clicking on the form background, which generates a 'Form1_Load' procedure stub. While this code runs when the application starts, beginners are advised to delete it if not needed to avoid confusion. Another warning is provided about the daunting auto-generated code, which initializes the form and its components; beginners are strongly advised to leave this code untouched.

Customizing Visual Studio IDE Theme
00:02:43

The video moves on to customizing the IDE's appearance by accessing 'Tools > Options'. It demonstrates changing the color theme from blue to dark, noting it's a matter of personal preference.

Adjusting Fonts and Colors
00:03:27

Further customization of the IDE's look and feel is shown by selecting 'Fonts and Colors' within the options. This allows for finer control over keyword colors, text colors, and font sizes. A caution is provided as some colors have special meanings, and indiscriminate changes can make the code messy.

Disabling Line Numbers and Changing Default Project Locations
00:04:27

To free up screen space, the video demonstrates how to switch off line numbers in the text editor (Tools > Options > Text Editor > All Languages > Line numbers). Finally, it shows how to change default file locations for projects and solutions under 'Projects and Solutions > Locations', emphasizing that many other customizable options exist.

Recently Summarized Articles

Loading...