<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>efransiscus personal blog &#187; Computer</title>
	<atom:link href="http://efransiscus.wordpress.com/category/computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://efransiscus.wordpress.com</link>
	<description>blog telling things around me</description>
	<lastBuildDate>Mon, 24 Aug 2009 15:47:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='efransiscus.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3111c2b585e3a4ed91e144d350e3c56e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>efransiscus personal blog &#187; Computer</title>
		<link>http://efransiscus.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://efransiscus.wordpress.com/osd.xml" title="efransiscus personal blog" />
		<item>
		<title>Tutorial : Using MySQL ODBC Connector with Foxpro 9 and MySQL</title>
		<link>http://efransiscus.wordpress.com/2009/03/15/tutorial-using-mysql-odbc-connector-with-foxpro-9-and-mysql/</link>
		<comments>http://efransiscus.wordpress.com/2009/03/15/tutorial-using-mysql-odbc-connector-with-foxpro-9-and-mysql/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 17:43:13 +0000</pubDate>
		<dc:creator>Erwin Fransiscus</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Foxpro]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[connect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[odbc]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://efransiscus.wordpress.com/?p=147</guid>
		<description><![CDATA[Yesterday, I got a project to handle with MySQL and Visual Foxpro. I&#8217;m used to MySQL, and so does with Visual Foxpro. The trouble is that I&#8217;ve never work on both of them in the same time. Usually I&#8217;m using Foxpro integrated DBMS when using Visual Foxpro, and MySQL used to be a DBMS when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=147&subd=efransiscus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday, I got a project to handle with MySQL and Visual Foxpro. I&#8217;m used to MySQL, and so does with Visual Foxpro. The trouble is that I&#8217;ve never work on both of them in the same time. Usually I&#8217;m using Foxpro integrated DBMS when using Visual Foxpro, and MySQL used to be a DBMS when I&#8217;m using PHP, C#, or ASP.Net.<br />
I got a little problem on connecting those software, but after multiple tries, it did works.<br />
How that happen? here&#8217;s the simple tutorial:</p>
<p>Note : I&#8217;m using Microsoft Windows XP SP 3, Visual Foxpro 9, and WAMP server 1.7.3, I&#8217;m working on a single desktop pc. I&#8217;m sorry i didn&#8217;t include the images example on doing this, hope with just the texts you would understand how it works.</p>
<p>First, create a database on MySQL. The database is quite important, because when you install and configure ODBC, there&#8217;s an option of which databases you want to use.  I&#8217;m also using PHPmyadmin for the GUI of the database application.  here&#8217;s for example.</p>
<blockquote><p>&gt; CREATE DATABASE dbfarmasi<br />
&gt; CREATE TABLE  `dbfarmasi`.`tb_brg` (`kdbrg` CHAR( 6 ) NOT NULL ,`nmbrg` VARCHAR( 50 ) NOT NULL , PRIMARY KEY (  `kdbrg` )) ENGINE = INNODB<br />
&gt; INSERT INTO  `dbfarmasi`.`tb_brg` (`kdbrg` ,`nmbrg`) VALUES ( &#8216;00001&#8242;,  &#8216;First item&#8217; );<br />
&gt; INSERT INTO  `dbfarmasi`.`tb_brg` (`kdbrg` ,`nmbrg`) VALUES ( &#8216;00002&#8242;,  &#8216;Second item&#8217; );</p></blockquote>
<p>i&#8217;m named the database &#8220;dbfarmasi&#8221; and the table &#8220;tb_brg&#8221;. So here, we got a database and a table, rock!</p>
<p>Then you download a software called MySQL ODBC Connector. I&#8217;m using mysql-connector-odbc-3.51.25-win32.exe, which is free, and can be downloaded by visit mysql site. You can try to google it.</p>
<p>Install. After installation has done, you should go to &#8220;Control Panel&#8221; &gt; &#8220;Administrative Tools&#8221; &gt; &#8220;Data Sources (ODBC)&#8221;. And then there&#8217;s pop-up window of ODBC. In &#8220;User DSN&#8221; tab, right side, press &#8220;Add&#8221; button&#8221;,  and select &#8220;MySQL ODBC 3.51 Driver&#8221; as the data source, and &#8220;Finish&#8221;.</p>
<p>Another windows will appear, it is a configuration window for ODBC. Try this :</p>
<blockquote><p>Data source name : <strong>koneksi</strong><br />
Description : connect foxpro and mysql<br />
Server : <strong>localhost</strong><br />
User : <strong>root</strong><br />
Database : <strong>dbfarmasi</strong></p></blockquote>
<p>The DSN name is up to you, so does the description.<br />
The default Server is localhost, &#8217;cause I&#8217;m not using remote database.<br />
Default user name is root, as the first super user name in mysql.<br />
I&#8217;m using no password on mysql (it is set to none by default when you&#8217;re install WAMP)<br />
and the database I&#8217;m using is dbfarmasi, as i&#8217;ve created before.</p>
<p>Ta-da. The connection has been made.</p>
<p>Now, for the visual foxpro. here is a simple one :<br />
Create a project, whatever the name is, save it. on &#8220;Project Manager&#8221; window, choose &#8220;Code&#8221; tab.<br />
Press &#8220;New&#8221; on Program.<br />
Here is the code:</p>
<blockquote><p>PUBLIC P1<br />
STORE SQLCONNECT(&#8216;koneksi&#8217;, &#8216;root&#8217;) TO P1</p></blockquote>
<p>close and save it to name :  &#8221;<strong>setdatabase</strong>&#8220;</p>
<p>now, back to &#8220;Project Manager&#8221; window, choose &#8220;Document&#8221; tab, press &#8220;New&#8221; button to create a new form, and pick the &#8220;New Form&#8221;, not the &#8220;Form Wizard&#8221; thing.<br />
After that, an empty form will appear. create a two Textboxs.<br />
named the first textbox to : <strong>txtkdbrg</strong> and the second textbox to : <strong>txtnmbrg.</strong><br />
Add a grid to form. named it as <strong>gridContainer. </strong></p>
<p>Now double-click the form,  select the object <strong>form1 </strong>and the procedure <strong>init</strong>, and add this code:</p>
<blockquote><p><strong>DO setdatabase</strong><br />
thisform.gridContainer.RecordSource=&#8221;"<br />
<strong>SQLEXEC(P1,&#8221;select * from tb_brg&#8221;,&#8221;tb_brg&#8221;)</strong><br />
IF NOT USED(&#8220;tb_brg&#8221;)<span> </span><br />
<span> </span>USE tb_brg ALIAS tb_brg<br />
ENDIF <br />
SELECT tb_brg<br />
thisform.gridContainer.RecordSource=&#8221;tb_brg&#8221;</p></blockquote>
<p>Save the form and run it. TA-DA. It works, its connected. The content of table &#8220;tb_brg&#8221; is showed by the form by the gridContainer.</p>
<p>It means that the ODBC works. Here the connection thing :<br />
<em>do setdatabase</em><br />
<em>SQLEXEC(P1,&#8221;select * from tb_brg&#8221;,&#8221;tb_brg&#8221;)</em><br />
means :<br />
run program code &#8220;setdatabase&#8221; (which we&#8217;ve created before, for connection)<br />
select <strong>P1</strong> as ODBC connection DNS, (connection name variable in setdatabase (replace SQLCONNECT(bla bla bla))<br />
&#8220;select * from tb_brg&#8221;, the sql query, select all from table tb_brg<br />
&#8220;tb_brg&#8221;, is a cursor in visual foxpro, that used for alias.</p>
<p>So, with SQLEXEC([connection name],&#8221;[sql query]&#8220;,[cursor name]), you can do sql command: <strong>SELECT</strong>. Don&#8217;t forget to add cursorname/alias when you&#8217;re using <strong>SELECT</strong>.</p>
<p>You don&#8217;t have to add cursorname if you&#8217;re using INSERT or DELETE query.<br />
example :</p>
<blockquote><p>SQLEXEC(P1,&#8221;insert into tb_brg (kdbrg,nmbrg) values 	(&#8216;&#8221;+thisform.txtkdbrg.value+&#8221;&#8216;,&#8217;&#8221;+thisform.txtnmbrg.value+&#8221;&#8216;)&#8221;)</p></blockquote>
<p>means you insert value from textbox (txtkdbrg and txtnmbrg).<br />
for delete command example : </p>
<blockquote><p>SQLEXEC(P1,&#8221;delete from tb_brg where kdbrg =&#8217;&#8221;+thisform.txtkdbrg.Value+&#8221;&#8216;&#8221;)</p></blockquote>
<p>Once again, i&#8217;m sorry i&#8217;m not using images for this tutorial.<br />
Hope you understand what i meant in this simple tutorial, and hope it help you.</p>
 Tagged: connect, example, Foxpro, MySQL, odbc, tutorial <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/efransiscus.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/efransiscus.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/efransiscus.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/efransiscus.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/efransiscus.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/efransiscus.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/efransiscus.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/efransiscus.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/efransiscus.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/efransiscus.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=147&subd=efransiscus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://efransiscus.wordpress.com/2009/03/15/tutorial-using-mysql-odbc-connector-with-foxpro-9-and-mysql/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf39f19395e3651ea33bc7dab0cd09fd?s=96&#38;d=" medium="image">
			<media:title type="html">Efransiscus</media:title>
		</media:content>
	</item>
		<item>
		<title>Download Google Chrome Full</title>
		<link>http://efransiscus.wordpress.com/2009/02/23/download-google-chrome-full/</link>
		<comments>http://efransiscus.wordpress.com/2009/02/23/download-google-chrome-full/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:22:17 +0000</pubDate>
		<dc:creator>Erwin Fransiscus</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[full download]]></category>
		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://efransiscus.wordpress.com/2009/02/23/download-google-chrome-full/</guid>
		<description><![CDATA[If you want to download Google&#8217;s new web browser &#8220;Chrome&#8221;, you&#8217;ll need to download a small 474 KB installer from its official website and then it&#8217;ll download the required files of approx. 7 MB from Google server.
Its annoying and painful when you want to install Chrome in more than one computer. You&#8217;ll have to download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=138&subd=efransiscus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to download Google&#8217;s new web browser &#8220;Chrome&#8221;, you&#8217;ll need to download a small 474 KB installer from its official website and then it&#8217;ll download the required files of approx. 7 MB from Google server.</p>
<p>Its annoying and painful when you want to install Chrome in more than one computer. You&#8217;ll have to download the required setup files in each system.</p>
<p>Now no need to worry, Google is providing a standalone installer which doesn&#8217;t require net connection while installing the browser. So you can download it once and then install it in as many systems as you want without any problem.</p>
<p>Download Full Standalone Offline Installer for Latest Google Chrome<br />
http://dl.google.com/chrome/install/154.36/chrome_installer.exe</p>
<p>There is also another benefit in downloading this standalone installer. It doesn&#8217;t contain the Google Update EXE file.</p>
 Tagged: chrome, full download, google chrome <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/efransiscus.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/efransiscus.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/efransiscus.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/efransiscus.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/efransiscus.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/efransiscus.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/efransiscus.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/efransiscus.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/efransiscus.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/efransiscus.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=138&subd=efransiscus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://efransiscus.wordpress.com/2009/02/23/download-google-chrome-full/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf39f19395e3651ea33bc7dab0cd09fd?s=96&#38;d=" medium="image">
			<media:title type="html">Efransiscus</media:title>
		</media:content>
	</item>
		<item>
		<title>Download Full Package of Microsoft .Net Framework 3.5</title>
		<link>http://efransiscus.wordpress.com/2009/02/01/download-full-package-of-microsoft-net-framework-35/</link>
		<comments>http://efransiscus.wordpress.com/2009/02/01/download-full-package-of-microsoft-net-framework-35/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 13:39:56 +0000</pubDate>
		<dc:creator>Erwin Fransiscus</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[.net 3.5]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[framwork]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://efransiscus.wordpress.com/?p=129</guid>
		<description><![CDATA[This page was taken from : 
http://www.devilsworkshop.org/download-complete-microsoft-net-framework-35-setup/
I&#8217;ve also downloaded this file from the page, and it works..

Many new windows applications requires latest version of Microsoft .NET framework which is version 3.5 at the time of of writing of this post.
If you go to Microsoft download center, then by default you will get live installer of approximately [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=129&subd=efransiscus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This page was taken from : </p>
<p><a href="http://www.devilsworkshop.org/download-complete-microsoft-net-framework-35-setup/">http://www.devilsworkshop.org/download-complete-microsoft-net-framework-35-setup/</a></p>
<p>I&#8217;ve also downloaded this file from the page, and it works..</p>
<p><img class="alignnone size-full wp-image-130" title="Microsoft .NET Framework 3.5" src="http://efransiscus.files.wordpress.com/2009/02/images.jpg?w=117&#038;h=132" alt="Microsoft .NET Framework 3.5" width="117" height="132" /></p>
<p>Many new windows applications requires latest version of Microsoft .NET framework which is version 3.5 at the time of of writing of this post.</p>
<p>If you go to Microsoft download center, then by default you will get live installer of approximately 2-3 MB’s while complete .NET framework requires 50-200 MB. Actually on the same page they are links to complete setup but they are placed in a way that anyone can hardly notice them. Seems like Microsoft wants you to download live installer but there are problem with live installer…</p>
<ol>
<li>It may hang forever if you have slow internet connection like dial-up, GPRS, etc.</li>
<li>You can not use it at all if your computer is not connected to internet <img class="wp-smiley" src="http://www.devilsworkshop.org/blog/wp-includes/images/smilies/icon_sad.gif" alt="-(" /></li>
<li>Also if you are running pirated Windows better not to use any software/installer from Microsoft which connects to Internet</li>
</ol>
<p>So here I am giving you links to complete Microsoft .NET Framework 3.0 &amp; 3.5 setups which are gathered from Microsoft pages (links: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&amp;displaylang=en" target="_blank">v3.5</a> &amp; <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=10CC340B-F857-4A14-83F5-25634C3BF043&amp;displaylang=en" target="_blank">v3.0</a>)</p>
<p><strong></strong></p>
<p><strong># Microsoft .NET Framework 3.5 Setup</strong></p>
<ul>
<li><a href="http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe" target="_blank">32-bit version</a> (Size: ~200MB)</li>
</ul>
<p><strong># Microsoft .NET Framework 3.0 Setup</strong></p>
<ul>
<li><a href="http://download.microsoft.com/download/3/F/0/3F0A922C-F239-4B9B-9CB0-DF53621C57D9/dotnetfx3.exe">32-bit Version</a> (Size: ~50MB)</li>
<li><a href="http://download.microsoft.com/download/3/F/0/3F0A922C-F239-4B9B-9CB0-DF53621C57D9/dotnetfx3_x64.exe">64-bit Version</a> (Size: ~90MB)</li>
</ul>
<p>Do not worry about authenticity of above links as they are from Microsoft’s <a id="KonaLink0" class="kLink" href="http://www.devilsworkshop.org/download-complete-microsoft-net-framework-35-setup/#" target="undefined"><span style="color:#007cab;"><span class="kLink">server</span></span></a> only!</p>
 Tagged: .net 3.5, download, framwork, microsoft <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/efransiscus.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/efransiscus.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/efransiscus.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/efransiscus.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/efransiscus.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/efransiscus.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/efransiscus.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/efransiscus.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/efransiscus.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/efransiscus.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=129&subd=efransiscus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://efransiscus.wordpress.com/2009/02/01/download-full-package-of-microsoft-net-framework-35/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf39f19395e3651ea33bc7dab0cd09fd?s=96&#38;d=" medium="image">
			<media:title type="html">Efransiscus</media:title>
		</media:content>

		<media:content url="http://efransiscus.files.wordpress.com/2009/02/images.jpg" medium="image">
			<media:title type="html">Microsoft .NET Framework 3.5</media:title>
		</media:content>

		<media:content url="http://www.devilsworkshop.org/blog/wp-includes/images/smilies/icon_sad.gif" medium="image">
			<media:title type="html">-(</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution for &#8220;Can&#8217;t Turn On Hibernation on Windows XP SP 3&#8243;</title>
		<link>http://efransiscus.wordpress.com/2009/01/22/solution-for-cant-turn-on-hibernation-on-windows-xp-sp-3/</link>
		<comments>http://efransiscus.wordpress.com/2009/01/22/solution-for-cant-turn-on-hibernation-on-windows-xp-sp-3/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 05:31:14 +0000</pubDate>
		<dc:creator>Erwin Fransiscus</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[hibernation]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[sp3]]></category>
		<category><![CDATA[trouble shooting]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://efransiscus.wordpress.com/?p=100</guid>
		<description><![CDATA[There&#8217;s some people who couldn&#8217;t turn on their hibernation option on Windows XP SP3, like my past experience. If you was trying to turn on hibernation, and there&#8217;s pop-up windows similar like this :
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
Windows can&#8217;t reserve your hibernation file
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
Hibernation file can not be written because it is still used
by other program     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=100&subd=efransiscus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There&#8217;s some people who couldn&#8217;t turn on their hibernation option on Windows XP SP3, like my past experience. If you was trying to turn on hibernation, and there&#8217;s pop-up windows similar like this :</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Windows can&#8217;t reserve your hibernation file<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Hibernation file can not be written because it is still used<br />
by other program                                                     </p>
<p>| OK |</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>After i disscuss it with support.microsoft.com, there&#8217;s a possibilities that i had installed Alcohol 120% before i did turned hibernate on. So, if u had some problem with me, u can uninstall Alcohol 120% first, restart and turn on hibernation, and then you can install Alcohol 120% again.</p>
<p>Okay then, good luck <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
 Tagged: hibernation, solution, sp3, trouble shooting, windows, xp <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/efransiscus.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/efransiscus.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/efransiscus.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/efransiscus.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/efransiscus.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/efransiscus.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/efransiscus.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/efransiscus.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/efransiscus.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/efransiscus.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=100&subd=efransiscus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://efransiscus.wordpress.com/2009/01/22/solution-for-cant-turn-on-hibernation-on-windows-xp-sp-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf39f19395e3651ea33bc7dab0cd09fd?s=96&#38;d=" medium="image">
			<media:title type="html">Efransiscus</media:title>
		</media:content>
	</item>
		<item>
		<title>Pioneer Project : 400Gb Disk</title>
		<link>http://efransiscus.wordpress.com/2008/07/04/pioneer-project-400gb-disk/</link>
		<comments>http://efransiscus.wordpress.com/2008/07/04/pioneer-project-400gb-disk/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 16:41:11 +0000</pubDate>
		<dc:creator>Erwin Fransiscus</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://efransiscus.wordpress.com/?p=40</guid>
		<description><![CDATA[Lately, storage needs become bigger and bigger. Long time ago we use a cd and we&#8217;re pretty satisfied..Now,DVD which can keep about 4.5 Gb sometimes is not enough. Now Pioneer Japan is trying to develop a disk that able to store 400Gb. It claims that d disk contain 16 layers that keep 25Gb each.  D [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=40&subd=efransiscus&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Lately, storage needs become bigger and bigger. Long time ago we use a cd and we&#8217;re pretty satisfied..Now,DVD which can keep about 4.5 Gb sometimes is not enough. Now Pioneer Japan is trying to develop a disk that able to store 400Gb. It claims that d disk contain 16 layers that keep 25Gb each.  D disk can be read with BluRay hardware.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/efransiscus.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/efransiscus.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/efransiscus.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/efransiscus.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/efransiscus.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/efransiscus.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/efransiscus.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/efransiscus.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/efransiscus.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/efransiscus.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/efransiscus.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/efransiscus.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=efransiscus.wordpress.com&blog=3967919&post=40&subd=efransiscus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://efransiscus.wordpress.com/2008/07/04/pioneer-project-400gb-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf39f19395e3651ea33bc7dab0cd09fd?s=96&#38;d=" medium="image">
			<media:title type="html">Efransiscus</media:title>
		</media:content>
	</item>
	</channel>
</rss>