G-TEC COMPUTER EDUCATION CENTRE

 

Exclusive offer for Programming Courses S$1199 without project work More Info

Course Overview

  • vb.net
  • VB .NET
  • Course Overview:
  • VB.NET is one of the two most popular languages for writing .NET applications, and a logical choice if your developers already know VB6.
  • VB.NET is the first fully object-oriented programming (OOP) version of Visual Basic, and as such, supports OOP concepts such as abstraction,inheritance, polymorphism, and aggregation
  • This course presents basic programming and teaches the essential concepts of VisualBasic.net (VB.NET).
  • As an introduction to VB.NET, students will see the basic uses of the programming language, its similarities to the English language (and others), and its flexibility as a programming language. The course helps participants understand the processes involved in software development and object-oriented programming.
  • This is an introductory course that could lead to careers such as software engineer, developer, or game designer.
  • The course participants will also complete a series of hands-on projects covering built in data types, operators, control structures, classes, and objects.

We are providing courses in 3 different level, Basic, Advanced and Full Course (Basic to Advanced + Project Work).

*Please click the course name to see the details:

Basic VB.Net Programming

Objective:

The course is mainly for those who are having basic knowledge in programming. The course covers all the fundamental skills that are required to design and develop an interactive Websites in Microsoft Visual Studio .NET development environment.

VB.NET programming Basic
Fee
S$640
Duration
20hrs
Entry Requirement
Basic Computer Knowledge
Time Slot

Please call 63360244/96503505

Course Content :

Introducing .NET Framework: Common Language Runtime (CLR)

Getting Started with Visual Basic: Statement , Keywords , Operators and their Precedence Data Types ,Variables Constants , Creating a Windows Application using Visual Basic

Introduction to Windows Forms :A Windows Form in Visual Basic, Performing Some Basic Operations on a Windows Form, Working with Windows Controls, Working with Multiple Forms, Standard Controls, Message Box, Input Box

Basic Programming:Using If... Then.., Else Statement, Using For... Loop, Using Do... Loop Statement ,Using Select... Case Statement , Using While... End While Statement, Arrays.

VB.Net (Advanced)

Objective:

The objective of this course is to provide students with an understanding about building GUIs for Windows applications. The course helps participants understand the processes involved in software development and object-oriented programming. This is an introductory course that could lead to careers such as software engineer, developer, or game designer. The course covers all major language features including Menu Controls, Events, Delegates and working with Database.

VB.NET programming Advanced
Fee
S$740
Duration
20hrs
Entry Requirement
Basic VB Programming Knowledge
Time Slot

Please call 63360244/96503505

Course content:

Menus, Built-in Dialog Boxes,and Printing: Menus, Folder Browser Dialog control, Open FileDialog control, SaveFile Dialog control, Font Dialog Control, Print Document control Print Dialog control

Mouse and Keyboard events: Mouse Events, Keyboard Events

Working with Database: Basic SQL Commands, Overview of ADO.NET Objects, Accessing Data using Data Adapters and Data Sets Accessing Data using a Web Service

Deployment: Deployment using Windows Installer

Programming in .NET: Architecture of .NET Framework, Windows Workflow Foundation Windows Communication Foundation, Windows CardSpace Windows Presentation Foundation

VB.Net (Full Package)

Objective:

The objective of this course is to provide students with an understanding about VB.Net. For this course the student should familiar with the computer. This course presents basic programming and teaches the essential concepts of VisualBasic.net (VB.NET). As an introduction to VB.NET, students will see the basic uses of the programming language, its similarities to the English language (and others), and its flexibility as a programming language. The course helps participants understand the processes involved in software development and object-oriented programming. This is an introductory course that could lead to careers such as software engineer, developer, or game designer. The course participants will also complete a series of hands-on projects covering built in data types, operators, control structures, classes, and objects.

VB.NET programming Full Package
Fee
S$1350
Duration
40hrs
Entry Requirement
Basic Computer Knowledge
Time Slot

Please call 63360244/96503505

(A Project Work will gives students more fundamentals in VB Programming)

Course content

Introducing .NET Framework: Common Language Runtime (CLR)

Getting Started with Visual Basic: Statement , Keywords , Operators and their Precedence Data Types ,Variables Constants , Creating a Windows Application using Visual Basic

Introduction to Windows Forms :A Windows Form in Visual Basic, Performing Some Basic Operations on a Windows Form, Working with Windows Controls, Working with Multiple Forms, Standard Controls, Message Box, Input Box

Basic Programming: Using If... Then.., Else Statement, Using For... Loop, Using Do... Loop Statement ,Using Select... Case Statement , Using While... End While Statement, Arrays.

Menus, Built-in Dialog Boxes,and Printing: Menus, Folder Browser Dialog control, Open FileDialog control, SaveFile Dialog control, Font Dialog Control, Print Document control Print Dialog control

Mouse and Keyboard events: Mouse Events, Keyboard Events

Working with Database: Basic SQL Commands, Overview of ADO.NET Objects, Accessing Data using Data Adapters and Data Sets Accessing Data using a Web Service

Deployment:Deployment using Windows Installer

Programming in .NET: Architecture of .NET Framework, Windows Workflow Foundation Windows Communication Foundation, Windows CardSpace Windows Presentation Foundation

Course Name
Duration
Entry requirement
Fee(SGD)
VB.NET Programming (Basic)
20 hrs
Basic Computer Knowledge
640
VB.NET Programming (Advanced)
20 hrs
Basic VB Programming Knowledge
740
VB.NET Programming (Full Package with Project Work)
40 hrs
Basic Computer Knowledge
1350
Time Slot

Please call 63360244/96503505

or

mail to info.sg@gteceducation.com.

We also provides flexible timing to meet the customer's requirement,

Request For Brochure

Frequently Asked Questions

What is .NET Framework

The Microsoft .NET Framework is a software framework that can be installed on computers running Microsoft Windows operating systems. It includes a large library of coded solutions to common programming problems and a virtual machine that manages the execution of programs written specifically for the framework. The .NET Framework supports multiple programming languages in a manner that allows language interoperability, whereby each language can utilize code written in other languages; in particular, the .NET library is available to all the programming languages that .NET encompasses.

What is the difference between VB6 and VB.NET

The greatest change in VB6 and VB.NET is of runtime environment. VB6 used the VB-Runtime while VB.NET uses the .Net Common Language Runtime (.Net CLR). The CLR is much better designed and implemented than VB-Runtime. The CLR uses better code translation through Just in Time compiler while VB-Runtime interprets the code. The CLR Garbage Collector is also more efficient than VB6 one as it may detect cyclic references too.

What are the Principle design features of .NET frame work?

Interoperability

Because interaction between new and older applications is commonly required, the .NET Framework provides means to access functionality that is implemented in programs that execute outside the .NET environment.

Common Language Runtime

The Common Language Runtime (CLR) is the virtual machine component of the .NET Framework. All .NET programs execute under the supervision of the CLR, guaranteeing certain properties and behaviors in the areas of memory management, security, and exception handling.

Language Independence

The .NET Framework introduces a Common Type System, or CTS. The CTS specification defines all possible datatypes and programming constructs supported by the CLR and how they may or may not interact with each other conforming to the Common Language Infrastructure (CLI) specification. Because of this feature, the .NET Framework supports the exchange of types and object instances between libraries and applications written using any conforming .NET language.

Base Class Library

The Base Class Library (BCL), part of the Framework Class Library (FCL), is a library of functionality available to all languages using the .NET Framework.

Simplified Deployment

The .NET Framework includes design features and tools that help manage the installation of computer software to ensure that it does not interfere with previously installed software, and that it conforms to security requirements.

Security

The design is meant to address some of the vulnerabilities, such as buffer overflows, that have been exploited by malicious software. Additionally, .NET provides a common security model for all applications.

Portability

The design of the .NET Framework allows it to theoretically be platform agnostic, and thus cross-platform compatible.

What is Try-Catch-Finally Exception Handling?

Exceptions are Runtime errors that occur when an unexpected process causes the program to abort. Such kind of situations can be kept at bay using Exception Handling. By looking for potential problems in the code / entity life cycle, we can handle most of the errors that may encountered.

 

CPE Registration No: 200815354W Period: 13 October 2011 to 12 October 2015