Языки

PHP
Функции  Добавить  Пользователи  Регистрация  Вход   Ресурс  Таблица ASCII  Помощь

VB.Net


1 Everything You Wanted to Know About Forms Inheritance in VB.Net

2 Concept of Inheritance

3 Visual Inheritance

4 What’s New in This Article

5 What_s New in This Article, Cont_d

6 Conclusion

Everything You Wanted to Know About Forms Inheritance in VB.Net



(Page 1 of 6 )

Learn how to take advantage of Forms Inheritance, while being introduced to certain Object Oriented approaches, in Saurabh's latest article.

A major change occurred for VB programmers when Microsoft announced that the launch of their new VB.NET was to become the successor for the Visual Basic programming language.

What VB lacks is the power of INHERITANCE, so Microsoft decided to implement inheritance in VB.NET. Every time we need a new form in our applications we create a new instance of the System.Windows.Forms.Form class, change its properties to suit our needs, place some controls and our form is ready for use.  As we know, by placing some controls onto a new form, we extend the forms class to NewForm1, meaning we have created a new class with a name NewForm1. Our new form is a class; we can extend any class due to inheritance supported in .NET.

So from this we can conclude that we can design the base form and use the base form design in all our forms:

Base Form:
Public Class PMainForm
    Inherits System.Windows.Forms.Form

Child Forms:
Public Class Child1
    Inherits PMainForm

Now we can use the Child Forms in the ways we desired. Things we can do with our child forms: override the functionality of the base form within the child form itself (i.e. using Shadows keyword in our functions in the child form – we will also see this in detail later on in this article), we can add custom properties to our base form and set them in the child forms (for controlling the controls which originally do not exist in the parent form) and anything else we’d like.


1 2 3 4 5 6
ARRA Funds Bolster Broadband Access and Improve Connectivity among Institutions to Strengthen Scientific Collaborations

Image of binary code.

Today, the National Science Foundation (NSF) announced 17 awards, totaling $20 million, through the Research Infrastructure Improvement Inter-Campus and Intra-Campus Cyber Connectivity (RII C2) program. This effort is part of the Experimental Program to Stimulate Competitive Research (EPSCoR), which supports states that have less extensive scientific infrastructures and have historically received fewer federal research dollars. Each of these awards will provide just over $1 million for ...

More at http://www.nsf.gov/news/news_summ.jsp?cntn_id=117391&WT.mc_id=USNSF_51&WT.mc_ev=click


This is an NSF News item.

English
version


Статьи
Articles


Книги
Library


Скачать
Downloads

 © Internet, books, teachers and Rudevich Alexander brains.