Visual Basic 2017: Featured

Hot

Showing posts with label Featured. Show all posts
Showing posts with label Featured. Show all posts

Monday, October 16, 2017

How to Add Item in ListBox Control from TextBox

October 16, 2017 0
First create a form similar to the picture bellow!
How to Add Item in ListBox Control

- 1 TextBox control
- 1 Button
- 1 ListBox control

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        ListBox1.Items.Add(TextBox1.Text)
    End Sub

We can polish this code by adding a code to clear the content in the TextBox control after pressing the button and focusing the TextBox.

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        ListBox1.Items.Add(TextBox1.Text)

        TextBox1.Clear()
        TextBox1.Select()
    End Sub

Probably you noticed that I used the code TextBox1.Select() to focus the cursor onto the TextBox control. This is because in Visual Basic 2017 you can't set focus on a Windows Form TextBox control.
Read More

Wednesday, October 11, 2017

Intro to Programming Using Visual Basic Coding Exercises

October 11, 2017 0

Learn VB .Net by doing programming projects for beginners

Visual Basic .net is an excellent programming language. Beginners can appreciate it’s English-like syntax, and more advanced programmers can appreciate its vast libraries and flexibility. It’s part of the .Net family of languages, and as such, it allows you to program some truly amazing solutions. So, congratulations on choosing to learn this amazing language. :-)

What Will You Learn

  • Practice and understand loops, arrays, structures, LINQ, Databases, OOP and more
  • Code beginner and intermediate projects using Visual Basic
  • Become an intermediate programmer by understanding the how and why of each line in your program
  • Think like a programmer
  • Uderstand project requirements and choose the right approach to each solution
  • Construct, identify, and use Windows Form Controls effectively

What Are The Requirements

  • Students should have installed Visual Studio in order to follow along
  • Students should be actively learning Visual Basic
  • Students should be familiar with the programming concepts presented in the exercises

Includes:

  • 14 hours on-demand video
  • 56 Supplemental Resources
  • Full lifetime access
  • Access on mobile and TV
  • Certificate of Completion



Read More

Learning Visual Basic .NET - A Guide To VB.NET Programming

October 11, 2017 3

Want to learn how to program with VB.NET? This beginners guide to programming in Visual Basic.NET will show you how.

This Visual Basic .NET ( VB.NET ) training course from InfiniteSkills.com will teach you how to program from scratch with Visual Basic.

What Will You Learn

  • Learn How To Program In VB.NET
  • A Beginners Guide To Visual Basic.NET

Requirements

  • No Prior Programming Experience Required

Includes:

  • 7 hours on-demand video
  • 1 Article
  • Full lifetime access
  • Access on mobile and TV
  • Certificate of Completion



Read More