Courses

MS Office Basic Commencing on 04 March 2024 (Classroom Training)

Autocad 2D Commencing on 16 March 2024 (Classroom Training)

Please Call/Whatsapp 96503505 for more details.

 

 

More Info
VB.NET

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

Course Name Duration Entry Requirement Fee (SGD)
VB.NET Basic 16 hrs Basic computer knowledge S$590
VB.NET Advanced 16 hrs Basic VB.NET Programming Knowledge S$640
VB.NET Full Package 32 hrs Basic Computer Knowledge S$1199

For alternate time slots, please call 63360244/96503505

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.

Course Name Duration Entry Requirement Fee (SGD)
VB.NET Basic 16 hrs Basic computer knowledge S$590
VB.NET Advanced 16 hrs Basic VB.NET Programming Knowledge S$640
VB.NET Full Package 32 hrs Basic Computer Knowledge S$1199
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

Captcha

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.