<?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</title>
	<atom:link href="http://www.itcsolutions.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itcsolutions.eu</link>
	<description>Solutions and tutorials for IT&#38;C development</description>
	<lastBuildDate>Thu, 18 Mar 2010 08:48:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to: Transmit the Message Assigned to an Event Defined in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/18/how-to-transmit-the-message-assigned-to-an-event-defined-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/18/how-to-transmit-the-message-assigned-to-an-event-defined-in-vb-net/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 08:46:21 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Eveniment]]></category>
		<category><![CDATA[Handler]]></category>
		<category><![CDATA[Procedura]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1395</guid>
		<description><![CDATA[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:


Module Module1
&#160;
'defining event handler 
Public Sub OpDiferenta(ByVal a As Integer, ByVal b As Integer)
    Dim dif As Integer
 [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/18/how-to-transmit-the-message-assigned-to-an-event-defined-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Define Events in Classes Built in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/18/how-to-define-events-in-classes-built-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/18/how-to-define-events-in-classes-built-in-vb-net/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 08:24:41 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Clasa de obiecte]]></category>
		<category><![CDATA[Eveniment]]></category>
		<category><![CDATA[Handler]]></category>
		<category><![CDATA[Procedura]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1390</guid>
		<description><![CDATA[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 &#8211; raise. Transmission is accomplished by specification RaiseEvent. Assigning the event to procedure for [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/18/how-to-define-events-in-classes-built-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.popa</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 in [...]]]></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.popa</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 and interfaces using [...]]]></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 a Class in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/09/how-to-define-a-class-in-vb-net/</link>
		<comments>http://www.itcsolutions.eu/2010/03/09/how-to-define-a-class-in-vb-net/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 09:54:15 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Camp]]></category>
		<category><![CDATA[Clasa de obiecte]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Constructor]]></category>
		<category><![CDATA[Destructor]]></category>
		<category><![CDATA[Metoda]]></category>
		<category><![CDATA[Obiect]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1356</guid>
		<description><![CDATA[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:


Field: stores data and is similar to a variable;
Property: retrieves and changes the value of a field with [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/09/how-to-define-a-class-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Use Data Types to Define Variables in VB.NET</title>
		<link>http://www.itcsolutions.eu/2010/03/09/how-to/</link>
		<comments>http://www.itcsolutions.eu/2010/03/09/how-to/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 09:01:25 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Memorie]]></category>
		<category><![CDATA[Tip de date]]></category>
		<category><![CDATA[Valoare]]></category>
		<category><![CDATA[Variabila]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1348</guid>
		<description><![CDATA[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:


Boolean: True/False values; memory area size varies depending on platform implementation;
Byte: unsigned integer values; a variable of Byte type refers to a memory area of 1 [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/03/09/how-to/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Transform a Mathematical Expression from Infix Writing to Postfix Writing in C++</title>
		<link>http://www.itcsolutions.eu/2010/02/28/how-to-transform-a-mathematical-expressions-from-infix-writing-to-postfix-writing-in-c-programming-language/</link>
		<comments>http://www.itcsolutions.eu/2010/02/28/how-to-transform-a-mathematical-expressions-from-infix-writing-to-postfix-writing-in-c-programming-language/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 10:05:56 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Aplicatie]]></category>
		<category><![CDATA[Conversie]]></category>
		<category><![CDATA[Scriere infixata]]></category>
		<category><![CDATA[Scriere postfixata]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1301</guid>
		<description><![CDATA[Postfix writing (Reverse Polish Form) was made by Polish mathematician Jan Łukasiewicz. Particularities of this form of writing mathematical expressions are presented in [...].
An algorithm for transforming a writing mathematical expressions from infix to postfix writing was developed by Edsger Dijkstra (Dijkstra Shunting Algorithm).

Algorithm requires:

Use a stack type structure [...] in which are stored temporarily [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/02/28/how-to-transform-a-mathematical-expressions-from-infix-writing-to-postfix-writing-in-c-programming-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Evaluate a Mathematical Expression in Postfix Writing in C++</title>
		<link>http://www.itcsolutions.eu/2010/02/28/evaluation-of-a-mathematical-expression-in-postfix-writing-in-c-programming-language/</link>
		<comments>http://www.itcsolutions.eu/2010/02/28/evaluation-of-a-mathematical-expression-in-postfix-writing-in-c-programming-language/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 09:03:53 +0000</pubDate>
		<dc:creator>marius.popa</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Cod sursa]]></category>
		<category><![CDATA[Evaluare]]></category>
		<category><![CDATA[Expresie]]></category>
		<category><![CDATA[Scriere postfixata]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1285</guid>
		<description><![CDATA[Postfix writing  [...] is a form of representation of mathematical expressions in which arithmetic operatorsare written specified by operands.
Advantages of postfix writing over prefix and infix writing:

Highlights clear policy of making operations;
Brackets for forcing priority for implementing operators are not necessary;
Evaluations are easily performed by computer.


Algorithm for evaluation of an expression in postfix writing [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/02/28/evaluation-of-a-mathematical-expression-in-postfix-writing-in-c-programming-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Librarie de functii si proceduri pentru lucru cu matrici (masive bidimensionale) in limbajul C si C++ &#8211; Citire si Afisare</title>
		<link>http://www.itcsolutions.eu/2010/02/06/librarie-de-functii-si-proceduri-pentru-lucru-cu-matrici-masive-bidimensionale-in-limbajul-c-si-c-citire-si-afisare/</link>
		<comments>http://www.itcsolutions.eu/2010/02/06/librarie-de-functii-si-proceduri-pentru-lucru-cu-matrici-masive-bidimensionale-in-limbajul-c-si-c-citire-si-afisare/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 14:52:55 +0000</pubDate>
		<dc:creator>catalin.boja</dc:creator>
				<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[matrice]]></category>
		<category><![CDATA[Structura]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1273</guid>
		<description><![CDATA[Pentru realizarea calculului matriceal este necesara existenta matricei sau matricelor. Crearea necorespunzatoare a obiectului de lucru, si anume matricea, duce la efecte total neasteptate. De aceea, pentru a fi lipsiti de neplaceri, atentia acordata acestor functii este maxima.

In calculul matriceal sunt incluse si functii de intrare si iesire. Aceste functii realizeaza:



crearea matricei, fie de la [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/02/06/librarie-de-functii-si-proceduri-pentru-lucru-cu-matrici-masive-bidimensionale-in-limbajul-c-si-c-citire-si-afisare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C and C++ library of functions and procedures for matrix (bidimensional arrays) processing &#8211; Read and Write functions</title>
		<link>http://www.itcsolutions.eu/2010/02/06/c-and-c-library-of-functions-and-procedures-for-matrix-bidimensional-arrays-read-and-write-functions/</link>
		<comments>http://www.itcsolutions.eu/2010/02/06/c-and-c-library-of-functions-and-procedures-for-matrix-bidimensional-arrays-read-and-write-functions/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 13:07:40 +0000</pubDate>
		<dc:creator>catalin.boja</dc:creator>
				<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.itcsolutions.eu/?p=1259</guid>
		<description><![CDATA[To realize a real computation of matrices it must exist in the first place the matrix or the matrices. Having created an inadequate object for work with it, the results would be unexpected. Therefore we must pay the necessary attention to those functions that are creating a matrix. In this way we won&#8217;t have any [...]]]></description>
		<wfw:commentRss>http://www.itcsolutions.eu/2010/02/06/c-and-c-library-of-functions-and-procedures-for-matrix-bidimensional-arrays-read-and-write-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
