ASCII Codes + HTML Codes and Special Characters
The table describes Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, HTML 4.01 and Latin extended A and B codes and special characters
Read More →Solutions and tutorials for IT&C development
The table describes Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, HTML 4.01 and Latin extended A and B codes and special characters
Read More →A namespace designates a collection of programming elements, organized and classed for grouping operations and easy access. At the namespace level, the programming elements include: Classes of objects […]; Structures […]; Modules […]; Interfaces […]; Delegates […]; Enumeration […]; Other namespaces. Namespaces can be organized, aggregated into an assembly […]. An assembly can contain multiple […]
Read More →The structure is a programming entity similar to classes […]. The difference is that structures are value types while classes of objects are reference types.A value type variable is declared and the space according to said data type is allocated at the execution time. Value type variable is destroyed when leaving the block where it […]
Read More →Functiile de prelucrare in matrice sunt acele functii care fac diferite operatii matematice, operatii de interschimbare, numarare, modificare, stergere, inlocuire asupra elementelor unei matrice modificând-o in cele mai multe cazuri. Toate aceste functii sunt diferite intre ele, nu numai prin ceea ce fac ele, ci si prin parametrii care ii primesc sau prin valorile returnate. […]
Read More →The comparison functions used for matrix processing are needed for finding more information about a matrix or group of matrices from the point of view of: the matrix type, its elements type or the apparition number of a key in the matrix. The function symmet checks if a matrix is a square or a symmetrical […]
Read More →Implementing an interface in VB.NET is done by specification Implements. Interfaces can be implemented by classes […] and structures […]. A class or structure can implement one or more interfaces, separated by the operator , in VB.NET. List of interfaces implemented by class/structure is given by their associated names at defining time […]. In below […]
Read More →The interface is a set of definitions of properties, methods and events. Unlike classes […], interfaces do not contain the implementation. Interfaces are implemented […] by classes, but are defined as separate entities. A class that implement an interface must implement all elements defined in that interface. Defining a VB.NET interface is achieved using the […]
Read More →Appearance of an event and transmission of its message is accomplished by specification RaiseEvent.Specification RaiseEvent is used only for events declared explicitly.Use RaiseEvent specification is exemplified in the following source code sequence developed in VB.NET:
Read More →Declaring events in a class built in VB.NET is done using Event specification. Defining event involves assigning the name and arguments providing.Because an event is included in a class, the objects defined on that class may send messages related to event – raise. Transmission is accomplished by specification RaiseEvent. Assigning the event to procedure for […]
Read More →The delegate is a pointer that allows the call of a function indirectly through its memory address. The delegate is used to call methods of other objects. It is similar to the function pointer used in other programming languages. The difference is that the delegate is a reference type on System.Delegate class. Delegates are useful […]
Read More →The event is a message sent by an object and announces the application of production a fact.Events are implemented using delegates […].For example, clicking a command button in a graphical interface causes the appearance of the event Click. The event is treated by a procedure. Events are declared in the classes, structures, modules and interfaces […]
Read More →Class is an abstract representation of an entity. The object is a concrete manifestation of a class. The object is the structure that contains data and methods of handling data. An object contains data through fields and properties:
Read More →Data types associated to the variables establish the content of data and size of areas used to store data. In VB.NET, the following data types are available for software developer:
Read More →