<?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>Κατασκευή Ιστοσελίδων, Search Engine Optimization - WebPixel</title>
	<atom:link href="http://www.webpixel.gr/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webpixel.gr</link>
	<description></description>
	<lastBuildDate>Thu, 24 Nov 2011 10:00:01 +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>Programmatically set connection string for Entity-Framework Code-First</title>
		<link>http://www.webpixel.gr/blog/net-blog/programmatically-set-the-connection-string-for-entity-framework-code-first</link>
		<comments>http://www.webpixel.gr/blog/net-blog/programmatically-set-the-connection-string-for-entity-framework-code-first#comments</comments>
		<pubDate>Thu, 24 Nov 2011 09:48:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ado.net]]></category>
		<category><![CDATA[ef-code-first]]></category>
		<category><![CDATA[entity-framework]]></category>
		<category><![CDATA[sql server ce]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=360</guid>
		<description><![CDATA[In my latest project I had to create desktop appllication with local data stotarage.  I&#8217;ve decided to go with WPF, C#,  Entity-Framework 4,2 Code-First approach and CQL CE 4.0 as my primary database. One of the reqirement were that the user could create seperate database file per new project.  EF Code First uses a default convention [...]]]></description>
			<content:encoded><![CDATA[<p>In my latest project I had to create desktop appllication with local data stotarage.  I&#8217;ve decided to go with WPF, C#,  Entity-Framework 4,2 Code-First approach and CQL CE 4.0 as my primary database.</p>
<p>One of the reqirement were that the user could create seperate database file per new project.  EF Code First uses a default convention where context classes will look for a connection-string that matches the DbContext class name. Normally you&#8217;d point to our SQL CE database  by adding the below to the app.config file.</p>
<p><span id="more-360"></span></p>
<pre class="brush: actionscript3; gutter: true; first-line: 1"><?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
    <add name="NerdDinners"
         connectionString="Data Source=|App_Data|NerdDinners.sdf"
         providerName="System.Data.SqlServerCe.4.0"/>
  </connectionStrings>
</configuration></pre>
<p>Above we are configuring our connection-string to use SQL CE as the database, and telling it that our SQL CE database file will live within the \App_Data directory of our project.</p>
<p>To set the above the connection string Programmatically we are going to use <em>SqlCeConnectionFactory </em>as following:</p>
<pre class="brush: csharp; gutter: true; first-line: 1">Database.DefaultConnectionFactory =
            new System.Data.Entity.Infrastructure.SqlCeConnectionFactory (
            "System.Data.SqlServerCe.4.0",
            @"C:\Visual Studio 2010\Projects",
            @"Data Source=C:Visual Studio 2010\Projects\DbFile.sdf");</pre>
<p>The syntax of the SqlCeConnectionFactory is :</p>
<pre class="brush: csharp; gutter: true; first-line: 1">public SqlCeConnectionFactory(
            string providerInvariantName,
            string databaseDirectory,
            string baseConnectionString)</pre>
<p><strong>Parameters</strong></p>
<p><em>providerInvariantName</em></p>
<p style="padding-left: 30px;">Type: System.String</p>
<p style="padding-left: 30px;">The provider invariant name that specifies the version of SQL Server Compact Edition that should be used.</p>
<p><em>databaseDirectory</em></p>
<p style="padding-left: 30px;">Type: System.String</p>
<p style="padding-left: 30px;">The path to prepend to the database name that will form the file name used by SQL Server Compact Edition when it creates or reads the database file. An empty string wil result in SQL Server Compact Edition using its default location as the database file location.</p>
<p><em>baseConnectionString</em></p>
<p style="padding-left: 30px;">Type: System.String</p>
<p style="padding-left: 30px;">The connection string to use for options to the database other than the &#8216;Data Source&#8217;. The Data Source will be prepended to this string based on the database name when CreateConnection is called.</p>
<p>&nbsp;</p>
<p>You can make your own strategies for creating databases, based on what&#8217;s going on with the model, if it&#8217;s changed, etc. Here&#8217;s some built-in examples. Yours can do whatever you like. Here the InitializeYourData is the DbContext.</p>
<pre class="brush: csharp; gutter: true; first-line: 1">//This is the default strategy.  It creates the DB only if it doesn't exist
Database.SetInitializer(new CreateDatabaseOnlyIfNotExists());

//Recreates the DB if the model changes but doesn't insert seed data.
Database.SetInitializer(new RecreateDatabaseIfModelChanges());

//Strategy for always recreating the DB every time the app is run.
Database.SetInitializer(new AlwaysRecreateDatabase());</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/net-blog/programmatically-set-the-connection-string-for-entity-framework-code-first/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrate Doctrine 2.0.1 with Zend Framework 1.11.x</title>
		<link>http://www.webpixel.gr/blog/zend-framework/integrate-doctrine-2-0-1-with-zend-framework-1-11-x</link>
		<comments>http://www.webpixel.gr/blog/zend-framework/integrate-doctrine-2-0-1-with-zend-framework-1-11-x#comments</comments>
		<pubDate>Wed, 24 Aug 2011 14:03:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Doctrine 2]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=310</guid>
		<description><![CDATA[This tutorial is for developers who want to better understand the MVC pattern, and for those who wish to use and learn more about integration of Zend Framework with Doctrine 2.0.1. Prerequisites This tutorial assumes that you are familiar with PHP. If you’re not, check out the Resources to find the “Learning PHP” tutorial series. [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial is for developers who want to better understand the MVC pattern, and for those who wish to use and learn more about integration of Zend Framework with Doctrine 2.0.1.</p>
<p><span id="more-310"></span></p>
<h3>Prerequisites</h3>
<p>This tutorial assumes that you are familiar with PHP. If you’re not, check out the Resources to find the “Learning PHP” tutorial series. You should also have basic familiarity with how databases work, but you don’t need to be an expert in the use of SQL.</p>
<h3>System requirements</h3>
<p>To follow along, you will need to have several pieces of software installed. This tutorial will cover installation and configuration, but make sure to download the following:</p>
<ul>
<li><strong>XAMPP</strong> <strong>on Windows</strong> is an easy-to-install version of Apache, MySQL, and PHP rolled into one. The version used for this tutorial (V1.7.4) contains Apache V2.2.14, PHP V5.3.5, and MySQL V5.1.41.</li>
<li><strong>Zend Framework</strong>: This tutorial was tested with V1.11.10. I presume that you already set up your environment</li>
<li><strong>Doctrine 2.0.1 </strong>which can be downloaded on the <a href="http://www.doctrine-project.org/projects/orm/download">Doctrine ORM’s download page</a><strong><br /></strong></li>
</ul>
<h2>1. Set up your Zend Project</h2>
<p>Fire up a command line <strong>cmd</strong> tool and navigate to your <strong>htdocs</strong> folder by typing the following lines:</p>
<pre class="brush: actionscript3; gutter: true; first-line: 1">cd C:\xampp\htdocs
zf create project zenddoctrine</pre>
<p>(where zenddoctrine your project name)</p>
<p>If everything went OK you will have created a default Zend application project folder :</p>
<pre class="brush: php; gutter: true; first-line: 1">C:\xampp\htdocs\zenddoctrine</pre>
<h2>2. Adding necessary libraries</h2>
<p>Copy to the <em>C:\xampp\htdocs\zenddoctrine\library</em> from the default Zend installation the <em>Zend</em> folder</p>
<p>Copy to the <em>C:\xampp\htdocs\zenddoctrine\library</em> from the default Doctrine installation the <em>Doctrine</em> folder</p>
<p>Copy to the <em>C:\xampp\htdocs\zenddoctrine\</em> from the default Doctrine installation the <em>bin</em> folder</p>
<p>You&#8217;ll the have created the following structure now:</p>
<pre class="brush: php; gutter: true; first-line: 1">C:\xampp\htdocs\zenddoctrine\library\Zend
C:\xampp\htdocs\zenddoctrine\library\Doctrine
C:\xampp\htdocs\zenddoctrine\lib</pre>
<h2> 3. Modify the configuration file</h2>
<p> In this tutorial we will integrate Doctrine using MySQL as database engine. The config settings might be different for other engines or when you use different database interfaces. However, we open the application/configs/application.ini of our project and insert the following lines into the [production] block of the ini file.</p>
<pre class="brush: php; gutter: true; first-line: 1">doctrine.conn.host = '127.0.0.1'
doctrine.conn.user = 'root'
doctrine.conn.pass = ''
doctrine.conn.driv = 'pdo_mysql'
doctrine.conn.dbname = 'app'
doctrine.path.models = APPLICATION_PATH "/models"</pre>
<p>At this point, you have to fill in your personal database connection settings. These might be completely different from the ones shown here. You should also adjust the database driver now, when you don’t want to use MySQL.</p>
<h3>4. Modify the Bootstrapping file</h3>
<p>Now comes the fun part. We have to load all the Doctrine libraries and set them up correctly. To do that, we open the <em>application/Bootstrap.php</em> file of our project and fill it with the required functions. I will first post the whole file here and explain it below.</p>
<pre class="brush: php; gutter: true; first-line: 1">
&lt;?php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    /**
     * generate registry
     * @return Zend_Registry
     */
    protected function _initRegistry(){
        $registry = Zend_Registry::getInstance();
        return $registry;
    }

    /**
     * Register namespace Default_
     * @return Zend_Application_Module_Autoloader
     */
    protected function _initAutoload()
    {
        $autoloader = new Zend_Application_Module_Autoloader(array(
            'namespace' => 'Default_',
            'basePath'  => dirname(__FILE__),
        ));
        return $autoloader;
    }

    /**
     * Initialize Doctrine
     * @return Doctrine_Manager
     */
    public function _initDoctrine() {
        // include and register Doctrine's class loader
        require_once('Doctrine/Common/ClassLoader.php');
        $classLoader = new \Doctrine\Common\ClassLoader(
            'Doctrine',
            APPLICATION_PATH . '/../library/'
        );
        $classLoader->register();

        // create the Doctrine configuration
        $config = new \Doctrine\ORM\Configuration();

        // setting the cache ( to ArrayCache. Take a look at
        // the Doctrine manual for different options ! )
        $cache = new \Doctrine\Common\Cache\ArrayCache;
        $config->setMetadataCacheImpl($cache);
        $config->setQueryCacheImpl($cache);

        // choosing the driver for our database schema
        // we'll use annotations
        $driver = $config->newDefaultAnnotationDriver(
            APPLICATION_PATH . '/models'
        );
        $config->setMetadataDriverImpl($driver);

        // set the proxy dir and set some options
        $config->setProxyDir(APPLICATION_PATH . '/models/Proxies');
        $config->setAutoGenerateProxyClasses(true);
        $config->setProxyNamespace('App\Proxies');

        // now create the entity manager and use the connection
        // settings we defined in our application.ini
        $connectionSettings = $this->getOption('doctrine');
        $conn = array(
            'driver'    => $connectionSettings['conn']['driv'],
            'user'      => $connectionSettings['conn']['user'],
            'password'  => $connectionSettings['conn']['pass'],
            'dbname'    => $connectionSettings['conn']['dbname'],
            'host'      => $connectionSettings['conn']['host']
        );
        $entityManager = \Doctrine\ORM\EntityManager::create($conn, $config);

        // push the entity manager into our registry for later use
        $registry = Zend_Registry::getInstance();
        $registry->entitymanager = $entityManager;

        return $entityManager;
    }

}
</pre>
<h2>5. Prepare the command line tool</h2>
<p>Simply copy the following code into <em><em>C:\xampp\htdocs\zenddoctrine\</em>bin\doctrine.php</em> replacing all of the code already in the file.</p>
<pre class="brush: php; gutter: true; first-line: 1">
&lt;?php

define('APPLICATION_ENV', 'development');

define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    get_include_path(),
)));

// Doctrine and Symfony Classes
require_once 'Doctrine/Common/ClassLoader.php';
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', APPLICATION_PATH . '/../library');
$classLoader->register();
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', APPLICATION_PATH . '/../library/Doctrine');
$classLoader->register();
$classLoader = new \Doctrine\Common\ClassLoader('Entities', APPLICATION_PATH . '/models');
$classLoader->setNamespaceSeparator('_');
$classLoader->register();

// Zend Components
require_once 'Zend/Application.php';

// Create application
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/configs/application.ini'
);

// bootstrap doctrine
$application->getBootstrap()->bootstrap('doctrine');
$em = $application->getBootstrap()->getResource('doctrine');

// generate the Doctrine HelperSet
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
    'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
    'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
));

\Doctrine\ORM\Tools\Console\ConsoleRunner::run($helperSet);
</pre>
<h2>Testing your setup</h2>
<p>That&#8217;s it you can test your setup already. We create a file <em>application/models/Test.php</em> and fill it with the following code:</p>
<pre class="brush: php; gutter: true; first-line: 1">
&lt;?php

/**
 * @Entity
 * @Table(name="test123")
 */
class Default_Model_Test
{
    /**
     * @Id @Column(type="integer")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;

    /** @Column(type="string") */
    private $name;

    public function setName($string) {
        $this->name = $string;
        return true;
    }
}
</pre>
<p>As you see, we want a models with the fields id and name, id being an integer and auto_incremented and name being a string. The table name is set to test123. As you can see, an Entity is nothing more than a PHP class with some members and methods. Only the definitions for how Doctrine should build the table have to be given in the annotations. You could as well use YAML or XML files to define these.</p>
<p>Replace the content of your application/controllers/IndexController.php with the following:</p>
<pre class="brush: php; gutter: true; first-line: 1">
&lt;?php

class IndexController extends Zend_Controller_Action
{
    public function init()
    {
        $registry = Zend_Registry::getInstance();
        $this->_em = $registry->entitymanager;
    }

    public function indexAction()
    {
        $testEntity = new Default_Model_Test;
        $testEntity->setName('Zaphod Beeblebrox');
        $this->_em->persist($testEntity);
        $this->_em->flush();
    }

}
</pre>
<p>This is just some quick and dirty dummy code to check if everything works. We get our EntityManager out of the registry and save it as a member of the Controller. We then create a new model (Entity), set the name and by using the EntityManager‘s persist method, we save it. EntityManager->flush() actually invokes the database action and the row should occur in our table. Test this by simply browse to your project in your favourite webbrowser. If everything worked fine, the table should now have one entry with the name Zaphod Beeblebrox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/zend-framework/integrate-doctrine-2-0-1-with-zend-framework-1-11-x/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Zend Quickstart Tutorial with MySql</title>
		<link>http://www.webpixel.gr/blog/zend-quickstart-tutorial</link>
		<comments>http://www.webpixel.gr/blog/zend-quickstart-tutorial#comments</comments>
		<pubDate>Mon, 22 Aug 2011 10:23:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=139</guid>
		<description><![CDATA[After reading a "Quickstart" tutorial from the Zend Framework manual and rather frustrating comments from newby users I decided to share with you, a rewrite tutorial with MySQL to help you and me to get better understanding of this fantastic framework.]]></description>
			<content:encoded><![CDATA[<p>Hi to you all,</p>
<p>After reading a &#8220;Quickstart&#8221; tutorial from the Zend Framework manual and rather frustrating comments from newby users I decided to share with you, a rewrite tutorial with MySQL as a primer database to help you and me to get better understanding of this fantastic framework.<span id="more-139"></span></p>
<p>Bellow you&#8217;ll find steps taken to complete this tutorial:</p>
<ol>
<li><a title="Create Zend Project" href="zend-quickstart-tutorial/2">Create Zend project</a></li>
<li><a title="Create Zend Model" href="zend-quickstart-tutorial/3">Create a Model and Database Table</a></li>
<li><a title="Create Zend Controller" href="zend-quickstart-tutorial/4">Create Zend Controller</a></li>
<li><a title="Create Zend Layout" href="zend-quickstart-tutorial/5">Create A Layout</a></li>
<li><a title="Create Zend Form" href="zend-quickstart-tutorial/6">Create A Form</a></li>
<li><a title="The End" href="zend-quickstart-tutorial/6">Congratulations</a></li>
</ol>
<h2>Before you start</h2>
<p>This tutorial is for developers who want to better understand the MVC pattern, and for those who wish to use and learn more about the Zend Framework. You&#8217;ll see how to use the Zend_Controller, Zend_View, Zend_Form, and Zend_Db components as the building blocks of your web application.</p>
<h3>Prerequisites</h3>
<p>This tutorial assumes that you are familiar with PHP. If you&#8217;re not, check out the Resources to find the &#8220;Learning PHP&#8221; tutorial series. You should also have basic familiarity with how databases work, but you don&#8217;t need to be an expert in the use of SQL.</p>
<h3>System requirements</h3>
<p>To follow along, you will need to have several pieces of software installed. This tutorial will cover installation and configuration, but make sure to download the following:</p>
<ul>
<li><strong>XAMPP</strong> is an easy-to-install version of Apache, MySQL, and PHP rolled into one. The version used for this tutorial (V1.7.3) contains Apache V2.2.14, PHP V5.3.1, and MySQL V5.1.41.</li>
<li><strong>Zend Framework</strong>: This tutorial was tested with V1.11.10.</li>
</ul>
<h2>Disecting the application</h2>
<p>I am going to use an XAMPP on Windows installation therefore it might not work out of the box for Mac Users. Bear in mind that I am not using an sqlite but <span style="text-decoration: underline;">MySql</span> database therefore some section will be skipped from the official guide. This is how our application should look like at the end of the tutorial.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.webpixel.gr/wp-content/uploads/quickstart.create-model.png"><img class="size-full wp-image-222 aligncenter" title="Zend quickstart application" src="http://www.webpixel.gr/wp-content/uploads/quickstart.create-model.png" alt="Zend quickstart application" width="525" height="234" /></a></p>
<p>&nbsp;</p>
<p>From the above image we can assume that our application consist of Guestbook controller were the Index action generate the list of Guestbook Entries and SingUp action where users will wrire their posts and wich consist of Zend Form. Under the hood we will have MySql database table (guestbook) wich will be updated through Zend_model. The layout of our application will be handeled through Zend_Layout. </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/zend-quickstart-tutorial/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Installation Zend Framework on XAMPP</title>
		<link>http://www.webpixel.gr/blog/zend-framework-on-xampp</link>
		<comments>http://www.webpixel.gr/blog/zend-framework-on-xampp#comments</comments>
		<pubDate>Wed, 29 Jun 2011 13:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=124</guid>
		<description><![CDATA[I've decided to test several PHP frameworks and decide which is best for me and my applications. During my test of Zend Framework and run through novice tutorial.]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve decided to test several PHP frameworks in order to choose the best for me and my applications. During my test of Zend Framework and run through novice tutorial I faced several problems, one of which was the command line &#8220;<em>zf enable layout </em>&#8221; not working. It appears that XAMPP installation have an outdated Zend library in the /path_to_php/PEAR/ZEND.<span id="more-124"></span></p>
<p>I am using XAMPP and Windows XP as development environtment.</p>
<h2>zf enable layout</h2>
<p>The solution to that problem was the following:</p>
<p>Lets asume that you installed xampp php in C:\xampp\php and you have the latest Zend Framework in C:\ZendFramework-1.10.3<br />
<strong>Step 1: </strong>Copy(Overwrite) the files zf.bat and zf.php from C:\ZendFramework-1.10.3\bin\ to C:\xampp\php<br />
<strong>Step 2: </strong>Remove C:\xampp\php\PEAR\ZEND\<br />
<strong>Step 3: </strong>Copy C:\ZendFramework-1.10.3\library\Zend to C:\xampp\php\PEAR\<br />
<strong>Step 4: </strong>run this on command line (cmd): path = %PATH%;C:\xampp\php</p>
<h2>zf configure db-adapter</h2>
<p>If you are trying to create a model and database table with an &#8220;<em>zf configure db-adapter</em>&#8221; or everything related with that, then you will find out that snippet provided in Zend documentation simply doesn&#8217;t work. The correct syntax is:</p>
<blockquote><p>zf configure db-adapter &#8220;adapter=PDO_SQLITE&amp;dbname=APPLICATION_PATH \&#8221;/../data/db/guestbook.db\&#8221;" -s production<br />
zf configure db-adapter &#8220;adapter=PDO_SQLITE&amp;dbname=APPLICATION_PATH \&#8221;/../data/db/guestbook-testing.db\&#8221;" -s testing<br />
zf configure db-adapter &#8220;adapter=PDO_SQLITE&amp;dbname=APPLICATION_PATH \&#8221;/../data/db/guestbook-dev.db\&#8221;" -s development</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/zend-framework-on-xampp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accountant Demo</title>
		<link>http://www.webpixel.gr/blog/accountant-demo</link>
		<comments>http://www.webpixel.gr/blog/accountant-demo#comments</comments>
		<pubDate>Fri, 25 Mar 2011 07:54:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=118</guid>
		<description><![CDATA[Το σγκεκριμένο demo αφορα μια εφαρμογή έκδοσης &#8211; επεξεργασίας- αποθήκευσης τιμολογίων σε C#, WinForm .NET3.5. Δεν χρειάζεται εγκατάσταση, απλά εκτελέστε το Accountant_Demo.exe accountant demo]]></description>
			<content:encoded><![CDATA[<p>Το σγκεκριμένο demo αφορα μια εφαρμογή έκδοσης &#8211; επεξεργασίας- αποθήκευσης τιμολογίων σε C#, WinForm .NET3.5.</p>
<p><span id="more-118"></span>Δεν <em>χρειάζεται </em>εγκατάσταση, απλά εκτελέστε το <em>Accountant_Demo.exe</em></p>
<p><a href="http://www.webpixel.gr/wp-content/uploads/accountant.zip">accountant demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/accountant-demo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox 4.0 Blue Screen on Host</title>
		<link>http://www.webpixel.gr/blog/virtualbox-4-0-blue-screen-on-host</link>
		<comments>http://www.webpixel.gr/blog/virtualbox-4-0-blue-screen-on-host#comments</comments>
		<pubDate>Fri, 18 Mar 2011 08:52:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Virtual Box]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=112</guid>
		<description><![CDATA[I would like to share with you quick and dirty Tip with you about VirtualBox 4.0 Blue Screen (BSOD) on Host. ]]></description>
			<content:encoded><![CDATA[<p>Hi, to you all.</p>
<p>I would like to share with you quick and dirty Tip with you about VirtualBox 4.0 Blue Screen (BSOD) on Host. <span id="more-112"></span>I am running on Windows 7 32-bit and recently decided to upgrade my VB 3.14 to 4.0 version.  After doing this and running my Virtual Machine (which happens to be a Win XP) I got constantly a Blue Screen of Death (commonly known BSOD) on my host. No matter what I did I always ended up  with BSOD…</p>
<p><a href="http://www.webpixel.gr/wp-content/uploads/vbox-settings.gif"><img class="size-medium wp-image-113" title="VirtualBox_4_settings" src="http://www.webpixel.gr/wp-content/uploads/vbox-settings-250x300.gif" alt="VirtualBox 4 settings to avoid BSOD" width="250" height="300" /></a></p>
<div class="mceTemp">
<dl id="attachment_113" class="wp-caption alignleft" style="width: 260px;">
<dd class="wp-caption-dd">VirtualBox 4 settings to avoid BSOD</dd>
</dl>
</div>
<p>The solution for this is very simple…change the IDE Controller setting in VirtualBox from PIIX4 to PIIX3 and also other settings according to the following screen…. Your Virtual Machine will be Saved.<br />
<strong>Tip</strong>: Always Keep Buck Up of your  .xml file which defines the virtual machine settings and not only .vdi</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/blog/virtualbox-4-0-blue-screen-on-host/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Φωτογράφος Γάμων</title>
		<link>http://www.webpixel.gr/portfolio/%cf%86%cf%89%cf%84%ce%bf%ce%b3%cf%81%ce%ac%cf%86%ce%bf%cf%82-%ce%b3%ce%ac%ce%bc%cf%89%ce%bd</link>
		<comments>http://www.webpixel.gr/portfolio/%cf%86%cf%89%cf%84%ce%bf%ce%b3%cf%81%ce%ac%cf%86%ce%bf%cf%82-%ce%b3%ce%ac%ce%bc%cf%89%ce%bd#comments</comments>
		<pubDate>Sun, 12 Dec 2010 16:20:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=32</guid>
		<description><![CDATA[Φωτογράφος γάμων στη Θεσσαλονίκη. Christo Polichronis]]></description>
			<content:encoded><![CDATA[<p>Φωτογράφος γάμων στη Θεσσαλονίκη. Christo Polichronis</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/portfolio/%cf%86%cf%89%cf%84%ce%bf%ce%b3%cf%81%ce%ac%cf%86%ce%bf%cf%82-%ce%b3%ce%ac%ce%bc%cf%89%ce%bd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rent a car in Thessaloniki</title>
		<link>http://www.webpixel.gr/portfolio/rent-a-car-in-thessaloniki</link>
		<comments>http://www.webpixel.gr/portfolio/rent-a-car-in-thessaloniki#comments</comments>
		<pubDate>Sun, 12 Dec 2010 16:16:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=40</guid>
		<description><![CDATA[Alpha Rent a Car εταιρεία ενοικιάσεων αυτοκινήτων στην Θεσσαλονίκη.]]></description>
			<content:encoded><![CDATA[<p>Alpha Rent a Car εταιρεία ενοικιάσεων αυτοκινήτων στην Θεσσαλονίκη.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/portfolio/rent-a-car-in-thessaloniki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Φωτογράφος Γάμων</title>
		<link>http://www.webpixel.gr/portfolio/george-fotiadis-photographer</link>
		<comments>http://www.webpixel.gr/portfolio/george-fotiadis-photographer#comments</comments>
		<pubDate>Sun, 12 Dec 2010 15:30:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=24</guid>
		<description><![CDATA[Φωτογράφος γάμων και εδηλώσεων]]></description>
			<content:encoded><![CDATA[<p>Φωτογράφος γάμων και εδηλώσεων</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/portfolio/george-fotiadis-photographer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Car Rental Thessaloniki</title>
		<link>http://www.webpixel.gr/portfolio/car-rental-thessaloniki</link>
		<comments>http://www.webpixel.gr/portfolio/car-rental-thessaloniki#comments</comments>
		<pubDate>Sun, 12 Dec 2010 13:00:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.webpixel.gr/?p=15</guid>
		<description><![CDATA[Εταιρεία ενοικιάσεων αυτοκινήτων στη Θεσσαλονίκη.]]></description>
			<content:encoded><![CDATA[<p>Εταιρεία ενοικιάσεων αυτοκινήτων στη Θεσσαλονίκη.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpixel.gr/portfolio/car-rental-thessaloniki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

