<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT&#38;C Solutions &#187; Definire</title>
	<atom:link href="http://www.itcsolutions.eu/tag/definire/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itcsolutions.eu</link>
	<description>Solutions and tutorials for IT&#38;C development</description>
	<lastBuildDate>Sun, 16 Oct 2011 21:22:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to: Define Interfaces in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/23/how-to-define-interfaces-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/23/how-to-define-interfaces-in-vb-net/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 08:58:42 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Interfata]]></category>
		<category><![CDATA[Mostenire]]></category>
		<category><![CDATA[Namespace]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1419</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/23/how-to-define-interfaces-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Define Delegates in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/16/how-to-define-delegates-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/16/how-to-define-delegates-in-vb-net/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 09:24:41 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Delegat]]></category>
		<category><![CDATA[Eveniment]]></category>
		<category><![CDATA[Invocare]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1381</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/16/how-to-define-delegates-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Identify Characteristics of Events in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/16/how-to-identify-characteristics-of-events-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/16/how-to-identify-characteristics-of-events-in-vb-net/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 08:25:06 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Eveniment]]></category>
		<category><![CDATA[Handler]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1369</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/16/how-to-identify-characteristics-of-events-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Define and Use the Pointers Variables in C++</title>
		<link>http://www.itcsolutions.eu/2009/11/03/how-to-define-and-use-the-pointer-type-variables-in-c-programming-language/</link>
		<comments>http://www.itcsolutions.eu/2009/11/03/how-to-define-and-use-the-pointer-type-variables-in-c-programming-language/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 10:32:48 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Pointer]]></category>
		<category><![CDATA[Utilizare]]></category>
		<category><![CDATA[Variabila]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=780</guid>
		<description><![CDATA[The pointer type variables allow the accessing of memory areas with numerical content for the management of the values which represent memory addresses. The dimension of a pointer variable depends on the processor architecture. In the C++ programming language, the definition template of a pointer variable is: TipData *Den_VarPointer; Examples: int *pi;//pointer to int char [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/11/03/how-to-define-and-use-the-pointer-type-variables-in-c-programming-language/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Definirea si utilizarea variabilelor de tip pointer in C++</title>
		<link>http://www.itcsolutions.eu/2009/10/13/definirea-si-utilizarea-variabilelor-de-tip-pointer-in-limbajul-de-programare-c/</link>
		<comments>http://www.itcsolutions.eu/2009/10/13/definirea-si-utilizarea-variabilelor-de-tip-pointer-in-limbajul-de-programare-c/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 09:01:44 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Adresa]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Heap]]></category>
		<category><![CDATA[Memorie]]></category>
		<category><![CDATA[Operator]]></category>
		<category><![CDATA[Pointer]]></category>
		<category><![CDATA[Variabila]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=563</guid>
		<description><![CDATA[Variabilele de tip pointer permit accesarea de zone de memorie cu continut numeric pentru gestionarea valorilor ce reprezinta adrese de memorie. Dimensiunea unei variabile pointer depinde de arhitectura procesorului. In limbajul de programare C++, sablonul de definire a unei variabile pointer este: TipData *Den_VarPointer; Exemple: int *pi;//pointer la tipul int char **ppc;//pointer la tipul char* [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/10/13/definirea-si-utilizarea-variabilelor-de-tip-pointer-in-limbajul-de-programare-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Definirea relatiilor intre tabelele unei baze de date in VB.NET</title>
		<link>http://www.itcsolutions.eu/2009/07/10/definirea-relatiilor-intre-tabelele-unei-baze-de-date-in-vbnet/</link>
		<comments>http://www.itcsolutions.eu/2009/07/10/definirea-relatiilor-intre-tabelele-unei-baze-de-date-in-vbnet/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 08:33:20 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Baza de date]]></category>
		<category><![CDATA[Camp]]></category>
		<category><![CDATA[Cheie externa]]></category>
		<category><![CDATA[Cheie primara]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Relatie]]></category>
		<category><![CDATA[Structura]]></category>
		<category><![CDATA[Tabel]]></category>
		<category><![CDATA[Valoare]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=442</guid>
		<description><![CDATA[Se considera tabelul ANGAJATI cu structura definita la [...]. Tabelul este inclus intr-o baza de date construita in VB.NET la [...], avand denumirea Ang. Definirea unei relatii intre tabelele bazei de date presupune existenta a cel putin doua tabele. In baza de date Angajati.sdf, se adauga tabelul AccessAng prin care se defineste tipul de acces [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/07/10/definirea-relatiilor-intre-tabelele-unei-baze-de-date-in-vbnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Define and Access a Variable in VB.NET</title>
		<link>http://www.itcsolutions.eu/2009/07/07/how-to-define-and-access-a-variable-in-vbnet/</link>
		<comments>http://www.itcsolutions.eu/2009/07/07/how-to-define-and-access-a-variable-in-vbnet/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 09:32:29 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Acces]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Expresie]]></category>
		<category><![CDATA[Masiv]]></category>
		<category><![CDATA[Memorie]]></category>
		<category><![CDATA[Obiect]]></category>
		<category><![CDATA[Referire]]></category>
		<category><![CDATA[Tip de date]]></category>
		<category><![CDATA[Variabila]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=414</guid>
		<description><![CDATA[A variable corresponds to a location of memory, which stores values when performing calculations. Variables are used in calculations, comparisons. They have established a name in the source program, and accessing the value stored in memory location is achieved by variable name. In VB.NET, a variable has an associated data type [...], without being required [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/07/07/how-to-define-and-access-a-variable-in-vbnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Definirea enumerarilor in VB.NET</title>
		<link>http://www.itcsolutions.eu/2009/06/25/definirea-enumerarilor-in-vbnet/</link>
		<comments>http://www.itcsolutions.eu/2009/06/25/definirea-enumerarilor-in-vbnet/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 10:01:53 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Camp]]></category>
		<category><![CDATA[Clasa de obiecte]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Constanta]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Enumerare]]></category>
		<category><![CDATA[Modul]]></category>
		<category><![CDATA[Referire]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=325</guid>
		<description><![CDATA[Enumerarile ofera un mod avantajos de lucru cu multimi de constante sau asocierea valorilor constante cu denumiri de constante. Enumerarile sunt tratate ca tipuri de date si sunt utilizate pentru a crea multimi de constante. Avantaje ale utilizarii enumerarilor: reducerea erorilor de introducere a valorilor numerice in cod sursa; schimbarea usoara a valorii constante in [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/06/25/definirea-enumerarilor-in-vbnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Definirea procedurilor de tip proprietate in VB.NET</title>
		<link>http://www.itcsolutions.eu/2009/06/25/definirea-procedurilor-de-tip-proprietate-in-vbnet/</link>
		<comments>http://www.itcsolutions.eu/2009/06/25/definirea-procedurilor-de-tip-proprietate-in-vbnet/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 09:10:43 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Invocare]]></category>
		<category><![CDATA[Modul]]></category>
		<category><![CDATA[Procedura]]></category>
		<category><![CDATA[Proprietate]]></category>
		<category><![CDATA[Referire]]></category>
		<category><![CDATA[Structura]]></category>
		<category><![CDATA[Variabila]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=314</guid>
		<description><![CDATA[In VB.NET, procedura proprietate reprezinta secventa de cod sursa de manipulare a unei caracteristici intr-un modul [...], clasa de obiecte [...] sau structura [...]. VB.NET pune la dispozitie urmatoarele proceduri de tip proprietate: Get: returneaza valoarea caracteristicii; caracteristica este accesata printr-o expresie; Set: stabileste valoarea caracteristicii, incluzand referinta de obiect; este invocata pentru atribuirea unei [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/06/25/definirea-procedurilor-de-tip-proprietate-in-vbnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Definirea modulelor in VB.NET</title>
		<link>http://www.itcsolutions.eu/2009/06/24/definirea-modulelor-in-vbnet/</link>
		<comments>http://www.itcsolutions.eu/2009/06/24/definirea-modulelor-in-vbnet/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 11:22:22 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Clasa de obiecte]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Definire]]></category>
		<category><![CDATA[Modul]]></category>
		<category><![CDATA[Procedura]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=295</guid>
		<description><![CDATA[Un modul reprezinta unul dintre elementele de programare care contin cod sursa ce urmeaza a fi compilat si executat. Un element similar de programare este clasa de obiecte [...]. Spre deosebire de modul, clasa de obiecte poate fi adaptata cerintelor particulare ale dezvoltatorilor prin implementarea mostenirii. Modulul este implementat cu ajutorul specificatiilor Module si End [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2009/06/24/definirea-modulelor-in-vbnet/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

