<?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>Cak Yanto {Joomla&#124;WP&#124;Photoshop&#124;Ms.Access&#124;MySQL}</title>
	<atom:link href="http://cakyanto.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cakyanto.wordpress.com</link>
	<description>“Semangat untuk berbagi memang bukan merupakan kesenangan setiap individu, namun bangsa ini butuh individu yang memiliki semangat untuk itu” Keep Spirit &#38; MyInspiration</description>
	<lastBuildDate>Fri, 23 Dec 2011 13:12:10 +0000</lastBuildDate>
	<language>id</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cakyanto.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c4b021f7828ee26a16c29023d1469ff8?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Cak Yanto {Joomla&#124;WP&#124;Photoshop&#124;Ms.Access&#124;MySQL}</title>
		<link>http://cakyanto.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cakyanto.wordpress.com/osd.xml" title="Cak Yanto {Joomla&#124;WP&#124;Photoshop&#124;Ms.Access&#124;MySQL}" />
	<atom:link rel='hub' href='http://cakyanto.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Perbedaan 32-bit dan 64-bit</title>
		<link>http://cakyanto.wordpress.com/2011/12/12/perbedaan-32-bit-dan-64-bit/</link>
		<comments>http://cakyanto.wordpress.com/2011/12/12/perbedaan-32-bit-dan-64-bit/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 05:29:33 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arsitektur processor]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=259</guid>
		<description><![CDATA[Okey, kita mulai dari istilah &#8220;32-bit&#8221; dan &#8220;64-bit&#8221; itu dulu. 32-bit dan 64-bit mengacu pada arsitektur processor. Processor 32-bit artinya register2 nya (unit penyimpanan data terkecil di dalamnya) berukuran 32 bit. Processor 64-bit artinya register2 nya berukuran 64 bit. ( Register2 ini lah yang digunakan untuk melakukan macam2 operasi. Misalnya c = a + b, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=259&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okey, kita mulai dari istilah &#8220;32-bit&#8221; dan &#8220;64-bit&#8221; itu dulu.</p>
<p>32-bit dan 64-bit mengacu pada arsitektur processor.<br />
Processor 32-bit artinya register2 nya (unit penyimpanan data terkecil di dalamnya) berukuran 32 bit.<br />
Processor 64-bit artinya register2 nya berukuran 64 bit.</p>
<p>( Register2 ini lah yang digunakan untuk melakukan macam2 operasi. Misalnya c = a + b, maka register &#8220;eax&#8221; akan me-load nilai dari &#8220;a&#8221; (di memory), kemudian pada register &#8220;eax&#8221; ditambahkan nilai dari &#8220;b&#8221;, lalu &#8220;eax&#8221; ditulis ke memory pada posisi variabel &#8220;c&#8221; )</p>
<p>Pengaruh ukuran register terhadap kecepatan:<br />
Setiap proses baca/tulis dari memory (disebut dengan load/store) membaca/menulis informasi sebesar ukuran register; maka register 64-bit potensial membaca/menulis memory 2x kecepatan register 32-bit.<br />
Tapi ini teoretis saja, karena kenyataannya prosesor juga menghabiskan waktu untuk melakukan hal-hal lain selain load/store, seperti pemrosesan matematis, vector-processing, dll.</p>
<p>Pengaruh ukuran register terhadap presisi:<br />
Secara simplistik: Makin panjang register, makin banyak angka di-belakang-koma yang bisa dihitung secara akurat.<br />
Sebagai gambaran: Misalkan resolusi bilangan real pada 32-bit adalah 0.0001, maka resolusi bilangan real pada 64-bit bisa mencapai 0.0000001 (jadi jauh lebih presisi)..<span id="more-259"></span></p>
<p>Pengaruh ukuran register terhadap ukuran memori:<br />
Salah satu dari sekian banyak register adalah &#8220;addressing register&#8221;. Addressing register (atau registers, kalau lebih dari satu) adalah register yang memiliki fungsi &#8216;menunjuk&#8217; ke alamat tertentu dalam memory. Jangkauan (range) penunjukan ini disebut dengan istilah memory space.<br />
Pada arsitektur 32-bit, addressing registers mampu &#8216;menunjuk&#8217; posisi memory dari 0 s/d 4&#8217;294&#8217;967&#8217;295 (4 GiB &#8211; 1). Inilah yang mengakibatkan muncul &#8220;batasan 4 GiB&#8221; pada sistem berbasis arsitektur 32-bit.<br />
Pada arsitektur 64-bit, addressing registers mampu &#8216;menunjuk&#8217; posisi memory dari 0 s/d 18&#8217;446&#8217;744&#8217;073&#8217;709&#8217;551&#8217;615 (16 EiB &#8211; 1). Seperti kita lihat, tidak ada lagi &#8216;batasan 4 GiB&#8217; pada sistem berbasis arsitektur 64-bit.</p>
<p>Pengaruh ukuran register terhadap dataset:<br />
&#8220;Dataset&#8221; adalah istilah untuk &#8216;seperangkat data yang di-load ke dalam memory untuk diproses dan (optionally) ditulis kembali ke hard disk&#8217;.<br />
Sistem 32-bit terbatas pada dataset sebesar (2^32)-1, atau (4 GiB &#8211; 1). Mengingat sebagian memory harus digunakan untuk OS dan program database ybs, maka biasanya dataset nya hanya sebesar 1-2 GiB saja.<br />
Artinya, sebuah database yang berukuran, katakanlah, 20 GiB (tidak asing dalam konteks perusahaan besar), harus diproses 10~20x.<br />
Sistem 64-bit tidak memiliki batasan di atas. Dia dapat me-load dataset sebesar ketersediaan memory. Artinya, database 20 GiB di atas dapat di-load seluruhnya (asal memory mencukupi), diproses dalam sekali jalan saja.</p>
<p>&#8212;&#8211;</p>
<p>Agar supaya kita dapat memperoleh keunggulan sistem 64-bit, maka baik software dan hardware harus mendukung.<br />
Software 32-bit jalan di hardware 64-bit tidak bisa memanfaatkan kelebihan arsitektur 64-bit. (Software hanya akan menggunakan 32-bit saja dari 64-bit yang tersedia; 32-bit sisanya tidak dikenali) ==&gt; disebut mode 32-bit.<br />
Sebaliknya, software 64-bit tidak bisa jalan di hardware 32-bit karena kebutuhannya akan lebar register 64-bit tidak bisa dipenuhi.</p>
<p>Windows XP 32-bit dan Windows Vista 32-bit adalah 2 sistem operasi yang masih beroperasi di mode 32-bit.<br />
Windows XP 64-bit dan Windows Vista 64-bit adalah 2 sistem operasi yang mampu beroperasi di mode 64-bit.</p>
<p>&#8212;&#8211;</p>
<p>AMD64 adalah terobosan (breakthrough) AMD dalam dunia processor x86.</p>
<p>Dahulu, s/d prosesor Pentium 3, Intel bersikukuh menggunakan hanya arsitektur 32-bit pada processor x86. Intel menghabiskan uang jutaan dollar untuk mengembangkan arsitektur 64-bit yang samasekali baru (artinya: Tidak kompatibel dengan dunia x86) dalam bentuk Intel ITANIUM.</p>
<p>AMD kemudian mengembangkan instruction set (dan arsitektur) dari processor x86 yang dibuatnya (AthlonXP) sehingga lahirlah Athlon64: Processor x86 yang memiliki arsitektur 64-bit.</p>
<p>Instruction set yang diperluas ini disebut AMD64 oleh AMD. Intel terpaksa melakukan cross-license, dan menggunakan instruction set tersebut juga (tapi dengan nama EMT64, bukan AMD64. Biasalah, masalaha corporate pride&#8230;)</p>
<p>&#8212;&#8211;</p>
<p>Saya tidak yakin dengan Mac OS X.<br />
Tetapi Linux memiliki versi 32-bit dan versi 64-bit.<br />
Contoh, Ubuntu yang ada di ftp://dl2.foss-id.web.id/iso/ubuntu/releases/hardy/<br />
Ada versi AMD64 (64-bit) dan ada versi i386 (32-bit)</p>
<p>&#8212;&#8211;</p>
<p>Kelebihan dan kekurangan?</p>
<p>Kita sudah melihat kelebihan dari arsitektur 64-bit.</p>
<p>Sekarang kekurangannya:</p>
<p>Banyak Software 32-bit yang tidak bisa jalan di arsitektur 64-bit, khususnya driver.</p>
<p>Mengapa bisa begitu?</p>
<p>Komputer adalah benda yang sangat kompleks. Untuk bisa berguna bagi manusia, komputer perlu melakukan apa yang disebut &#8220;Input/Output&#8221; (I/O). Contoh I/O adalah kirim/terima data via LAN, kirim gambar ke Monitor via VGA Card, dll.</p>
<p>Nah, semua tindakan I/O membutuhkan buffer. Sebagai contoh, kita kenal &#8220;memory VGA&#8221; pada VGA Card; itu sebetulnya adalah buffer untuk membantu VGA Card menampilkan gambar di monitor.</p>
<p>Masalahnya, agar I/O bisa berlangsung dengan mulus dan cepat, &#8216;buffer&#8217; ini perlu mendapatkan alamat. Dan alamat ini di ambil dari memory space. Hal ini terjadi meskipun komponen pelaksana I/O ini memiliki buffernya sendiri (contoh: VGA Card terbaru dari nVidia / ATI biasanya punya minimal 256 MiB RAM pada card nya). Tetap saja memori pada card tersebut akan dipetakan ke memory space.</p>
<p>Agar tidak bentrok dengan Sistem Operasi, yang biasanya di-load ke dalam memory &#8216;rendah&#8217; (Bottom Memory = memory dengan alamat kecil), maka biasanya pemetaan buffer ini dilakukan di memory &#8216;tinggi&#8217; (Top Memory = memory dengan alamat besar, atau dihitung mundur dari alamat memori terbesar (2^32)-1)</p>
<p>Catatan: Ini juga alasan yang menyebabkan RAM komputer kalau terpasang 4 GiB hanya akan bisa dipakai Max 3,25 GiB (atau kalau untung 3,5 GiB), ada yang &#8216;hilang&#8217; karena &#8216;tertutupi&#8217; oleh buffer dari komponen I/O.</p>
<p>Nah, pada arsitektur 64-bit, hal yang sama pun dilakukan: Buffer untuk I/O dipetakan ke Top Memory. Masalahnya, Top Memory pada arsitektur 64-bit jelas terletak pada posisi yang berbeda dengan Top Memory pada arsitektur 32-bit.</p>
<p>Driver adalah korban yang paling jelas; mereka berusaha mengakses Top Memory 32-bit, padahal lokasi buffer tidak di situ. Akibatnya: Crash.</p>
<p>Software2 lain yang juga coba-coba mengakses Top Memory secara langsung akan mengalami crash juga.</p>
<p>Lucunya, banyak game 32-bit yang malah jalan dengan tanpa masalah di sistem 64-bit; hal ini karena mereka tidak berusaha mengakses Top Memory secara langsung, melainkan meminta bantuan Microsoft DirectX Layer untuk mengakses fitur dari sebuah VGA Card.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/259/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=259&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2011/12/12/perbedaan-32-bit-dan-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Membuat Access Developer Extensions</title>
		<link>http://cakyanto.wordpress.com/2011/11/29/membuat-access-developer-extensions/</link>
		<comments>http://cakyanto.wordpress.com/2011/11/29/membuat-access-developer-extensions/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 05:22:09 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Membuat Access Developer Extensions]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=250</guid>
		<description><![CDATA[Sekarang adalah saatnya diuji coba dan dioptimalkan aplikasi yang telah Anda buat, Anda siap untuk mengkompilasi dan mendistribusikan aplikasi ke USER. Anda memiliki berbagai pilihan distribusi, seperti penyebaran database untuk USER dengan versi full-blown Access, mendistribusikan aplikasi menggunakan runtime Access, dan mendistribusikan file ACCDE. Masing-masing akan kita bahas. Tips: Sebelum mendistribusikan aplikasi Anda, terlebih dahulu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=250&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sekarang adalah saatnya diuji coba dan dioptimalkan aplikasi yang telah Anda buat, Anda siap untuk mengkompilasi dan mendistribusikan aplikasi ke USER. Anda memiliki berbagai pilihan distribusi, seperti penyebaran database untuk USER dengan versi full-blown Access, mendistribusikan aplikasi menggunakan runtime Access, dan mendistribusikan file ACCDE. Masing-masing akan kita bahas.</p>
<p>Tips: Sebelum mendistribusikan aplikasi Anda, terlebih dahulu Anda harus mengkompilasi aplikasi yang telah anda buat. Anda tidak ingin USER  berurusan dengan kesalahan kompilator yang bisa dihindari dengan menyusun sebelum ditempatkan pada folder yang kita inginkan. Kompilasi juga akan membantu aplikasi berjalan lebih cepat.</p>
<p>Sebuah ACCDE adalah file database dikompilasi dan dipadatkan yang memiliki semua source code yang dapat  diedit dihapus. Karena source code dihapus, keamanan (security) tambahan disediakan untuk aplikasi Anda. Selanjutnya, karena kode ini dihapus, ukuran aplikasi lebih kecil dan dengan demikian kinerjanya yang ditingkatkan. Karena keterbatasan file ACCDE, Anda harus menjaga database asli ACCDB dengan source code sehingga Anda akan dapat membuat perubahan nantinya jika diperlukan.</p>
<ul>
<li>1. Salah satu cara untuk mengkompilasi sebuah aplikasi dari Visual Basic Editor, dengan memilih opsi Debug &gt;Compile Nama Database.<img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde1.JPG" alt="" width="452" height="425" /></li>
</ul>
<p>Pastikan versi Ms. Access sama dengan Database. Misalnya Access 2007, file dalam bentuk ACCDB. jika Access 2003, file harus dalam bentuk MDB. jika tidak di convert terlebih dahulu.<span id="more-250"></span></p>
<ul>
<li>2. Pilih opsi Database tools&gt;Make ACCDE<img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde2.JPG" alt="" width="1001" height="142" /></li>
</ul>
<ul>
<li>3. Kemudian Save as dengan nama file *.ACCDE</li>
</ul>
<p><strong> <img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde3.JPG" alt="" width="778" height="494" /></strong><br />
Dalam beberapa kasus, Anda mungkin mendistribusikan aplikasi untuk USER yang sudah memiliki office versi lengkap sudah termasuk Ms. Access terinstall di dalamnya. Selain bisa membuat file ACCDB  yang dapat diakses oleh setiap USER, Anda tidak perlu mengambil langkah-langkah lain untuk menyebarkan aplikasi kepada USER.</p>
<p><strong>Mendistribusikan Aplikasi dengan Access Runtime</strong><br />
Jika Anda memiliki USER akhir yang tidak memiliki Ms. Access, Anda dapat mendistribusikan aplikasi untuk mereka menggunakan runtime Access. Runtime adalah versi Access dengan fitur  yang memiliki keterbatasan antara lain sebagai berikut:</p>
<ul>
<li>Anda tidak dapat melihat atau memodifikasi desain objek.</li>
<li>Jendela database tersembunyi.</li>
<li>Built-in toolbar dan beberapa item menu tidak didukung, sehingga Anda mungkin harus membuat menu Anda sendiri di aplikasi Anda.</li>
<li>Beberapa key yang dinonaktifkan.</li>
</ul>
<p>Anda dapat membuat program setup menggunakan Wizard yang memungkinkan Anda untuk mendistribusikan aplikasi  yang dikemas sekaligus dengan Access runtime. Agar dapat  menggunakan Wizard, pertama Anda harus memiliki Office Access 2007 Access Developer Extensions terinstall dan terintegrasi dengan Ms Access 2007. Hal ini bisa di Download di Link Microsoft:</p>
<p>Microsoft Access 2010 Runtime</p>
<p><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=57a350cd-5250-4df6-bfd1-6ced700a6715&amp;displaylang=en">http://www.microsoft.com/downloads/en/details.aspx?FamilyId=57a350cd-5250-4df6-bfd1-6ced700a6715&amp;displaylang=en</a></p>
<p>Microsoft Access 2010 Source Code Control</p>
<p><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=586912a5-3809-44ef-ac55-43d36ecab9de">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=586912a5-3809-44ef-ac55-43d36ecab9de</a></p>
<p>Access 2007 Download: Access Runtime</p>
<p><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=D9AE78D9-9DC6-4B38-9FA6-2C745A175AED">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=D9AE78D9-9DC6-4B38-9FA6-2C745A175AED</a></p>
<p>Access 2007 Download: Access Developer Extensions</p>
<p><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=D96A8358-ECE4-4BEE-A844-F81856DCEB67&amp;displaylang=en">http://www.microsoft.com/downloads/en/details.aspx?FamilyId=D96A8358-ECE4-4BEE-A844-F81856DCEB67&amp;displaylang=en</a></p>
<h2> </h2>
<p>Setelah Anda menginstal &#8216;Access 2007 Download: Access Developer Extensions&#8217;  Anda harus membuat Wizard untuk proyek Anda.</p>
<p>Klik Office Button&gt;Developer&gt;Package Solution&#8230;</p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup1.JPG" alt="" width="1024" height="768" /></p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup2.JPG" alt="" width="960" height="609" /></p>
<p>Anda masuk form package Solution Wizard.</p>
<p>Wizards Template, jika anda telah melakukan setup wizard sebelumnya, maka anda bisa menggunakan template tersebut.</p>
<p>Output options Destination Folder, yaitu tempat penyimpanan file setup Access Developer Extensions pilih Next saja..</p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup3.JPG" alt="" width="960" height="609" /></p>
<p>File Package: nama file/aplikasi yang akan di paket setup</p>
<p>Root install folder: root folder penempatan file setup</p>
<p>Install Subfolder: sub folder penempatan file setup</p>
<p>Require nothing and install the Access Runtime 2007: pilih ini jika Access Runtime 2007 mau dibuat satu paket setup, tetapi jika user sudah memiliki Ms Access ini tidak perlu dilakukan.</p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup8.JPG" alt="" width="800" height="600" /></p>
<p>Tambahkan juga misalnya file database back end juga ebook didalam proses setup ini</p>
<p><img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup4.JPG" alt="" width="960" height="609" /></p>
<p>End User Licence Agreement (EULA) : bisa ditambahkan juga EULA dalam format *.RTF</p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup5.JPG" alt="" width="960" height="609" /></p>
<p>Klik button Ok Finish</p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup6.JPG" alt="" width="960" height="609" /></p>
<p><img class="aligncenter" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/installer1.JPG" alt="" width="501" height="394" /> </p>
<p>Hasil akhirnya akan seperti gambar diatas. Copy semua file dan folder hasil Wizards Access Developer Extensions ini ke dalam CD dan Aplikasi Anda telah siap untuk di distribusikan. Selamat mencoba, sukses untuk anda&#8230;</p>
<p>Silakan klik link <a href="http://cid-0f98fce8dcd8ce4d.office.live.com/self.aspx/Download%20Ebook/Membuat%20Access%20Developer%20Extensions.pdf">Download </a>ebook ini disini.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=250&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2011/11/29/membuat-access-developer-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde1.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde2.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/accde3.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup1.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup2.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup3.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup8.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup4.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup5.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/setup6.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/installer1.JPG" medium="image" />
	</item>
		<item>
		<title>Query dan Modul Round Up 100 dalam Access</title>
		<link>http://cakyanto.wordpress.com/2011/11/29/query-dan-modul-round-up-100-dalam-access/</link>
		<comments>http://cakyanto.wordpress.com/2011/11/29/query-dan-modul-round-up-100-dalam-access/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 04:16:35 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Modul]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Round Up 100 dalam Access]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=245</guid>
		<description><![CDATA[  Saya ingat ketika beberapa tahun yang lalu, membuat function round up 100 dalam Access ini sangat rumit pemikirannya, di convert dalam text, kemudian di delete 2 from right, di kali 100, trus hasilnya di convert lagi ke number. logikanya bener tetapi ada keterbatasan karena tidak fleksible sebab kemungkinan angka yang di konversi dalam ribuan, ratusan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=245&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2> </h2>
<div>
<div>
<p>Saya ingat ketika beberapa tahun yang lalu, membuat function round up 100 dalam Access ini sangat rumit pemikirannya, di convert dalam text, kemudian di delete 2 from right, di kali 100, trus hasilnya di convert lagi ke number. logikanya bener tetapi ada keterbatasan karena tidak fleksible sebab kemungkinan angka yang di konversi dalam ribuan, ratusan ribu bahkan jutaan.</p>
<p>Mungkin ini bisa menjawab pertanyaan rekan yang dulu membuat saya bingung, ternyata sesederhana ini jawabannya:</p>
<p>1. buat table tblData: dengan field ID(AutoNumber), Angka (Number)</p>
<p><img src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/table-data.JPG" alt="" /><br />
<span id="more-245"></span></p>
<p>2. Buat Query qryRoundUp100 :</p>
<p>SELECT tblData.ID, tblData.Angka, 100*Round([angka]/100,0) AS Mendekati, 100*Int([Angka]/100) AS [Round Down], -100*Int([Angka]/-100) AS [Round Up], Pembulatan([Angka]) AS [Modul Round Up]<br />
FROM tblData;</p>
<p> atau seperti gambar sbb:</p>
<p><img src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/query-roundup.JPG" alt="" /></p>
<p>&nbsp;</p>
<p>3. Buat Module mdlPembulatan100: (info tambahan dari mas Edy W, MBA-moderator group milist <a href="mailto:belajar-access@yahoogroups.com">belajar-access@yahoogroups.com</a>)</p>
<p>Option Compare Database</p>
<p>Function Pembulatan(ByVal Nilai As Double) As Double<br />
If Nilai Mod 100 &gt; 0 Then<br />
Pembulatan = ((Nilai \ 100) * 100) + 100<br />
Else<br />
Pembulatan = Nilai<br />
End If<br />
End Function</p>
<p>4. Hasilnya akan tampak sbb:</p>
<p>Angka asal, Hasil Round Up dengan Query, dan Round Up dengan module</p>
<p><img src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/hasil-query-roundup-100.JPG" alt="" /></p>
<p>Semoga bermanfaat.</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=245&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2011/11/29/query-dan-modul-round-up-100-dalam-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/table-data.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/query-roundup.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query+_2600_+modul/hasil-query-roundup-100.JPG" medium="image" />
	</item>
		<item>
		<title>Decompile Database Access</title>
		<link>http://cakyanto.wordpress.com/2011/11/29/decompile-database-access/</link>
		<comments>http://cakyanto.wordpress.com/2011/11/29/decompile-database-access/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 04:13:04 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Decompile Database Access]]></category>
		<category><![CDATA[Tips & Trik]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=240</guid>
		<description><![CDATA[Untuk setiap kode program yang akan dijalankan oleh komputer, maka harus dikonversi ke machine-readable code. Kode ini disebut Kode Objek(=Object Code). Versi teks dari program yang Anda dan saya bisa baca disebut Kode Sumber (=Source Code). Pada Access, proses produksi Kode Obyek dari Source Code disebut &#8220;kompilasi&#8221;. Setiap kali kode dijalankan untuk pertama kalinya di Access, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=240&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Untuk setiap kode program yang akan dijalankan oleh komputer, maka harus dikonversi ke machine-readable code. Kode ini disebut Kode Objek(=Object Code). Versi teks dari program yang Anda dan saya bisa baca disebut Kode Sumber (=Source Code).</p>
<p>Pada Access, proses produksi Kode Obyek dari Source Code disebut &#8220;kompilasi&#8221;. Setiap kali kode dijalankan untuk pertama kalinya di Access, kode ini pertama dikompilasi. (Anda juga dapat mengkompilasi sendiri dengan menekan tombol kompilasi). Satu-satunya tempat Anda dapat membuat perubahan pada kode di Source Code, yang lagi-lagi harus dikompilasi ke dalam Kode Objek.</p>
<p>Kadang-kadang, kode dapat dihapus dari Source Code, tapi untuk beberapa alasan tidak pernah dihapus dari Kode Objek. Kode ini tidak pernah lagi terlihat di layar sebagai teks, namun masih ada di sana di suatu tempat dalam file database. Hal ini dapat, suatu ketika, mengganggu operasi normal jalannya suatu program, kadang-kadang bisa loading nya lambat dls. untuk itu sesekali perlu di decompile, sebulan sekali atau sesuai kebutuhan, tidak terlalu sering. </p>
<p>Untuk menghapus potongan dari kode yang menyimpang ini, Anda dapat &#8220;Men-decompile&#8221; database Anda dan kemudian kembali me- recompile. Proses ini menghapus semua dari Kode Obyek yang telah dikompilasi, maka ketika Anda kembali me- recompile, Anda mendapatkan Kode Obyek yang mencerminkan Source Code saat ini. ada beberapa yang mengatakan ukuran size file jadi lebih kecil beberapa % dari ukuran sebelumnya, tetapi yang jauh lebih penting adalah aplikasi kembali normal dan berjalan lebih cepat beberapa detik dari sebelumnya.</p>
<p>Untuk Men-decompile database Access Anda, lakukan hal berikut:</p>
<p>1. Klik tombol <strong>Start</strong> pada task bar dan pilih <strong>Run</strong> &#8230;</p>
<p><img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/start-run.JPG" alt="" width="380" height="553" /><br />
<span id="more-240"></span></p>
<p>2. Pada kotak dialog Run, ketik berikut:<br />
&#8221; C:\Program Files\Microsoft Office\Office14\Msaccess.exe&#8221; /decompile</p>
<p>di mana bagian pertama (dalam tanda kutip) adalah path lengkap ke program Access. Jika Anda memiliki instalasi default, ada kemungkinan bahwa hal itu sama seperti yang tercantum di sini. Kemudian Klik <strong>OK.</strong><br />
<em>Catatan: jika Anda memiliki Windows Vista, cukup ketik baris perintah di kotak <strong>Start Search</strong> dari menu <strong>Start.</strong></em></p>
<p><img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query/start-run1.JPG" alt="" width="347" height="186" /></p>
<p>atau bisa buat shortcut decompile untuk Access 2010, jadi tinggal klik sewaktu-waktu jika diperlukan pada desktop, property nya sbb:</p>
<p><img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/shortcut-decompile.JPG" alt="" width="367" height="509" /></p>
<p>3. Ini akan membuka Access dan memungkinkan Anda untuk memilih database yang ingin dibuka. Apapun database yang dibuka akan di-decompile (karena perintah tersebut diatas).</p>
<p>4. Pilih database dan kemudian buka. Jika anda menggunakan Access 97 memberikan Anda sebuah dialog yang mengatakan Anda database telah di- decompile, tapi versi yang lebih baru tidak. Namun demikian, database otomatis telah di-decompile.</p>
<p>5. Buka Modul apapun dalam tampilan design view, atau Form atau Report dalam tampilan design view, dan pilih View &gt; Code  dari menu atau tekan <strong>Ctrl+G.</strong> Pada layar berikutnya, pilih <strong>Debug&gt; Compile</strong> dari menu bar.<br />
Catatan: <em>Pada Access 2007, Anda juga dapat memilih Database Tools pada ribbon, kemudian pilih Visual Basic.</em> <em>Kemudian pilih <strong>Debug&gt; Compile.<img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/decompile1.JPG" alt="" width="856" height="414" /></strong></em></p>
<p>&nbsp;</p>
<p>6. Database Anda sekarang telah di-decompile dan di-recompile ulang. langkah selanjutnya tinggal di compact and repair, kemudian jika menginginkan aplikasi bisa langsung di buat dalam format MDE/ACCDE.</p>
<p>7. Hal ini sangat ampuh untuk mengatasi problem Source Code yang tidak dapat jalan dengan normal pada saat kita selesai mengkonversi Access versi 2003 kebawah ke dalam Versi Access yang lebih baru misalnya Access 2010.<img class="alignnone" src="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/decompile2.JPG" alt="" width="784" height="337" /></p>
<p>Semoga bermanfaat.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=240&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2011/11/29/decompile-database-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/start-run.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35.query/start-run1.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/shortcut-decompile.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/decompile1.JPG" medium="image" />

		<media:content url="http://mugi.or.id/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.54.35/decompile2.JPG" medium="image" />
	</item>
		<item>
		<title>Membuat modul terbilang pada form</title>
		<link>http://cakyanto.wordpress.com/2010/11/28/membuat-modul-terbilang-pada-form/</link>
		<comments>http://cakyanto.wordpress.com/2010/11/28/membuat-modul-terbilang-pada-form/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 10:31:46 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[Modul]]></category>
		<category><![CDATA[terbilang]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=210</guid>
		<description><![CDATA[1.       Buat modulTerbilang copy paste dari module tersebut: ­­­­­­­­­ module terbilang Public Function terbilang(ByVal MyNumber, ByVal vmatauang) Dim MataUang As String, cMataUang As String Dim Rupiah, sen, Temp Dim DecimalPlace, Count ReDim Place(9) As String Dim a As Long cMataUang = vmatauang If cMataUang = &#8220;IDR&#8221; Then MataUang = &#8221; rupiah&#8221; ElseIf cMataUang = &#8220;USD&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=210&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1.       Buat modulTerbilang copy paste dari module tersebut: ­­­­­­­­­</p>
<div class="mceTemp">
<dl class="wp-caption alignleft">
<dt><a href="http://accesswizards.files.wordpress.com/2010/11/modterbilang1.jpg"><img title="module tebilang" src="http://accesswizards.files.wordpress.com/2010/11/modterbilang1.jpg?w=300&#038;h=188" alt="module tebilang" width="300" height="188" /></a> </dt>
<dd>module terbilang</dd>
</dl>
</div>
<blockquote><p>Public Function terbilang(ByVal MyNumber, ByVal vmatauang)<br />
Dim MataUang As String, cMataUang As String<br />
Dim Rupiah, sen, Temp<br />
Dim DecimalPlace, Count<br />
ReDim Place(9) As String<br />
Dim a As Long</p>
<p>cMataUang = vmatauang<br />
If cMataUang = &#8220;IDR&#8221; Then<br />
MataUang = &#8221; rupiah&#8221;<br />
ElseIf cMataUang = &#8220;USD&#8221; Then<br />
MataUang = &#8221; dolar&#8221;<br />
ElseIf cMataUang = &#8220;JPY&#8221; Then<br />
MataUang = &#8221; yen&#8221;<br />
ElseIf cMataUang = &#8220;SGD&#8221; Then<br />
MataUang = &#8221; dolar singapura&#8221;<br />
ElseIf cMataUang = &#8220;GBP&#8221; Then<br />
MataUang = &#8221; poundsterling&#8221;<br />
ElseIf cMataUang = &#8220;EUR&#8221; Then<br />
MataUang = &#8221; euro&#8221;<br />
Else<br />
MataUang = &#8221; &#8220;<br />
End If <span id="more-210"></span></p>
<p>Place(2) = &#8221; ribu&#8221;<br />
Place(3) = &#8221; juta&#8221;<br />
Place(4) = &#8221; milyar&#8221;<br />
Place(5) = &#8221; trilyun&#8221;<br />
&#8216; String representation of amount.<br />
MyNumber = Trim(Str(MyNumber) )<br />
&#8216; Position of decimal place 0 if none.<br />
DecimalPlace = InStr(MyNumber, &#8220;.&#8221;)<br />
&#8216; Convert sen and set MyNumber to dollar amount.<br />
If DecimalPlace &gt; 0 Then<br />
sen = GetTens(left( Mid(MyNumber, DecimalPlace + 1) &amp; &#8220;00&#8243;, 2))<br />
MyNumber = Trim(left(MyNumber, DecimalPlace &#8211; 1))<br />
End If<br />
Count = 1<br />
Do While MyNumber &lt;&gt; &#8220;&#8221;<br />
Temp = GetHundreds( right(MyNumber, 3))<br />
If Temp &lt;&gt; &#8220;&#8221; Then Rupiah = Temp &amp; Place(Count) &amp; Rupiah<br />
If left(Trim(Rupiah) , 9) = &#8220;Satu Ribu&#8221; Then<br />
Rupiah = &#8221; Seribu&#8221; &amp; Mid(Rupiah, 11)<br />
End If<br />
If Len(MyNumber) &gt; 3 Then<br />
MyNumber = left(MyNumber, Len(MyNumber) &#8211; 3)<br />
Else<br />
MyNumber = &#8220;&#8221;<br />
End If<br />
Count = Count + 1<br />
Loop<br />
Select Case Rupiah<br />
Case &#8220;&#8221;<br />
Rupiah = &#8220;nol&#8221;<br />
Case Else<br />
Rupiah = Rupiah<br />
End Select<br />
Select Case sen<br />
Case &#8220;&#8221;<br />
sen = &#8220;&#8221; &#8216; dan nol sen&#8221;<br />
Case Else<br />
sen = &#8221; koma&#8221; &amp; sen<br />
End Select<br />
terbilang = Trim(Rupiah &amp; sen &amp; MataUang)<br />
End Function</p>
<p>&#8216; Converts a number from 100-999 into text<br />
Function GetHundreds( ByVal MyNumber)<br />
Dim Result As String<br />
If Val(MyNumber) = 0 Then Exit Function<br />
MyNumber = right(&#8220;000&#8243; &amp; MyNumber, 3)<br />
&#8216; Convert the hundreds place.<br />
If Mid(MyNumber, 1, 1) &lt;&gt; &#8220;0&#8243; Then<br />
If Mid(MyNumber, 1, 1) = &#8220;1&#8243; Then<br />
Result = &#8221; seratus&#8221;<br />
Else<br />
Result = GetDigit(Mid( MyNumber, 1, 1)) &amp; &#8221; ratus&#8221;<br />
End If<br />
End If<br />
&#8216; Convert the tens and ones place.<br />
If Mid(MyNumber, 2, 1) &lt;&gt; &#8220;0&#8243; Then<br />
Result = Result &amp; GetTens(Mid( MyNumber, 2))<br />
Else<br />
Result = Result &amp; GetDigit(Mid( MyNumber, 3))<br />
End If<br />
GetHundreds = Result<br />
End Function</p>
<p>&#8216; Converts a number from 10 to 99 into text.<br />
Function GetTens(TensText)<br />
Dim Result As String<br />
Result = &#8220;&#8221; &#8216; Null out the temporary function value.<br />
If Val(left(TensText, 1)) = 1 Then &#8216; If value between 10-19&#8230;<br />
Select Case Val(TensText)<br />
Case 10: Result = &#8221; sepuluh&#8221;<br />
Case 11: Result = &#8221; sebelas&#8221;<br />
Case 12: Result = &#8221; dua belas&#8221;<br />
Case 13: Result = &#8221; tiga belas&#8221;<br />
Case 14: Result = &#8221; empat belas&#8221;<br />
Case 15: Result = &#8221; lima belas&#8221;<br />
Case 16: Result = &#8221; enam belas&#8221;<br />
Case 17: Result = &#8221; tujuh belas&#8221;<br />
Case 18: Result = &#8221; delapan belas&#8221;<br />
Case 19: Result = &#8221; sembilan belas&#8221;<br />
Case Else<br />
End Select<br />
Else &#8216; If value between 20-99&#8230;<br />
Select Case Val(left(TensText, 1))<br />
Case 2: Result = &#8221; dua puluh&#8221;<br />
Case 3: Result = &#8221; tiga puluh&#8221;<br />
Case 4: Result = &#8221; empat puluh&#8221;<br />
Case 5: Result = &#8221; lima puluh&#8221;<br />
Case 6: Result = &#8221; enam puluh&#8221;<br />
Case 7: Result = &#8221; tujuh puluh&#8221;<br />
Case 8: Result = &#8221; delapan puluh&#8221;<br />
Case 9: Result = &#8221; sembilan puluh&#8221;<br />
Case Else<br />
End Select<br />
Result = Result &amp; GetDigit(right( TensText, 1)) &#8216; Retrieve ones place.<br />
End If<br />
GetTens = Result<br />
End Function</p>
<p>&#8216; Converts a number from 1 to 9 into text.<br />
Function GetDigit(digit)<br />
Select Case Val(digit)<br />
Case 1: GetDigit = &#8221; satu&#8221;<br />
Case 2: GetDigit = &#8221; dua&#8221;<br />
Case 3: GetDigit = &#8221; tiga&#8221;<br />
Case 4: GetDigit = &#8221; empat&#8221;<br />
Case 5: GetDigit = &#8221; lima&#8221;<br />
Case 6: GetDigit = &#8221; enam&#8221;<br />
Case 7: GetDigit = &#8221; tujuh&#8221;<br />
Case 8: GetDigit = &#8221; delapan&#8221;<br />
Case 9: GetDigit = &#8221; sembilan&#8221;<br />
Case Else: GetDigit = &#8220;&#8221;<br />
End Select<br />
End Function</p></blockquote>
<p>2.       Buat textbox :</p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter">
<dt><a href="http://accesswizards.files.wordpress.com/2010/11/modterbilang2.jpg"><img class=" " title="modTerbilang2" src="http://accesswizards.files.wordpress.com/2010/11/modterbilang2.jpg?w=300&#038;h=66" alt="buat textbox" width="300" height="66" /></a> </dt>
<dd>buat text box</dd>
</dl>
</div>
<p>a.       txtMataUang</p>
<p>b.      txtAngka</p>
<p>c.       txtTerbilang</p>
<p>3.       untuk memudahkan skenarionya diatas saya buat jenis mata  uang model combo box, dgn mata uang IDR, USD, JPY, SGD, GBP, EUR.</p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter">
<dt><a href="http://accesswizards.files.wordpress.com/2010/11/modterbilang3.jpg"><img title="modTerbilang3" src="http://accesswizards.files.wordpress.com/2010/11/modterbilang3.jpg?w=300&#038;h=105" alt="Form Terbilang" width="300" height="105" /></a> </dt>
<dd>Form Terbilang</dd>
</dl>
</div>
<p>4.       Buat event after update pada txtAngka:</p>
<p>Private Sub txtAngka_AfterUpdate()</p>
<p>txtTerbilang = terbilang([txtAngka], [txtMataUang])</p>
<p>End Sub</p>
<p>Ini memang sering ditanyakan, semoga tidak bosan. Lebih baik Anda  buat sendiri dari awal, sehingga mengerti alurnya, dari pada instant.  Semoga bermanfaat</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=210&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/11/28/membuat-modul-terbilang-pada-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://accesswizards.files.wordpress.com/2010/11/modterbilang1.jpg?w=300" medium="image">
			<media:title type="html">module tebilang</media:title>
		</media:content>

		<media:content url="http://accesswizards.files.wordpress.com/2010/11/modterbilang2.jpg?w=300" medium="image">
			<media:title type="html">modTerbilang2</media:title>
		</media:content>

		<media:content url="http://accesswizards.files.wordpress.com/2010/11/modterbilang3.jpg?w=300" medium="image">
			<media:title type="html">modTerbilang3</media:title>
		</media:content>
	</item>
		<item>
		<title>Hitung rupiah dalam pecahan nominal</title>
		<link>http://cakyanto.wordpress.com/2010/11/19/hitung-rupiah-dalam-pecahan-nominal/</link>
		<comments>http://cakyanto.wordpress.com/2010/11/19/hitung-rupiah-dalam-pecahan-nominal/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 10:19:50 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=202</guid>
		<description><![CDATA[Dear para Master dan rekan, Perkenalkan saya baru di dunia pemrograman access, mohon bantuannya untuk memecahkan problem hitung rupiah dalam pecahan nominal. Honor Sri Purwanti sebesar Rp 1.225.600 (terlampir file .xls dengan function rounddown) terdiri dari pecahan nominal: 100.000=12 50.000=0 20.000=1 10.000=0 5.000=1 2.000=0 1.000=0 500=1 200=0 100=1 50=0 Atas attensi para Master dan rekan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=202&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="aui-3-2-0-113805">Dear para Master dan rekan,</div>
<div>Perkenalkan  saya baru di dunia pemrograman access, mohon bantuannya untuk  memecahkan problem hitung rupiah dalam pecahan nominal.</div>
<p>Honor Sri Purwanti sebesar <strong>Rp 1.225.600 </strong>(terlampir file .xls dengan function rounddown)<br />
terdiri dari pecahan nominal:<br />
<strong>100.000=12<br />
50.000=0<br />
20.000=1<br />
10.000=0<br />
5.000=1<br />
2.000=0<br />
1.000=0<br />
500=1<br />
200=0<br />
100=1</strong></p>
<p><strong>50=0<br />
</strong><br />
Atas attensi para Master dan  rekan saya ucapkan banyak terima kasih.</p>
<p>Solusinya:</p>
<div id="attachment_205" class="wp-caption alignleft" style="width: 370px"><a href="http://cakyanto.files.wordpress.com/2010/11/htgpecahan.jpg"><img class="size-full wp-image-205 " title="htgPecahan" src="http://cakyanto.files.wordpress.com/2010/11/htgpecahan.jpg?w=600" alt=""   /></a><p class="wp-caption-text">New Form </p></div>
<p>Buat :  New Form,  Textbox Nilai name txtNilai, Textbox 100.000 s/d 50  name text2 sd text21 dengan kondisi (Control source unbound).<span id="more-202"></span></p>
<div id="attachment_206" class="wp-caption alignleft" style="width: 370px"><a href="http://cakyanto.files.wordpress.com/2010/11/htgpecahan2.jpg"><img class="size-full wp-image-206 " title="htgPecahan2" src="http://cakyanto.files.wordpress.com/2010/11/htgpecahan2.jpg?w=600" alt=""   /></a><p class="wp-caption-text">behind the code</p></div>
<p>buat Command Button dengan name btnProses, nah di sini buat Event sbb:</p>
<p>Private Sub btnProses_Click()</p>
<p>ratusribu = Int(Val(txtNilai) / 100000)<br />
TratusRibu = ratusribu * 100000<br />
Text2 = ratusribu</p>
<p>limaPuluhRibu = Int((Val(txtNilai) &#8211; TratusRibu) / 50000)<br />
TlimaPuluhRibu = limaPuluhRibu * 50000<br />
Text4 = limaPuluhRibu</p>
<p>duaPuluhRibu = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu)) / 20000)<br />
tduaPuluhRibu = duaPuluhRibu * 20000<br />
Text6 = duaPuluhRibu</p>
<p>sepuluhribu = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu)) / 10000)<br />
TsePuluhRibu = sepuluhribu * 10000<br />
Text8 = sepuluhribu</p>
<p>limaribu = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu)) / 5000)<br />
TlimaRibu = limaribu * 5000<br />
Text10 = limaribu</p>
<p>duaribu = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu + TlimaRibu)) / 2000)<br />
TduaRibu = duaribu * 2000<br />
Text12 = duaribu</p>
<p>seribu = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu + TlimaRibu + TduaRibu)) / 1000)<br />
Tseribu = seribu * 1000<br />
Text14 = seribu</p>
<p>Limaratus = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu + TlimaRibu + TduaRibu + Tseribu)) / 500)<br />
TLimaratus = limaribu * 500<br />
Text16 = Limaratus</p>
<p>seratus = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu + TlimaRibu + TduaRibu + Tseribu + TLimaratus)) / 100)<br />
Tseratus = seratus * 100<br />
Text18 = seratus</p>
<p>limapuluh = Int((Val(txtNilai) &#8211; (TratusRibu + TlimaPuluhRibu + tduaPuluhRibu + TsePuluhRibu + TlimaRibu + TduaRibu + Tseribu + TLimaratus + Tseratus)) / 50)<br />
Tlimapuluh = limapuluh * 50<br />
Text21 = limapuluh</p>
<p>End Sub</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=202&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/11/19/hitung-rupiah-dalam-pecahan-nominal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/11/htgpecahan.jpg" medium="image">
			<media:title type="html">htgPecahan</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/11/htgpecahan2.jpg" medium="image">
			<media:title type="html">htgPecahan2</media:title>
		</media:content>
	</item>
		<item>
		<title>Form Tab Propinsi, Kabupaten, Kecamatan</title>
		<link>http://cakyanto.wordpress.com/2010/11/19/form-tab-propinsi-kabupaten-kecamatan/</link>
		<comments>http://cakyanto.wordpress.com/2010/11/19/form-tab-propinsi-kabupaten-kecamatan/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 09:42:13 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=199</guid>
		<description><![CDATA[kawan2 pendekar access&#8230;. ada gak contoh form terdiri dari 3 Tab. Tapi tiap tab 2 merefer ke tab 1, tab 3 merefer ke tab 2. Kasus: Saya punya 3 table : Tbl_propinsi, tbl_kabupaten, tbl_kecamatan Nah saya ingin membuat 3 Tab. Pada Tab 1 saya pilih Propinsi Jawa Timur, maka di Tab 2 tampil Kabupaten yg [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=199&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>kawan2 pendekar access&#8230;.</div>
<div>ada gak contoh form terdiri dari 3 Tab.</div>
<div>Tapi tiap tab 2 merefer ke tab 1, tab 3 merefer ke tab 2.</div>
<div>Kasus:</div>
<div>Saya punya 3 table : Tbl_propinsi, tbl_kabupaten, tbl_kecamatan</div>
<div>Nah saya ingin membuat 3 Tab.</div>
<div>Pada Tab 1 saya pilih Propinsi Jawa Timur, maka di Tab 2 tampil Kabupaten yg ada di Prop Jawa  Timur</div>
<div>Pada tab 2 saya pilih Kabupaten Banyuwangi, maka di Tab 3 tampil semua kecamatan di Kab Banyuwangi, dst&#8230;.</div>
<div>Thx kalau ada yg bisa ngasih saya contoh.</div>
<div></div>
<blockquote><p>Solusi ini mungkin bisa membantu:</p></blockquote>
<p>1.      Buat  3 table, tblKabupaten, tblKecamatan, tblPropinsi dengan ID =Autonumber (PK) dan relationship seperti  tampak pada gambar dibawah.</p>
<p>2.      <strong>Query1:</strong> SELECT tblPropinsi.Propinsi, tblKabupaten.Kabupaten, tblKecamatan.Kecamatan<br />
FROM tblPropinsi INNER JOIN (tblKabupaten INNER JOIN tblKecamatan ON tblKabupaten.ID = tblKecamatan.IDKab) ON tblPropinsi.ID = tblKabupaten.IDPropinsi;</p>
<p><strong>QueryTab2:</strong> SELECT tblKabupaten.ID, tblKabupaten.Kabupaten, tblKabupaten.IDPropinsi<br />
FROM tblKabupaten<br />
WHERE (((tblKabupaten.IDPropinsi)=[Forms]![Frm_Tab]![combo7]));</p>
<p><strong>QueryTab3:</strong> SELECT tblKecamatan.ID, tblKecamatan.Kecamatan, tblKecamatan.IDKab<br />
FROM tblKecamatan<br />
WHERE (((tblKecamatan.IDKab)=[forms]![Frm_Tab![combo12]));</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<span id="more-199"></span><br />
a.       Buat Tab Propinsi</p>
<p>&nbsp;</p>
<p>Column Count: <strong>2</strong></p>
<p>Column Widths: <strong>0cm;2cm (agar yang ditampilkan di combobox adalah column ke 2)</strong></p>
<p>&nbsp;</p>
<p>Buat ComboBox, property row source:</p>
<p><strong>SELECT tblPropinsi.ID, tblPropinsi.Propinsi</strong></p>
<p><strong>FROM tblPropinsi;</strong></p>
<p>Buat Event AfterUpdate:</p>
<p><strong>Private Sub Combo7_AfterUpdate()</strong></p>
<p><strong> Me.Refresh</strong></p>
<p><strong>End Sub</strong></p>
<p>b.       Buat Tab KABUPATEN:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Buat ComboBox, property row source:</p>
<p><strong>SELECT QueryTab2.ID, QueryTab2.Kabupaten, QueryTab2.IDPropinsi</strong></p>
<p><strong>FROM QueryTab2</strong></p>
<p><strong>WHERE (((QueryTab2.IDPropinsi)=[forms]![Frm_Tab]![combo7]));</strong></p>
<p>Buat Event AfterUpdate:</p>
<p><strong>Private Sub Combo12_AfterUpdate()</strong></p>
<p><strong> Me.Refresh</strong></p>
<p><strong>End Sub</strong></p>
<p>c.       Buat tab Kecamatan</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Buat ComboBox, property row source:</p>
<p><strong>SELECT tblKecamatan.ID, tblKecamatan.Kecamatan, tblKecamatan.IDKab</strong></p>
<p><strong>FROM tblKecamatan</strong></p>
<p><strong>WHERE (((tblKecamatan.IDKab)=[forms]![Frm_Tab]![combo12]));</strong></p>
<p>Buat Event AfterUpdate:</p>
<p><strong>Private Sub Combo14_AfterUpdate()</strong></p>
<p><strong> Me.Refresh</strong></p>
<p><strong>End Sub</strong></p>
<p><strong> </strong></p>
<p><strong>Regards,</strong></p>
<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=199&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/11/19/form-tab-propinsi-kabupaten-kecamatan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Report Amal Anda</title>
		<link>http://cakyanto.wordpress.com/2010/08/19/report-amal-anda/</link>
		<comments>http://cakyanto.wordpress.com/2010/08/19/report-amal-anda/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:47:00 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Report Amal Anda]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=165</guid>
		<description><![CDATA[Periode Bulan Agustus 2010, Ramadhan 1431 H: 1. Sendy Putra Wiratama, daftar domain dan hosting http://tamanarkana.org/ 2. Rezky Ivan, Design Web http://tamanarkana.org/ 3. Hendra Kusnadi, Cijeungjing Ciamis 4. Winaryanto Rochadi, Surabaya 5. Hamba Allah, Surabaya<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=165&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Periode Bulan Agustus 2010, Ramadhan 1431 H:</p>
<p>1. Sendy Putra Wiratama, daftar domain dan hosting <a title="http://tamanarkana.org/" href="http://tamanarkana.org/" target="_blank">http://tamanarkana.org/</a></p>
<p>2. Rezky Ivan, Design Web <a title="http://tamanarkana.org/" href="http://tamanarkana.org/" target="_blank">http://tamanarkana.org/</a></p>
<p>3. Hendra Kusnadi, Cijeungjing Ciamis</p>
<p>4. Winaryanto Rochadi, Surabaya</p>
<p>5. Hamba Allah, Surabaya</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=165&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/08/19/report-amal-anda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Share &#8211; Aplikasi Inventory &amp; Payroll untuk Amal</title>
		<link>http://cakyanto.wordpress.com/2010/08/19/share-aplikasi-inventory-payroll-untuk-amal/</link>
		<comments>http://cakyanto.wordpress.com/2010/08/19/share-aplikasi-inventory-payroll-untuk-amal/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:13:31 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Aplikasi untuk Amal]]></category>
		<category><![CDATA[Amal]]></category>
		<category><![CDATA[Aplikasi]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Payroll]]></category>
		<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=153</guid>
		<description><![CDATA[Selamat siang sahabat,  Saya ingin share aplikasi yg mungkin bermanfaat bagi kita. Karena di beberapa millist seringkali saya menjumpai pertanyaan dari cara membuat hingga ingin mengetahui fitur aplikasi untuk penjualan dan perhitungan stok dengan metode FIFO. Juga ingin kami share termasuk aplikasi Payroll yang kompatible dengan finger print. Untuk itu kami ingin berbagi aplikasi dgn [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=153&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<div id="attachment_158" class="wp-caption alignleft" style="width: 610px"><a href="http://cakyanto.files.wordpress.com/2010/08/inventory_4-copy1.jpg"><img class="size-full wp-image-158" title="Inventory_4 copy" src="http://cakyanto.files.wordpress.com/2010/08/inventory_4-copy1.jpg?w=600&#038;h=386" alt="Aplikasi Inventory, Point of Sales" width="600" height="386" /></a><p class="wp-caption-text">Aplikasi Inventory, Point of Sales</p></div>
<p>Selamat siang sahabat,  Saya ingin share aplikasi yg mungkin bermanfaat bagi kita. Karena di beberapa millist seringkali saya menjumpai pertanyaan dari cara membuat hingga ingin mengetahui fitur aplikasi untuk penjualan dan perhitungan stok dengan metode FIFO. Juga ingin kami share termasuk aplikasi Payroll yang kompatible dengan finger print.</p>
<p>Untuk itu kami ingin berbagi aplikasi dgn harga yg sangat-² terjangkau juga beramal, karena 25% dari dana tersebut akan kami sumbangkan kepada <a title="Yayasan Taman Arkana" href="http://tamanarkana.tk/" target="_blank">&#8220;Yayasan Taman Arkana&#8221;</a> <span style="font-size:small;">yang misinya </span><span style="font-size:small;">Membantu meningkatkan kualitas hidup anak-anak yang  kurang beruntung  (fakir miskin, terlantar &amp; yatim piatu) dengan  menyediakan sarana /  prasarana terutama dalam bidang pendidikan &amp;  pelatihan.</span><span style="font-size:small;"> untuk lebih lengkapnya bisa kunjungi di sini <a title="Yayasan Taman Arkana" href="http://tamanarkana.tk/" target="_blank">Yayasan Taman Arkana.</a> Secara berkala akan kami laporkan jumlah dana yang terkumpul dalam kategori &#8220;Laporan Amal Anda&#8221; untuk saat ini yang telah bersedia mendaftarkan domain dan hosting dengan nama <a title="TamanArkana.org" href="http://tamanarkana.org/" target="_blank">http://tamanarkana.org/</a> dari rekan Joomlaer Surabaya, Sendy Putra Wiratama dan Design Web </span>Rezky Ivan.<span style="font-size:small;"> </span></p>
<p><span style="font-size:small;"><br />
</span></p>
<p>Aplikasi Inventory yang cukup lengkap.<br />
Meliputi: PENJUALAN, PEMBELIAN, RETUR, MUTASI GUDANG, LAPORAN STOK, HUTANG/PIUTANG, dsb&#8230;<br />
Selain itu juga tersedia aplikasi Payroll dari absensi hingga strug gaji beserta potongan PPh, dan laporan terkait lainnya.</p>
<div id="attachment_157" class="wp-caption alignleft" style="width: 610px"><a href="http://cakyanto.files.wordpress.com/2010/08/payroll_5-copy.jpg"><img class="size-full wp-image-157" title="payroll_5 copy" src="http://cakyanto.files.wordpress.com/2010/08/payroll_5-copy.jpg?w=600&#038;h=352" alt="" width="600" height="352" /></a><p class="wp-caption-text">Payroll</p></div>
<div id="attachment_159" class="wp-caption alignleft" style="width: 598px"><a href="http://cakyanto.files.wordpress.com/2010/08/payroll_17-copy.jpg"><img class="size-full wp-image-159" title="payroll_17 copy" src="http://cakyanto.files.wordpress.com/2010/08/payroll_17-copy.jpg?w=600" alt=""   /></a><p class="wp-caption-text">Slip Gaji</p></div>
<p>Pengoperasian yang sangat mudah sehingga dapat dimengerti bahkan oleh kalangan  pemula.</p>
<p><strong>HANYA Rp 55.000,- (lima puluh lima ribu rupiah) sudah termasuk ongkos kirim (Wil.Jabodetabek)</strong></p>
<p>Adapun fitur aplikasi tsb secara garis besar sbb:</p>
<p>- Installer mudah digunakan untuk platform Windows XP, Vista, atau Windows7<br />
- Mudah dimengerti<br />
- Metode perhitungan FIFO<br />
- Stok Real Time ditampilkan saat terjadi transaksi Penjualan, Pembelian, Retur Beli/Jual, Mutasi In/Out<br />
- Backup/Restore file berupa *.ZIP yg terproteksi secara otomatis<br />
- Histori Penjualan per Customer/per Barang,<br />
- Histori Pembelian per Supplier/per Barang,<br />
- Harga Jual bertingkat dan bisa diubah langsung, yg bisa dibuat berpengaruh langsung atau tidak thd master harga jual<br />
- Satuan bertingkat: dimulai dari Pcs, Doz, Karton, dsb<br />
- System Proteksi  Password / ULS unik<br />
- Multi Gudang<br />
- Laporan PPn Keluaran dan PPn Masukan yg bisa ditransfer ke format Excel (*.XLS)<br />
- Laporan Kartu Stok per Barang<br />
- Laporan Stok per Periode<br />
- Laporan Pendapatan Kasir per Periode<br />
- Sistem Tutup Bulan sehingga memudahkan untuk memantau/mengendalikan stok fisik/stok opname<br />
- Buku bantu piutang Pelanggan (Customer Sub Ledger)<br />
- Buku bantu hutang Pemasok (Supplier Sub Ledger)</p>
<p>Bila rekan-² berminat silahkan transfer ke:</p>
<p>Mandiri no.Rek: 145-000-469-6528<br />
a/n Sumiyanto</p>
<p>CIMB Niaga no.Rek: 349-01-00-281182<br />
a/n Sumiyanto</p>
<p>Konfirmasi: 081-246-83700, 031-72472523, 088-193-15215</p>
<p>Email/YM/FB: sumiyanto@yahoo.com</p>
<p>Demikian informasi ini kami sampaikan, semoga bermanfaat dalam bulan yang penuh berkah ini.</p>
<p>Salam hangat,</p>
<p>Sumiyanto</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=153&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/08/19/share-aplikasi-inventory-payroll-untuk-amal/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/08/inventory_4-copy1.jpg" medium="image">
			<media:title type="html">Inventory_4 copy</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/08/payroll_5-copy.jpg" medium="image">
			<media:title type="html">payroll_5 copy</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/08/payroll_17-copy.jpg" medium="image">
			<media:title type="html">payroll_17 copy</media:title>
		</media:content>
	</item>
		<item>
		<title>Belajar SQL &#124; Basic 3</title>
		<link>http://cakyanto.wordpress.com/2010/07/26/belajar-sql-basic-3/</link>
		<comments>http://cakyanto.wordpress.com/2010/07/26/belajar-sql-basic-3/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 00:31:46 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[Belajar SQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=118</guid>
		<description><![CDATA[Pada ::: BELAJAR SQL &#124; BASIC 3 ::: ini saya ingin membahas tentang bagaimana menghapus data dan tabel dengan menggunakan perintah DELETE dan DROP. Berikut pembahasan lebih lanjut: DELETE adalah perintah untuk menghapus record dari suatu tabel. DELETE memiliki bentuk  umum: DELETE from nama tabel where kolom; Jadi misalkan kita memiliki tabel seperti dibawah ini: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=118&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pada <strong>::: BELAJAR SQL | BASIC 3 ::: </strong>ini saya ingin membahas tentang bagaimana menghapus data dan tabel dengan menggunakan perintah DELETE dan DROP. Berikut pembahasan lebih lanjut:</p>
<p>DELETE adalah perintah untuk menghapus record dari suatu tabel. DELETE memiliki bentuk  umum:</p>
<p>DELETE from nama tabel<br />
where kolom;</p>
<p>Jadi misalkan kita memiliki tabel seperti dibawah ini:</p>
<p>Mahasiswa</p>
<table border="1" cellpadding="0" width="56%">
<tbody>
<tr>
<td width="33%">NIM</td>
<td width="33%">Nama</td>
<td width="34%">Jurusan</td>
</tr>
<tr>
<td width="33%">2010</td>
<td width="33%">Fanny</td>
<td width="34%">Informatika</td>
</tr>
<tr>
<td width="33%">2011</td>
<td width="33%">Sherly</td>
<td width="34%">Design</td>
</tr>
<tr>
<td width="33%">2012</td>
<td width="33%">Lidya</td>
<td width="34%">Bisnis</td>
</tr>
</tbody>
</table>
<p>Lalu kita ingin menghapus data Mahasiswa dengan NIM = 2011. Caranya:</p>
<p>DELETE from Mahasiswa<br />
where NIM = 2011;</p>
<p>Hasilnya:</p>
<table border="1" cellpadding="0" width="56%">
<tbody>
<tr>
<td width="32%">NIM</td>
<td width="32%">Nama</td>
<td width="33%">Jurusan</td>
</tr>
<tr>
<td width="32%">2010</td>
<td width="32%">Fanny</td>
<td width="33%">Informatika</td>
</tr>
<tr>
<td width="32%">2012</td>
<td width="32%">Lidya</td>
<td width="33%">Bisnis</td>
</tr>
</tbody>
</table>
<p>Seperti yang anda lihat, bahwa seluruh record dari NIM 2011 terhapus. Dan bila anda ingin menghapus record mahasiswa bernama Fanny dan Lidya bersamaan, anda dapat gunakan perintah ini:</p>
<p>DELETE from Mahasiswa<br />
where Nama = &#8216;Fanny&#8217; or<br />
Nama = &#8216;Lidya&#8217;;</p>
<p>DELETE * from Mahasiswa;</p>
<p><strong>Menghapus Tabel</strong></p>
<p>Perintah untuk menghapus tabel adalah DROP. Bentuk umumnya:</p>
<p>DROP TABLE nama tabel;</p>
<p>Contoh: Menghapus tabel Mahasiswa beserta seluruh recordnya. Caranya adalah:</p>
<p>DROP TABLE Mahasiswa;</p>
<p><strong>Penutup</strong></p>
<p>Beberapa hal yang patut diperhatikan dalam penulisan perintah SQL adalah:</p>
<ol>
<li>Perhatikan      huruf besar &#8211; huruf kecil. Agus tidak sama dengan agus. Gaji_Pegawai tidak      sama dengan GajiPegawai</li>
<li>Jangan      lupa untuk membubuhi tanda titik koma ( ; ) di setiap akhir penulisan      perintah.</li>
</ol>
<p>Terakhir, saya ucapkan selamat karena anda telah mempelajari perintah-perintah DDL dan DML pada SQL. Dan anda bisa dibilang telah menguasai Tingkat Dasar SQL. Untuk mempelajari SQL Tingkat Lanjut akan saya bahas pada artikel lain. Keep Spirit  dan sukses untuk anda.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=118&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/07/26/belajar-sql-basic-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Belajar SQL &#124; Basic 2</title>
		<link>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-2/</link>
		<comments>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-2/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 23:45:00 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[Belajar SQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=115</guid>
		<description><![CDATA[Setelah pada ::: BELAJAR SQL &#124; BASIC 1 ::: kita bersama-sama belajar tentang bagaimana membuat tabel dan mengisikan datanya, selanjutnya pada ::: BELAJAR SQL &#124; BASIC 2 ::: ini saya akan membahas perintah SELECT dan UPDATE. Perintah SELECT digunakan untuk menampilkan tabel berdasarkan kriteria yang kita inginkan. Bentuk umum dari perintah SELECT adalah: select kolom [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=115&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Setelah pada <strong>::: BELAJAR SQL | BASIC 1 ::: </strong> kita bersama-sama belajar tentang bagaimana membuat tabel dan mengisikan datanya, selanjutnya pada <strong>::: BELAJAR SQL | BASIC 2 ::: </strong>ini saya akan membahas perintah SELECT dan UPDATE.</p>
<p>Perintah SELECT digunakan untuk menampilkan tabel berdasarkan kriteria yang kita inginkan. Bentuk umum dari perintah SELECT adalah:</p>
<p>select kolom from nama tabel<br />
where kondisi;</p>
<p>Misalkan kita memiliki sebuah tabel Sales seperti dibawah ini:</p>
<p>Sales</p>
<table border="1" cellpadding="0" width="61%">
<tbody>
<tr>
<td width="25%">Kode</td>
<td width="25%">Nama</td>
<td width="25%">Alamat</td>
<td width="25%">Gaji</td>
</tr>
<tr>
<td width="25%">SL01</td>
<td width="25%">Rahmad</td>
<td width="25%">Dupak</td>
<td width="25%">1,300,000</td>
</tr>
<tr>
<td width="25%">SL02</td>
<td width="25%">David</td>
<td width="25%">Sambikerep</td>
<td width="25%">1,300,000</td>
</tr>
<tr>
<td width="25%">SL03</td>
<td width="25%">Ays</td>
<td width="25%">Sambikerep</td>
<td width="25%">1,250,000</td>
</tr>
<tr>
<td width="25%">SL04</td>
<td width="25%">A.Iwan</td>
<td width="25%">Kenjeran</td>
<td width="25%">1,350,000</td>
</tr>
</tbody>
</table>
<p>Lalu dari tabel diatas yang ingin kita tampilkan hanya kolom Kode dan Nama. Perintahnya adalah:</p>
<p>SELECT Kode, Nama from Sales</p>
<p>Hasilnya adalah seperti dibawah ini:</p>
<table border="1" cellpadding="0" width="31%">
<tbody>
<tr>
<td width="48%">Kode</td>
<td width="48%">Nama</td>
</tr>
<tr>
<td width="48%">SL01</td>
<td width="48%">Rahmad</td>
</tr>
<tr>
<td width="48%">SL02</td>
<td width="48%">David</td>
</tr>
<tr>
<td width="48%">SL03</td>
<td width="48%">Ays</td>
</tr>
<tr>
<td width="48%">SL04</td>
<td width="48%">A.Iwan</td>
</tr>
</tbody>
</table>
<p>Untuk melihat seluruh kolom dalam tabel gunakan perintah SELECT * from Sales.</p>
<p>Bagaimana bila kita ingin menampilkan Kode dan Nama sales yang namanya berinisial A saja? Berikut ini perintahnya:<br />
SELECT Kode, Nama from Sales2<br />
where Nama LIKE &#8216;A%&#8217;;</p>
<p>Hasilnya adalah seperti dibawah ini:</p>
<table border="1" cellpadding="0" width="34%">
<tbody>
<tr>
<td width="48%">Kode</td>
<td width="48%">Nama</td>
</tr>
<tr>
<td width="48%">SL03</td>
<td width="48%">Ays</td>
</tr>
<tr>
<td width="48%">SL04</td>
<td width="48%">A.Iwan</td>
</tr>
</tbody>
</table>
<p>Bila anda menginginkan nama yang berakhiran s maka anda tinggal merubah &#8216;A%&#8217; menjadi &#8216;%s&#8217;.</p>
<p>Tantangan berikutnya, anda diminta menampilkan Kode, Nama, Alamat dan Gaji sales yang memiliki gaji kurang dari 1,300,000. Inilah caranya:</p>
<p>SELECT * from Sales<br />
where Gaji &lt; 1300000;</p>
<p>Hasilnya adalah tabel dibawah ini:</p>
<table border="1" cellpadding="0" width="72%">
<tbody>
<tr>
<td width="24%">Kode</td>
<td width="24%">Nama</td>
<td width="24%">Alamat</td>
<td width="24%">Gaji</td>
</tr>
<tr>
<td width="24%">SL03</td>
<td width="24%">Ays</td>
<td width="24%">Sambikerep</td>
<td width="24%">1,250,000</td>
</tr>
</tbody>
</table>
<p>Operator-operator lainnya seperti &gt;,=,&gt;=,&lt;=, juga dapat anda gunakan.</p>
<p><strong>Mengubah Data</strong></p>
<p>Untuk mengubah atau mengganti data lama dengan data yang baru kita gunakan perintah UPDATE. Perintah UPDATE memiliki bentuk umum:</p>
<p>UPDATE nama tabel<br />
set kolom = [data baru]<br />
where kolom = [data lama];</p>
<p>Misal saja kita ingin merubah nama Ays pada tabel Sales menjadi Anisah, caranya adalah sebagai berikut:</p>
<p>UPDATE Sales<br />
set Nama = &#8216;Anisah&#8217;<br />
where Nama = &#8216;Ays&#8217;;</p>
<p>Kemudian bila anda ingin menaikkan Gaji sebesar 50,000 bagi sales yang gaji semulanya masih dibawah 1,350,000, anda dapat menggunakan perintah dibawah ini:</p>
<p>update Sales<br />
set Gaji = Gaji + 50000<br />
where Gaji &lt; 1350000;</p>
<p>[Besambung...]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=115&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Belajar SQL &#124; Basic 1</title>
		<link>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-1/</link>
		<comments>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-1/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 23:36:46 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[Belajar SQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=112</guid>
		<description><![CDATA[[BELAJAR SQL] SQL adalah kependekan dari Structured Query Languange yang merupakan bahasa database standar industri. BELAJAR SQL merupakan panduan lengkap bagi yang ingin mengembangkan SQL menuju Database Server. Apakah SQL itu? SQL adalah kependekan dari Structured Query Languange yang merupakan bahasa database standar industri. SQL menyediakan Data Definiton Language (DDL) dan Data Manipulation Language (DML). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=112&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0" width="100%" align="left">
<tbody>
<tr>
<td valign="top"><strong>[</strong><strong>BELAJAR   SQL</strong><strong>]</strong><strong> </strong></td>
</tr>
<tr>
<td valign="top">SQL adalah kependekan dari Structured Query   Languange yang merupakan bahasa database standar industri. BELAJAR SQL merupakan panduan lengkap bagi yang   ingin mengembangkan SQL menuju Database Server.</td>
</tr>
</tbody>
</table>
<p><strong>Apakah SQL itu?</strong></p>
<p>SQL adalah kependekan dari Structured Query Languange yang merupakan bahasa database standar industri.</p>
<p>SQL menyediakan Data Definiton Language (DDL) dan Data Manipulation Language (DML). Walaupun dalam beberapa bagian saling bersangkutan, perintah DDL memungkinkan kita untuk membuat dan mendefinisikan tabel (CREATE TABLE), dan index (CREATE INDEX), sedangkan perintah DML memungkinkan anda untuk membangun query untuk mengambil data (SELECT) dari beberapa tabel, menyisip (INSERT) data baru, memperbaiki (UPDATE) data, dan menghapus (DELETE).</p>
<p>Sebelum mempelajari perintah-perintah DDL dan DML, terlebih dahulu kita akan mempelajari struktur sebuah tabel.</p>
<p><strong>Struktur Tabel</strong></p>
<p>Tabel Nilai</p>
<table border="1" cellpadding="0" width="46%">
<tbody>
<tr>
<td width="50%"><strong>Nama</strong></td>
<td width="50%"><strong>Nilai</strong></td>
</tr>
<tr>
<td width="50%">Salwa</td>
<td width="50%">95</td>
</tr>
<tr>
<td width="50%">Shafira</td>
<td width="50%">90</td>
</tr>
</tbody>
</table>
<p>Berdasarkan tabel diatas maka Nama dan Nilai disebut sebagai Kolom (Field) sedangkan Salwa dan Shafira disebut Baris (Record).</p>
<p>Selanjutnya kita beranjak memelajari perintah-perintah DDL dan DML.</p>
<p><strong>Membuat Tabel</strong></p>
<p>Untuk membuat tabel kita menggunakan perintah CREATE TABLE. Berikut adalah bentuk umum dari penggunaan perintah tersebut:</p>
<p>create table &#8220;namatabel&#8221;<br />
(&#8220;kolom1&#8243; &#8220;tipe data&#8221; (constraint),<br />
&#8220;kolom2&#8243; &#8220;tipe data&#8221; (constraint),<br />
&#8220;kolom3&#8243; &#8220;tipe data&#8221; (constraint));</p>
<p>Keterangan: Tipe Data dapat diisi dengan text, longtext, byte, bit, counter, short, long atau datetime. Sedangkan constraint adalah panjang data yang dipesan. Untuk lebih jelasnya akan saya berikan satu contoh:</p>
<p>Apabila kita ingin membuat sebuah tabel Pegawai yang berisikan kolom Nama, Jabatan dan Gaji, maka perintah yang harus ditulis adalah:</p>
<p>create table Pegawai<br />
(Nama text(10),<br />
Jabatan text(8),<br />
Gaji long(6));</p>
<p>Hasil dari perintah diatas adalah tabel dibawah ini:</p>
<p>Pegawai</p>
<table border="1" cellpadding="0" width="60%">
<tbody>
<tr>
<td width="33%">Nama</td>
<td width="33%">Jabatan</td>
<td width="34%">Gaji</td>
</tr>
</tbody>
</table>
<p><strong>Memasukkan Data Ke Tabel</strong></p>
<p>Untuk memasukkan data ke tabel kita menggunakan perintan INSERT. Bentuk umum dari perintah INSERT dapat anda lihat dibawah ini:</p>
<p>insert into &#8220;nama tabel&#8221;<br />
(kolom pertama,&#8230;kolom ke-n)<br />
nilai(nilai pertama,&#8230;nilai ke-n);</p>
<p>Keterangan: Nilai adalah data yang akan diisikan. Nilai pertama berarti nilai yang akan diisikan pada kolom pertama.</p>
<p>Masih menggunakan tabel Pegawai yang telah kita buat sebelumnya. Sekarang kita akan mencoba memasukkan data-datanya.</p>
<p>Data-data yang akan dimasukkan adalah: Nama : Yanto, Jabatan : Manager, Gaji : 5,000,000.</p>
<p>Perintah yang harus dituliskan adalah:</p>
<p>insert into Pegawai<br />
(Nama,Jabatan,Gaji)<br />
values (Yanto,Manager,5000000);</p>
<p>Untuk melihat hasilnya anda harus menggunakan perintah SELECT. Perintah ini akan saya bahas lebih lanjut pada pertemuan kedua. Untuk melihat tabel pegawai, gunakan perintah: SELECT * from Pegawai. Dan tabel anda seharusnya akan terlihat seperti ini:</p>
<table border="1" cellpadding="0" width="61%">
<tbody>
<tr>
<td width="33%">Nama</td>
<td width="33%">Jabatan</td>
<td width="34%">Gaji</td>
</tr>
<tr>
<td width="33%">Yanto</td>
<td width="33%">Manager</td>
<td width="34%">5,000,000</td>
</tr>
</tbody>
</table>
<p>Untuk memasukkan data-data berikutnya, anda dapat mengulangi kembali dengan metode yang sama.</p>
<p>﻿[Bersambung...]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=112&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/07/25/belajar-sql-basic-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>
	</item>
		<item>
		<title>Tambah PlugIn Itunes Menampilkan Lagu di status YM</title>
		<link>http://cakyanto.wordpress.com/2010/07/25/tambah-plugin-itunes-menampilkan-lagu-di-status-ym/</link>
		<comments>http://cakyanto.wordpress.com/2010/07/25/tambah-plugin-itunes-menampilkan-lagu-di-status-ym/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 23:27:46 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Itunes]]></category>
		<category><![CDATA[Tambah Plug in]]></category>
		<category><![CDATA[YM]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=109</guid>
		<description><![CDATA[Agar lebih asyik Chatting via YM sambil mendengarkan music dengan berbagai media player semisal WinAmp, WMP, Foobar2000, Itunes dijamin kamu akan lebih betah standby di depan Kompie kamu. Nah karena lagi ketagihan dengan berbagai player yang ada di Inet salah satunya akhirnya saya memutuskan untuk mencoba Itunes, kemarin-kemarin WMP dengan foxy tunes. Tetapi untuk mengaktifkan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=109&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Agar lebih asyik Chatting via YM sambil  mendengarkan music dengan berbagai media player semisal WinAmp, WMP,  Foobar2000, Itunes dijamin kamu akan lebih betah standby di depan Kompie  kamu.</p>
<div id="attachment_123" class="wp-caption alignleft" style="width: 310px"><a href="http://cakyanto.files.wordpress.com/2010/07/tambah-plug-in-itunes.jpg"><img class="size-medium wp-image-123" title="Tambah Plug In Itunes" src="http://cakyanto.files.wordpress.com/2010/07/tambah-plug-in-itunes.jpg?w=300&#038;h=293" alt="Tambah Plug In Itunes" width="300" height="293" /></a><p class="wp-caption-text">Tambah Plug In Itunes</p></div>
<p>Nah karena lagi ketagihan dengan berbagai player yang ada di Inet salah  satunya akhirnya saya memutuskan untuk mencoba Itunes, kemarin-kemarin  WMP dengan foxy tunes. Tetapi untuk mengaktifkan plugin Itunes  diperlukan satu plugin  lagi yang fungsinya untuk menampilkan status Yahoo Messenger kamu agar  terupdate sesuai  dengan lagu yang kamu mainkan saat itu juga (<em>now playing=np:</em>).   Nama pluginnya AMIP singkatan (Advanced mIRC Integration Plug-in), sebenarnya  plugin AMIP ini bukan hanya untuk Itunes saja, tetapi ini juga mendukung   untuk software musik player lainnya. penasaran&#8230;chect it out&#8230;this picture</p>
<p>Sebenarnya  sih ini tips dan trik lama, tapi patut dicoba kan bagi yang belum tahu  Ini link downloadnya ada dibawah, pilih versi yang sesuai dengan music  player  yang kamu punya. Selamat mencoba..</p>
<p>1. Download AMIP, kemudian install  <a title="http://amip.tools-for.net/wiki/amip/download" href="http://amip.tools-for.net/wiki/amip/download" target="_blank">http://amip.tools-for.net/wiki/amip/download </a></p>
<div id="attachment_131" class="wp-caption aligncenter" style="width: 310px"><a href="http://cakyanto.files.wordpress.com/2010/07/imap.jpg"><img class="size-medium wp-image-131" title="AMIP" src="http://cakyanto.files.wordpress.com/2010/07/imap.jpg?w=300&#038;h=89" alt="" width="300" height="89" /></a><p class="wp-caption-text">AMIP singkatan Advanced mIRC Integration Plug-in</p></div>
<p>2. Download Itunes, kemudian install  <a title="http://www.apple.com/itunes/download/" href="http://www.apple.com/itunes/download/" target="_blank">http://www.apple.com/itunes/download/ </a></p>
<p style="text-align:center;"><a href="http://cakyanto.files.wordpress.com/2010/07/itunes1.jpg"><img class="aligncenter" title="Itunes1" src="http://cakyanto.files.wordpress.com/2010/07/itunes1.jpg?w=300&#038;h=134" alt="" width="300" height="134" /></a></p>
<p style="text-align:center;"><a href="http://cakyanto.files.wordpress.com/2010/07/itunes2.jpg"><img class="aligncenter" title="Itunes2" src="http://cakyanto.files.wordpress.com/2010/07/itunes2.jpg?w=190&#038;h=300" alt="" width="190" height="300" /></a></p>
<p style="text-align:center;"><a href="http://cakyanto.files.wordpress.com/2010/07/itunes3.jpg"><img class="aligncenter" title="Itunes3" src="http://cakyanto.files.wordpress.com/2010/07/itunes3.jpg?w=300&#038;h=143" alt="" width="300" height="143" /></a></p>
<p>3. Pada YM klik button&gt; tambah plugin, kemudian akan muncul jendela baru pengelolaan plugin pilih itunes klik button&gt; mulai.</p>
<div id="attachment_138" class="wp-caption aligncenter" style="width: 277px"><a href="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym.jpg"><img class="size-full wp-image-138 " title="Tambah Plugin pada YM" src="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym.jpg?w=600" alt=""   /></a><p class="wp-caption-text">Klik Button Tambah Plugin pada YM</p></div>
<div id="attachment_139" class="wp-caption aligncenter" style="width: 310px"><a href="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym2.jpg"><img class="size-medium wp-image-139 " title="Tambah Plugin pada YM2" src="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym2.jpg?w=300&#038;h=277" alt="" width="300" height="277" /></a><p class="wp-caption-text">Klik Button Mulai pada jendela baru dengan opsi Itunes</p></div>
<p style="text-align:center;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=109&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/07/25/tambah-plugin-itunes-menampilkan-lagu-di-status-ym/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/tambah-plug-in-itunes.jpg?w=300" medium="image">
			<media:title type="html">Tambah Plug In Itunes</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/imap.jpg?w=300" medium="image">
			<media:title type="html">AMIP</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/itunes1.jpg?w=300" medium="image">
			<media:title type="html">Itunes1</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/itunes2.jpg?w=190" medium="image">
			<media:title type="html">Itunes2</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/itunes3.jpg?w=300" medium="image">
			<media:title type="html">Itunes3</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym.jpg" medium="image">
			<media:title type="html">Tambah Plugin pada YM</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2010/07/tambah-plugin-pada-ym2.jpg?w=300" medium="image">
			<media:title type="html">Tambah Plugin pada YM2</media:title>
		</media:content>
	</item>
		<item>
		<title>Sistem Informasi Management Rumah Sakit</title>
		<link>http://cakyanto.wordpress.com/2010/07/02/sistem-informasi-management-rumah-sakit/</link>
		<comments>http://cakyanto.wordpress.com/2010/07/02/sistem-informasi-management-rumah-sakit/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 08:45:23 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Aplikasi untuk Amal]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Aplikasi]]></category>
		<category><![CDATA[Informasi]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rumah Sakit]]></category>
		<category><![CDATA[SIM RS]]></category>
		<category><![CDATA[Sistem]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=191</guid>
		<description><![CDATA[Blog Sistem Informasi &#38; Managemen Rumah Sakit (SIM RS) sengaja kami persembahkan sebagai wujud kepedulian kami sebagai anak bangsa Indonesia, untuk menghadirkan aplikasi SIM RS dengan fitur lengkap namun tetap terjangkau dari sisi anggaran. Adapun fitur aplikasi SIM RS secara garis besar sbb: - Modul Medical Record (Rekam Medik) yang didalamnya meliputi:  ICD 10,  dan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=191&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>Blog Sistem Informasi &amp; Managemen Rumah Sakit <a href="http://simrumahsakit.wordpress.com/">(SIM RS)</a> sengaja kami persembahkan sebagai wujud kepedulian kami sebagai anak  bangsa Indonesia, untuk menghadirkan aplikasi SIM RS dengan fitur  lengkap namun tetap terjangkau dari sisi anggaran.</p>
<p>Adapun fitur aplikasi SIM RS secara garis besar sbb:</p>
<p>- Modul Medical Record (Rekam Medik) yang didalamnya meliputi:  ICD 10,  dan BOR dalam grafik Barber Johnson.</p>
<p><a href="http://simrumahsakit.files.wordpress.com/2010/08/micd.jpg"><img title="master ICD" src="http://simrumahsakit.files.wordpress.com/2010/08/micd.jpg?w=407&#038;h=388&#038;h=388" alt="master ICD 10" width="407" height="388" /></a></p>
<p>- Form entry RM dan cetak laporan RM berdasarkan klasifikasi ICD 10  untuk DX Utama, DX Lainnya, dan beberapa pencatatan data medis pasien  lainnya.</p>
<p><a href="http://simrumahsakit.files.wordpress.com/2010/08/micd2.jpg"><img title="micd2" src="http://simrumahsakit.files.wordpress.com/2010/08/micd2.jpg?w=450&#038;h=342&#038;h=342" alt="" width="450" height="342" /></a></p>
<p>- Installer mudah digunakan untuk platform Windows XP, Vista, atau Windows7<br />
- Mudah dimengerti</p>
<p>- Modul terintegrasi dari Front Office (Pendaftaran) hingga Back Office (Billing)<br />
- Stok menggunakan metode perhitungan FIFO<br />
- Stok Real Time ditampilkan saat terjadi transaksi Penjualan, Pembelian, Retur Beli/Jual, Mutasi In/Out<br />
- Backup/Restore file berupa *.ZIP yg terproteksi secara otomatis<br />
- Histori Penjualan per Pasien/per Barang,<br />
- Histori Pembelian per Detailer/per Barang,<br />
- Harga Jual bertingkat dan bisa diubah langsung, yg bisa dibuat berpengaruh langsung atau tidak thd master harga jual<br />
- Satuan bertingkat: dimulai dari Pcs, Doz, Karton, dsb<br />
- System Proteksi  Password / ULS unik<br />
- Multi Gudang<br />
- Laporan PPn Keluaran dan PPn Masukan yg bisa ditransfer ke format Excel (*.XLS)<br />
- Laporan Kartu Stok per Barang / Obat<br />
- Laporan Stok per Periode<br />
- Laporan Pendapatan Kasir per Periode<br />
- Sistem Tutup Bulan sehingga memudahkan untuk memantau/mengendalikan stok fisik/stok opname</p>
<p>Dilengkapi Modul Logistik:</p>
<p>- Buku bantu piutang Pelanggan (Customer Sub Ledger)<br />
- Buku bantu hutang Pemasok (Supplier Sub Ledger)</p>
<p><strong>Harga Merdeka: mulai dari ± 5 juta </strong></p>
<p>Untuk informasi lebih lanjut, silahkan kontak kami melalui e-mail:</p>
<p><a title="silakan double klik kirim ke kontak email ini" href="mailto:agunghend2001@yahoo.com" target="_blank">agunghend2001@yahoo.com</a>, <a title="silakan double klik kirim ke kontak email ini" href="mailto:sumiyanto@yahoo.com" target="_blank">sumiyanto@yahoo.com</a></p>
<p>atau HP: 088-193-75316, atau 081-246-83-700 (mr. Sumiyanto)</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=191&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/07/02/sistem-informasi-management-rumah-sakit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://simrumahsakit.files.wordpress.com/2010/08/micd.jpg?w=407&#38;h=388" medium="image">
			<media:title type="html">master ICD</media:title>
		</media:content>

		<media:content url="http://simrumahsakit.files.wordpress.com/2010/08/micd2.jpg?w=450&#38;h=342" medium="image">
			<media:title type="html">micd2</media:title>
		</media:content>
	</item>
		<item>
		<title>Emotikon tersembunyi (ssst!)</title>
		<link>http://cakyanto.wordpress.com/2010/06/24/emotikon-tersembunyi-ssst/</link>
		<comments>http://cakyanto.wordpress.com/2010/06/24/emotikon-tersembunyi-ssst/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 03:55:06 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Yahoo! Messenger]]></category>
		<category><![CDATA[Deskripsi]]></category>
		<category><![CDATA[Emotikon]]></category>
		<category><![CDATA[Kombinasi Tombol]]></category>
		<category><![CDATA[YM]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=185</guid>
		<description><![CDATA[Kejutkan teman Anda dengan karakter-karakter tersembunyi ini. Anda tidak akan menemukan karakter-karakter ini dalam menu emotikon, tapi Anda tetap bisa mengirimkannya dengan mengetikkan kode shortcut karakter langsung di dalam pesan Anda. Emotikon Yahoo! Messenger yang Tersedia (1) Emotikon Kombinasi Tombol Deskripsi 3 anak anjing ? saya tidak tahu %-( tidak mau dengar :@) babi 3:-O [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=185&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Kejutkan teman Anda dengan karakter-karakter tersembunyi ini.</h3>
<p>Anda tidak akan menemukan karakter-karakter ini dalam menu emotikon,  tapi Anda tetap bisa mengirimkannya dengan mengetikkan kode shortcut  karakter langsung di dalam pesan Anda.</p>
<table summary="Cari gambar emotikon yang ingin dimunculkan pada kolom pertama, lalu baca kolom kedua untuk mencari kombinasi karakter yang harus Anda ketik untuk menghasilkan emotikon tersebut. Pengguna screen reader dan aural browser mungkin untuk sementara harus menonaktifkan pembacaan emotikon dan mengaktifkan semua pembacaan tanda baca, atau baca kolom kedua karakter demi karakter agar bisa mendengar atau menemukan huruf braille untuk kombinasi karakter ini. (1)">
<caption>Emotikon Yahoo! Messenger yang Tersedia (1)</caption>
<thead>
<tr>
<th scope="col">Emotikon</th>
<th scope="col">Kombinasi Tombol</th>
<th scope="col">Deskripsi</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/108.gif" alt="anak anjing" /></td>
<td><kbd> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> 3</kbd></td>
<td>anak anjing</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/106.gif" alt="saya tidak tahu" /></td>
<td><kbd> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> ?</kbd></td>
<td>saya tidak tahu</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/107.gif" alt="tidak mau dengar" /></td>
<td><kbd>%-(</kbd></td>
<td>tidak mau dengar</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/49.gif" alt="babi" /></td>
<td><kbd>:@)</kbd></td>
<td>babi</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/50.gif" alt="sapi" /></td>
<td><kbd>3:-O</kbd></td>
<td>sapi</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/51.gif" alt="monyet" /></td>
<td><kbd> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> |)</kbd></td>
<td>monyet</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/52.gif" alt="ayam" /></td>
<td><kbd>~:&gt;</kbd></td>
<td>ayam</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/53.gif" alt="bunga mawar" /></td>
<td><kbd>@};-</kbd></td>
<td>bunga mawar</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/54.gif" alt="daun" /></td>
<td><kbd>%%-</kbd></td>
<td>daun</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/55.gif" alt="bendera" /></td>
<td><kbd>**==</kbd></td>
<td>bendera</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/56.gif" alt="labu" /></td>
<td><kbd>(~~)</kbd></td>
<td>labu</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/57.gif" alt="kopi" /></td>
<td><kbd>~O)</kbd></td>
<td>kopi</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/58.gif" alt="ide cemerlang" /></td>
<td><kbd>*-:)</kbd></td>
<td>ide cemerlang</td>
</tr>
</tbody>
</table>
<table summary="Cari gambar emotikon yang ingin dimunculkan pada kolom pertama, lalu baca kolom kedua untuk mencari kombinasi karakter yang harus Anda ketik untuk menghasilkan emotikon tersebut. Pengguna screen reader dan aural browser mungkin untuk sementara harus menonaktifkan pembacaan emotikon dan mengaktifkan semua pembacaan tanda baca, atau baca kolom kedua karakter demi karakter agar bisa mendengar atau menemukan huruf braille untuk kombinasi karakter ini. (2)">
<caption>Emotikon Yahoo! Messenger yang Tersedia (2)</caption>
<thead>
<tr>
<th scope="col">Emotikon</th>
<th scope="col">Kombinasi Tombol</th>
<th scope="col">Deskripsi</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/59.gif" alt="tengkorak" /></td>
<td><kbd>8-X</kbd></td>
<td>tengkorak</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/60.gif" alt="serangga" /></td>
<td><kbd>=:)</kbd></td>
<td>serangga</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/61.gif" alt="alien" /></td>
<td><kbd>&gt;-)</kbd></td>
<td>alien</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif" alt="frustasi" /></td>
<td><kbd>:-L</kbd></td>
<td>frustasi</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/63.gif" alt="berdoa" /></td>
<td><kbd>[-O&lt;</kbd></td>
<td>berdoa</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/64.gif" alt="mata duitan" /></td>
<td><kbd>$-)</kbd></td>
<td>mata duitan</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/65.gif" alt="bersiul" /></td>
<td><kbd>:-"</kbd></td>
<td>bersiul</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/66.gif" alt="babak belur" /></td>
<td><kbd>b-(</kbd></td>
<td>babak belur</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/67.gif" alt="damai" /></td>
<td><kbd> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &gt;-</kbd></td>
<td>damai</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/68.gif" alt="nggak boleh" /></td>
<td><kbd>[-X</kbd></td>
<td>nggak boleh</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/69.gif" alt="menari" /></td>
<td><kbd>\:D/</kbd></td>
<td>menari</td>
</tr>
</tbody>
</table>
<table summary="Cari gambar emotikon yang ingin dimunculkan pada kolom pertama, lalu baca kolom kedua untuk mencari kombinasi karakter yang harus Anda ketik untuk menghasilkan emotikon tersebut. Pengguna screen reader dan aural browser mungkin untuk sementara harus menonaktifkan pembacaan emotikon dan mengaktifkan semua pembacaan tanda baca, atau baca kolom kedua karakter demi karakter agar bisa mendengar atau menemukan huruf braille untuk kombinasi karakter ini. (3)">
<caption>Emotikon Yahoo! Messenger yang Tersedia (3)</caption>
<thead>
<tr>
<th scope="col">Emotikon</th>
<th scope="col">Kombinasi Tombol</th>
<th scope="col">Deskripsi</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/70.gif" alt="siapa takut" /></td>
<td><kbd>&gt;:/</kbd></td>
<td>siapa takut</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/71.gif" alt="hi..hi..hi" /></td>
<td><kbd> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</kbd></td>
<td>hi..hi..hi</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/76.gif" alt="cerewet" /></td>
<td><kbd>:-@</kbd></td>
<td>cerewet</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/77.gif" alt="salut" /></td>
<td><kbd>^:)^</kbd></td>
<td>salut</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/78.gif" alt="ah bisa aja" /></td>
<td><kbd>:-j</kbd></td>
<td>ah bisa aja</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/79.gif" alt="bintang" /></td>
<td><kbd>(*)</kbd></td>
<td>bintang</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/72.gif" alt="hiro" /></td>
<td><kbd>o-&gt;</kbd></td>
<td>hiro</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/73.gif" alt="billy" /></td>
<td><kbd>o=&gt;</kbd></td>
<td>billy</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/74.gif" alt="april" /></td>
<td><kbd>o-+</kbd></td>
<td>april</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/75.gif" alt="yin yang" /></td>
<td><kbd>(%)</kbd></td>
<td>yin yang</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/115.gif" alt="lebah" /></td>
<td><kbd>:bz</kbd></td>
<td>lebah</td>
</tr>
<tr>
<td><img src="http://l.yimg.com/a/i/us/msg/emoticons/transformer.gif" alt="transformer*" /></td>
<td><kbd>[..]</kbd></td>
<td>transformer*</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=185&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2010/06/24/emotikon-tersembunyi-ssst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/108.gif" medium="image">
			<media:title type="html">anak anjing</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/106.gif" medium="image">
			<media:title type="html">saya tidak tahu</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/107.gif" medium="image">
			<media:title type="html">tidak mau dengar</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/49.gif" medium="image">
			<media:title type="html">babi</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/50.gif" medium="image">
			<media:title type="html">sapi</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/51.gif" medium="image">
			<media:title type="html">monyet</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/52.gif" medium="image">
			<media:title type="html">ayam</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/53.gif" medium="image">
			<media:title type="html">bunga mawar</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/54.gif" medium="image">
			<media:title type="html">daun</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/55.gif" medium="image">
			<media:title type="html">bendera</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/56.gif" medium="image">
			<media:title type="html">labu</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/57.gif" medium="image">
			<media:title type="html">kopi</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/58.gif" medium="image">
			<media:title type="html">ide cemerlang</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/59.gif" medium="image">
			<media:title type="html">tengkorak</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/60.gif" medium="image">
			<media:title type="html">serangga</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/61.gif" medium="image">
			<media:title type="html">alien</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif" medium="image">
			<media:title type="html">frustasi</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/63.gif" medium="image">
			<media:title type="html">berdoa</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/64.gif" medium="image">
			<media:title type="html">mata duitan</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/65.gif" medium="image">
			<media:title type="html">bersiul</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/66.gif" medium="image">
			<media:title type="html">babak belur</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/67.gif" medium="image">
			<media:title type="html">damai</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/68.gif" medium="image">
			<media:title type="html">nggak boleh</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/69.gif" medium="image">
			<media:title type="html">menari</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/70.gif" medium="image">
			<media:title type="html">siapa takut</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/71.gif" medium="image">
			<media:title type="html">hi..hi..hi</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/76.gif" medium="image">
			<media:title type="html">cerewet</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/77.gif" medium="image">
			<media:title type="html">salut</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/78.gif" medium="image">
			<media:title type="html">ah bisa aja</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/79.gif" medium="image">
			<media:title type="html">bintang</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/72.gif" medium="image">
			<media:title type="html">hiro</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/73.gif" medium="image">
			<media:title type="html">billy</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/74.gif" medium="image">
			<media:title type="html">april</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/75.gif" medium="image">
			<media:title type="html">yin yang</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/115.gif" medium="image">
			<media:title type="html">lebah</media:title>
		</media:content>

		<media:content url="http://l.yimg.com/a/i/us/msg/emoticons/transformer.gif" medium="image">
			<media:title type="html">transformer*</media:title>
		</media:content>
	</item>
		<item>
		<title>Membuat Detail Button Dengan Pencil Stroke</title>
		<link>http://cakyanto.wordpress.com/2009/11/26/membuat-detail-button-dengan-pencil-stroke/</link>
		<comments>http://cakyanto.wordpress.com/2009/11/26/membuat-detail-button-dengan-pencil-stroke/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 09:11:54 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Photoshop]]></category>
		<category><![CDATA[Membuat Detail Button Dengan Pencil Stroke]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=97</guid>
		<description><![CDATA[from:dremi.info October 8th, 2008 by dr.emi hei kawand kawandh !!! kopi malam ini serasa enak banged, ni ada tutorial basic bwat newbie photoshop cara menggunakan pencil tool bwat bikin detail button. gw tepati janji gw bwat perbanyak tutorial photoshop bwat newbie juga. hei kawand kawandh !!! kopi malam ini serasa enak banged, ni ada tutorial [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=97&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a title="Permanent Link to Membuat Detail Button Dengan Pencil Stroke" rel="bookmark" href="http://www.dremi.info/tutorials/photoshop/membuat-detail-button-dengan-pencil-stroke.html">from:dremi.info</a></h2>
<p>October 8th, 2008 by dr.emi</p>
<p>hei kawand kawandh !!! kopi malam ini serasa enak banged, ni ada tutorial basic bwat newbie photoshop <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> cara menggunakan pencil tool bwat bikin detail button. gw tepati janji gw bwat perbanyak tutorial photoshop bwat newbie juga.</p>
<p>hei kawand kawandh !!! kopi malam ini serasa enak banged, ni ada tutorial basic bwat newbie photoshop <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> cara menggunakan pencil tool bwat bikin detail button. gw tepati janji gw bwat perbanyak tutorial photoshop bwat newbie juga.</p>
<p>huoke ! bikin canvas kecil aja, ukuran sekitar 200 x 100 pixel, backgorund na putih</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil24.png" alt="" width="403" height="279" /><span id="more-97"></span></p>
<p>kalo udah HAJAR tombol OK na !! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>sekarang siapin rectangle tool (U)</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil25.png" alt="" width="170" height="151" /></p>
<p>wabis ntu lu tarik dah bidang na di canvas kosong lu</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil1.png" alt="" width="184" height="85" /></p>
<p>ubah nama layer nya &#8220;dasar&#8221;, dengan double klik di text shape pada layer</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil28.png" alt="" width="197" height="47" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil29.png" alt="" width="200" height="68" /></p>
<p>pilih menu Layer &gt; Layer Style &gt; Color Overlay</p>
<p>kasi warna biru / sesuka lu</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil26.png" alt="" width="280" height="101" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil2.png" alt="" width="181" height="86" /></p>
<p>Dengan Zooming tool, gedein objek area lu</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil27.png" alt="" width="262" height="134" /></p>
<p>tros pencet KIBOR lu [CTRL+Click] pada Layer, nah ini bwat mbikin seleksi di sekitar bidang shapping lu</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil4.png" alt="" width="254" height="351" /></p>
<p>wabis ntu lu aktifin tool Eliptical Marquee na:</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil30.png" alt="" width="249" height="79" /></p>
<p>tros atur setting na menjadi intersect with selection <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil5.png" alt="" width="305" height="32" /></p>
<p>nah lu klik dan drag aja dah di sebagian area seleksi persegi yg terbentuk sebelum na</p>
<p><a href="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil6.png" target="_blank"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil6-400.png" border="0" alt="" width="400" height="182" /></a></p>
<p>jadi lu bakalan dapet seleksi kayak gini mbro <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><a href="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil7.png" target="_blank"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil7-400.png" border="0" alt="" width="400" height="156" /></a></p>
<p>sekarang bikin layer baru lewat menu : Layer &gt; New Layer, kasi nama layer &#8220;shadow&#8221;</p>
<p>tros lu aktipin tool gradient na, set menjadi transparent putih, dan klik + drag gradasi na mengikuti arah panah pada area seleksi</p>
<p><a href="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil10.png" target="_blank"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil10-400.png" border="0" alt="" width="400" height="133" /></a></p>
<p>kurangin opacity layer na menjadi 75 %. woke, jadi dah efek shadow na <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil12.png" alt="" width="275" height="296" /></p>
<p>sekarang ambil tool brush, ukuran nya: 3 px aja dan bikin layer baru namanya &#8220;botline&#8221; tarik dari kanan ke kiri pada area button</p>
<p><a href="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil13.png" target="_blank"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil13-400.png" border="0" alt="" width="400" height="187" /></a></p>
<p>tros kasi filter blur, pilih menu Filter &gt; Blur &gt; Gaussian Blur, dan kasi radius 1.5 px</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil14.png" alt="" width="355" height="333" /></p>
<p>hapus ujung kiri na make eraser tool</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil15.png" alt="" width="277" height="255" /></p>
<p>ubah opacity layer na menjadi 62 % dan blending layer Overlay</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil17.png" alt="" width="204" height="106" /></p>
<p>sekarang ambil pencil tool, berukuran 4 px dan warna putih, bikin 3 buah titik pada layer baru bernama &#8220;dot sign&#8221;</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil18.png" alt="" width="354" height="295" /></p>
<p>nah lo, wabis ntu kasiin aja layer style, drop shadow ama color overlay</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil8.png" alt="" width="278" height="302" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil31.png" alt="" width="256" height="114" /></p>
<p>tros kasi teks na, gw make ini ni: <a href="http://www.4shared.com/file/66055905/74c00e8a/Membuat_Detail_Button_Dengan_Pencil_Stroke.html" target="_blank">ACKNOWTT.TTF</a> bwat font na. klik aja bwat donlot</p>
<p>wabis ntu lu kasiin dah style drop shadow dikiiiiiiiiiiiiiiiiiiiiiiiit aja bwat teks na</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil32.png" alt="" width="244" height="301" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil20.png" alt="" width="136" height="68" /></p>
<p>terakhir ambil lagi pencil tool lu, pake size 1 px dan warna item dah, bikin layer baru nama na detail stroke, tros lu klik dan drag mengelilingi pinggiran button lu</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil21.png" alt="" width="368" height="179" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil22.png" alt="" width="383" height="159" /></p>
<p>jadi ke gini dah</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil-final.jpg" alt="" width="120" height="60" /></p>
<p>nah untuk merubah warna lu bisa ganti layer style untuk color overlay na pada layer dasar na</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil.jpg" alt="" width="418" height="60" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=97&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2009/11/26/membuat-detail-button-dengan-pencil-stroke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil24.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil25.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil1.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil28.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil29.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil26.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil2.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil27.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil4.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil30.png" medium="image" />

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil5.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil6-400.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil7-400.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil10-400.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil12.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil13-400.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil14.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil15.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil17.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil18.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil8.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil31.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil32.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil20.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil21.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil22.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil-final.jpg" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Membuat%20Detail%20Button%20Dengan%20Pencil%20Stroke/detail-button-pencil.jpg" medium="image" />
	</item>
		<item>
		<title>Web Design Layout Plus Implementasi jQuery Tab Content</title>
		<link>http://cakyanto.wordpress.com/2009/11/26/web-design-layout-plus-implementasi-jquery-tab-content/</link>
		<comments>http://cakyanto.wordpress.com/2009/11/26/web-design-layout-plus-implementasi-jquery-tab-content/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 09:06:22 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Photoshop]]></category>
		<category><![CDATA[Web Design Layout Plus Implementasi jQuery Tab Content]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=95</guid>
		<description><![CDATA[from:dremi.info November 26th, 2008 by dr.emi Welcome back friend ! tutorial ini menjelaskan bagaimana membuat sebuah layout yang interaktif. Penggabungan dari designing web layout menggunakan photoshop dan Editing dengan HTML+CSS. Kemudian mengimplementasikannya menggunakan jQuery Ajax saat meload PHP Content Yang lu perlukan adalah: -Photoshop -HTML+CSS -jQuery Ajax -PHP Part I Designing Website Layout Buka Photoshop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=95&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a title="Permanent Link to Web Design Layout Plus Implementasi jQuery Tab Content" rel="bookmark" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#more-87">from:dremi.info</a></h2>
<p>November 26th, 2008 by dr.emi</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/images-header200/jQuery-tab.png" alt="" /> Welcome back friend ! tutorial ini menjelaskan bagaimana membuat sebuah layout yang interaktif. Penggabungan dari designing web layout menggunakan photoshop dan Editing dengan HTML+CSS. Kemudian mengimplementasikannya menggunakan jQuery Ajax saat meload PHP Content</p>
<p>Yang lu perlukan adalah:</p>
<p>-Photoshop<br />
-HTML+CSS<br />
-jQuery Ajax<br />
-PHP</p>
<h3>Part I Designing Website Layout</h3>
<p>Buka Photoshop lu, bikin ukuran kanvas kaya gini:</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs31.png" alt="" width="530" height="323" /></div>
<p>Pilih Rectangle Marquee Tool, bikin objek header ke gini:</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs1.png" alt="" width="498" height="82" /></div>
<p>Apply beberapa layer style :</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs32.png" alt="" width="278" height="293" /></div>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs33.png" alt="" width="300" height="206" /></div>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs34.png" alt="" width="422" height="488" /></div>
<p>Liat dlu hasilna</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs2.png" alt="" width="299" height="149" /></div>
<p>Sekarang bikin garis berwarna putih make single row marquee tool, antara gradien dan drop shadow. fill line make warna putih</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs35.png" alt="" width="348" height="266" /></div>
<p>Gunakan rounded rectangle tool bwat mbikin navigation button, gunakan radius sesuai keinginan lu</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs36.png" alt="" width="232" height="338" /></div>
<p>apply layer style</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs37.png" alt="" width="268" height="300" /></div>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs38.png" alt="" width="262" height="204" /></div>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs39.png" alt="" width="423" height="486" /></div>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs40.png" alt="" width="262" height="278" /></div>
<p>Semua gradien ada dalam paket download tutorial na</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs5.png" alt="" width="177" height="106" /></div>
<p>Pencet [CTRL+Click] pada layer navigation button, bwat mbikin seleksi sekitar button.</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs41.png" alt="" width="143" height="57" /></div>
<p>Pilih seleksi Eliptical Marquee Tool dengan option option : Intersect with selection. Truzzz buat seleksi oval diatas seleksi sebelumna</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs7.png" alt="" width="236" height="84" /></div>
<p>Lu bakalan dapet hasil seleksi ke gini</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs8.png" alt="" width="256" height="85" /></div>
<p>Pencet [CTRL+D] bwat Deselect</p>
<p>Tros transform objek na vertikal, dengan mencet [CTRL+T] -&gt; Flip Vertical</p>
<p>Pilih menu Filter &gt; Blur &gt; Gaussian Blur. Kasiin 2 px radius.</p>
<p>dan ubah blending layerna menjadi Overlay</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs6.png" alt="" width="171" height="87" /></div>
<p>Kasi text button na juga</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs9.png" alt="" width="159" height="67" /></div>
<p>Lu bisa group ksmua layer navigasi ke dalam satu group, dan duplikat gorup na mnjadi beberapa group</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs10.png" alt="" width="360" height="75" /></div>
<p>Hampir selesai layoutna, kasiin objek icon dan text sebagai title web na</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs11.png" alt="" width="199" height="119" /></div>
<p>Terakhir bikinin footer dengan cara sederhana kaya mbikin header</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs14.png" alt="" width="487" height="86" /></div>
<p>Review dlo hasil akhir layout na</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs142.png" alt="" width="478" height="300" /></div>
<h3>Part II Slicing Images</h3>
<p>Bagian ini kita bakalan ambil gambar tertentu saja, ambil bagian na dengan slicing tool yang nantina bakalan diperlukan bwat bikin code CSS na</p>
<p>Pertama adlah slice navigasi</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs15.png" alt="" width="593" height="329" /></div>
<p>Pilih  File &gt; Save for Web and Device</p>
<div id="img"><a href="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs16.png" target="_blank"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs16400.png" border="0" alt="" width="400" height="282" /></a></div>
<p>Inget ye: pilihna nyang Selected Slice dowank</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs17.png" alt="" width="368" height="127" /></div>
<p>Selanjutna terusin ke slice berikutna, kaya bg-header, bg-footer dan logo</p>
<p>Jadi lu bakalan dapet beberapa images yang dibutuhkan dalam coding CSS na</p>
<div id="img"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs42.png" alt="" width="367" height="267" /></div>
<h3>Part III Make HTML+CSS Code</h3>
<p>Bwat mbikin web lu knceng di load saat dibuka di browser, Less Table adaalh salah satu cra terbaik <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>Gw paling suka bagian ini, buka Dreamweaver lu, bikin file CSS</p>
<p>Nah ini code CSS na:</p>
<div id="highlighter_210800">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>001.</code><code> </code><code>&lt;style type=</code><code>"text/css"</code><code>&gt;</code></div>
<div><code>002.</code><code>html,body{</code></div>
<div><code>003.</code><code>margin</code><code>:</code><code>0</code><code>;</code></div>
<div><code>004.</code><code>padding</code><code>:</code><code>0</code><code>;</code></div>
<div><code>005.</code><code>border</code><code>:</code><code>0</code><code>;</code></div>
<div><code>006.</code><code>/* \*/</code></div>
<div><code>007.</code><code>height</code><code>:</code><code>100%</code><code>;</code></div>
<div><code>008.</code><code>/* Last height declaration hidden from Mac IE 5.x */</code></div>
<div><code>009.</code><code>}</code></div>
<div><code>010.</code><code>body {</code></div>
<div><code>011.</code><code>background</code><code>:</code><code>#ffffff</code> <code>url</code><code>(images/bg-header.gif) </code><code>0</code> <code>0</code> <code>repeat-x</code><code>;</code></div>
<div><code>012.</code><code>color</code><code>:</code><code>#000000</code><code>;</code></div>
<div><code>013.</code><code>min-width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>014.</code><code>}</code></div>
<div><code>015.</code><code>#mainPan {</code></div>
<div><code>016.</code><code>width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>017.</code><code>position</code><code>:</code><code>relative</code><code>;</code></div>
<div><code>018.</code><code>margin</code><code>:</code><code>0</code> <code>auto</code><code>;</code></div>
<div><code>019.</code><code>}</code></div>
<div><code>020.</code><code>#bodyPan {</code></div>
<div><code>021.</code><code>width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>022.</code><code>margin</code><code>:</code><code>0</code> <code>auto</code><code>;</code></div>
<div><code>023.</code><code>}</code></div>
<div><code>024.</code><code>#headerPan {</code></div>
<div><code>025.</code><code>width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>026.</code><code>height</code><code>:</code><code>127px</code><code>;</code></div>
<div><code>027.</code><code>margin</code><code>:</code><code>0px</code><code>;</code></div>
<div><code>028.</code><code>padding</code><code>:</code><code>0px</code><code>;</code></div>
<div><code>029.</code><code>}</code></div>
<div><code>030.</code><code>#headerPan img.logo {</code></div>
<div><code>031.</code><code>border</code><code>:</code><code>0px</code><code>;</code></div>
<div><code>032.</code><code>width</code><code>:</code><code>148px</code><code>;</code></div>
<div><code>033.</code><code>height</code><code>:</code><code>69px</code><code>;</code></div>
<div><code>034.</code><code>margin-left</code><code>:</code><code>20px</code><code>;</code></div>
<div><code>035.</code><code>margin-top</code><code>:</code><code>10px</code><code>;</code></div>
<div><code>036.</code><code>}</code></div>
<div><code>037.</code><code>/* MENU TAB NAVIGATION */</code></div>
<div><code>038.</code><code>#tabs {</code></div>
<div><code>039.</code><code>line-height</code><code>:</code><code>normal</code><code>;</code></div>
<div><code>040.</code><code>top</code><code>: </code><code>25px</code><code>;</code></div>
<div><code>041.</code><code>right</code><code>:</code><code>10px</code><code>;</code></div>
<div><code>042.</code><code>position</code><code>:</code><code>absolute</code><code>;</code></div>
<div><code>043.</code><code>}</code></div>
<div><code>044.</code><code>#tabs ul {</code></div>
<div><code>045.</code><code>margin</code><code>:</code><code>0</code><code>;</code></div>
<div><code>046.</code><code>padding</code><code>:</code><code>10px</code> <code>10px</code> <code>0</code> <code>50px</code><code>;</code></div>
<div><code>047.</code><code>list-style</code><code>:</code><code>none</code><code>;</code></div>
<div><code>048.</code><code>}</code></div>
<div><code>049.</code><code>#tabs li {</code></div>
<div><code>050.</code><code>display</code><code>:</code><code>inline</code><code>;</code></div>
<div><code>051.</code><code>margin</code><code>:</code><code>0</code><code>;</code></div>
<div><code>052.</code><code>padding</code><code>:</code><code>0</code><code>;</code></div>
<div><code>053.</code><code>}</code></div>
<div><code>054.</code><code>#tabs a {</code></div>
<div><code>055.</code><code>font-size</code><code>:</code><code>12px</code><code>;</code></div>
<div><code>056.</code><code>font-family</code><code>:</code><code>Arial</code><code>, </code><code>Helvetica</code><code>, </code><code>sans-serif</code><code>;</code></div>
<div><code>057.</code><code>color</code><code>:</code><code>#ffffff</code><code>;</code></div>
<div><code>058.</code><code>float</code><code>:</code><code>left</code><code>;</code></div>
<div><code>059.</code><code>background</code><code>:</code><code>url</code><code>(images/bg-navigasi.gif) </code><code>no-repeat</code> <code>left</code> <code>top</code><code>;</code></div>
<div><code>060.</code><code>margin</code><code>:</code><code>0</code><code>;</code></div>
<div><code>061.</code><code>padding-top</code><code>:</code><code>10px</code><code>;</code></div>
<div><code>062.</code><code>text-decoration</code><code>:</code><code>none</code><code>;</code></div>
<div><code>063.</code><code>width</code><code>:</code><code>137px</code><code>;</code></div>
<div><code>064.</code><code>height</code><code>:</code><code>59px</code><code>;</code></div>
<div><code>065.</code><code>text-align</code><code>:</code><code>center</code><code>; </code><code>/*for IE + FF right here*/</code></div>
<div><code>066.</code><code>}</code></div>
<div><code>067.</code><code>#tabs a:hover {</code></div>
<div><code>068.</code><code>font-size</code><code>:</code><code>12px</code><code>;</code></div>
<div><code>069.</code><code>font-family</code><code>:</code><code>Arial</code><code>, </code><code>Helvetica</code><code>, </code><code>sans-serif</code><code>;</code></div>
<div><code>070.</code><code>color</code><code>: </code><code>#FFCC00</code><code>;</code></div>
<div><code>071.</code><code>}</code></div>
<div><code>072.</code><code>.spacer {</code></div>
<div><code>073.</code><code>margin-bottom</code><code>:</code><code>20px</code><code>;</code></div>
<div><code>074.</code><code>}</code></div>
<div><code>075.</code><code>/* CONTENT */</code></div>
<div><code>076.</code><code>#contenPan {</code></div>
<div><code>077.</code><code>font-size</code><code>:</code><code>11px</code><code>;</code></div>
<div><code>078.</code><code>color</code><code>:</code><code>#666666</code><code>;</code></div>
<div><code>079.</code><code>font-family</code><code>:</code><code>Arial</code><code>, </code><code>Helvetica</code><code>, </code><code>sans-serif</code><code>;</code></div>
<div><code>080.</code><code>width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>081.</code><code>margin</code><code>:</code><code>0px</code><code>;</code></div>
<div><code>082.</code><code>}</code></div>
<div><code>083.</code><code>#contenPan h</code><code>2</code> <code>{</code></div>
<div><code>084.</code><code>font-size</code><code>:</code><code>14px</code><code>;</code></div>
<div><code>085.</code><code>font-family</code><code>:</code><code>Arial</code><code>, </code><code>Helvetica</code><code>, </code><code>sans-serif</code><code>;</code></div>
<div><code>086.</code><code>color</code><code>:</code><code>#006699</code><code>;</code></div>
<div><code>087.</code><code>}</code></div>
<div><code>088.</code><code>#contenPan a {</code></div>
<div><code>089.</code><code>color</code><code>:</code><code>#0066CC</code><code>;</code></div>
<div><code>090.</code><code>text-decoration</code><code>:</code><code>none</code><code>;</code></div>
<div><code>091.</code><code>}</code></div>
<div><code>092.</code><code>#contenPan a:hover {</code></div>
<div><code>093.</code><code>color</code><code>: </code><code>#FF0000</code><code>;</code></div>
<div><code>094.</code><code>text-decoration</code><code>:</code><code>none</code><code>;</code></div>
<div><code>095.</code><code>}</code></div>
<div><code>096.</code><code>/* FOOTER */</code></div>
<div><code>097.</code><code>#footerMainPan {</code></div>
<div><code>098.</code><code>position</code><code>:</code><code>relative</code><code>;</code></div>
<div><code>099.</code><code>clear</code><code>: </code><code>both</code><code>;</code></div>
<div><code>100.</code><code>width</code><code>:</code><code>100%</code><code>;</code></div>
<div><code>101.</code><code>height</code><code>:</code><code>138px</code><code>; </code><code>/*for FF add 10px;*/</code></div>
<div><code>102.</code><code>overflow</code><code>:</code><code>hidden</code><code>;</code></div>
<div><code>103.</code><code>background</code><code>:</code><code>url</code><code>(images/bg-footer.gif) </code><code>30px</code> <code>center</code> <code>repeat-x</code><code>;</code></div>
<div><code>104.</code><code>text-align</code><code>:</code><code>center</code><code>;</code></div>
<div><code>105.</code><code>}</code></div>
<div><code>106.</code><code>#footerPan {</code></div>
<div><code>107.</code><code>padding-top</code><code>:</code><code>50px</code><code>;</code></div>
<div><code>108.</code><code>font-family</code><code>:</code><code>Arial</code><code>, </code><code>Helvetica</code><code>, </code><code>sans-serif</code><code>;</code></div>
<div><code>109.</code><code>font-size</code><code>:</code><code>14px</code><code>;</code></div>
<div><code>110.</code><code>color</code><code>: </code><code>#666666</code><code>;</code></div>
<div><code>111.</code><code>width</code><code>:</code><code>960px</code><code>;</code></div>
<div><code>112.</code><code>height</code><code>:</code><code>88px</code><code>;</code></div>
<div><code>113.</code><code>background</code><code>: </code><code>url</code><code>(images/cutter.gif) </code><code>right</code> <code>top</code> <code>no-repeat</code><code>;</code></div>
<div><code>114.</code><code>margin</code><code>:</code><code>0px</code><code>;</code></div>
<div><code>115.</code><code>}</code></div>
<div><code>116.</code><code>#footerPan a {</code></div>
<div><code>117.</code><code>color</code><code>: </code><code>#0099FF</code><code>; </code><code>text-decoration</code><code>:</code><code>none</code><code>;</code></div>
<div><code>118.</code><code>}</code></div>
<div><code>119.</code><code>#footerPan a:hover {</code></div>
<div><code>120.</code><code>color</code><code>: </code><code>#333399</code><code>; </code><code>text-decoration</code><code>:</code><code>none</code><code>;</code></div>
<div><code>121.</code><code>}</code></div>
<div><code>122.</code><code>&lt;/style&gt;</code></div>
</div>
</div>
<p>save dan kasi nama <strong>style.css</strong></p>
<p>sekarang kite bakalan mbikin <strong>index.html</strong></p>
<p>dan ini code ma:</p>
<div id="highlighter_25795">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>01.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"mainPan"</code><code>&gt;</code></div>
<div><code>02.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"bodyPan"</code><code>&gt;</code></div>
<div><code>03.</code></div>
<div><code>04.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"headerPan"</code><code>&gt;</code></div>
<div><code>05.</code><code>&lt;</code><code>img</code> <code>src</code><code>=</code><code>"images/logo.gif"</code> <code>class</code><code>=</code><code>"logo"</code> <code>/&gt;</code></div>
<div><code>06.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"tabs"</code><code>&gt;</code></div>
<div><code>07.</code><code>&lt;</code><code>ul</code><code>&gt;</code></div>
<div><code>08.</code><code>&lt;</code><code>li</code><code>&gt;&lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;Home&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>li</code><code>&gt;</code></div>
<div><code>09.</code><code>&lt;</code><code>li</code><code>&gt;&lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;Photoshop&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>li</code><code>&gt;</code></div>
<div><code>10.</code><code>&lt;</code><code>li</code><code>&gt;&lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;CSS&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>li</code><code>&gt;</code></div>
<div><code>11.</code><code>&lt;</code><code>li</code><code>&gt;&lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;PHP&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>li</code><code>&gt;</code></div>
<div><code>12.</code><code>&lt;</code><code>li</code><code>&gt;&lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;AJAX&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>li</code><code>&gt;</code></div>
<div><code>13.</code><code>&lt;/</code><code>ul</code><code>&gt;</code></div>
<div><code>14.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>15.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>16.</code></div>
<div><code>17.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"contenPan"</code><code>&gt;</code></div>
<div><code>18.</code><code>&lt;</code><code>h2</code><code>&gt;Heloo....&lt;/</code><code>h2</code><code>&gt;</code></div>
<div><code>19.</code><code>&lt;</code><code>p</code><code>&gt;This is main Content &lt;</code><code>a</code> <code>href</code><code>=</code><code>"#"</code><code>&gt;[link]&lt;/</code><code>a</code><code>&gt;&lt;/</code><code>p</code><code>&gt;</code></div>
<div><code>20.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>21.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>22.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>23.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>24.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>25.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>26.</code><code>&lt;</code><code>div</code> <code>class</code><code>=</code><code>"spacer"</code><code>&gt;&amp;nbsp;&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>27.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>28.</code></div>
<div><code>29.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>30.</code></div>
<div><code>31.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>32.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"footerMainPan"</code><code>&gt;</code></div>
<div><code>33.</code><code>&lt;</code><code>div</code> <code>id</code><code>=</code><code>"footerPan"</code><code>&gt;</code></div>
<div><code>34.</code><code>&amp;copy; 2008 Web Design Ajax jQuery.</code></div>
<div><code>35.</code><code>&lt;</code><code>a</code> <code>href</code><code>=</code><code>"<a href="http://www.psdremi.co.cc/">http://www.psdremi.co.cc</a>"</code> <code>target</code><code>=</code><code>"_blank"</code><code>&gt;</code></div>
<div><code>36.</code><code>PSDREMI.CO.CC</code></div>
<div><code>37.</code><code>&lt;/</code><code>a</code><code>&gt;</code></div>
<div><code>38.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
<div><code>39.</code><code>&lt;/</code><code>div</code><code>&gt;</code></div>
</div>
</div>
<p>Gw rasa cuma sgitu code na, gw yakin lu bakalan familiar kok <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<h3>Part IV Adding jQuery Ajax Scripts to Load Contents</h3>
<p>Lu pada tau  <a href="http://jquery.com/" target="_blank">jQuery</a> kan ? kalo belom, baca pengenalan tentang jQuery dlo yak di web na <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>Pada bagian ini kita butuh jQuery script library, sedangkan <a href="http://plugins.jquery.com/" target="_blank">plugin</a> ga diperlukan.</p>
<p>Cuma kasi baris ini di HTML na, bwat ngeload jQuery Javascript Library na</p>
<div id="highlighter_691458">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>1.</code><code>&lt;script src=</code><code>"jquery-1.2.6.js"</code> <code>type=</code><code>"text/javascript"</code><code>&gt;&lt;/script&gt;</code></div>
</div>
</div>
<p>dan kasi code javascripts bwat mbikin fungsi untuk meload external content pada contentPan Div</p>
<div id="highlighter_814492">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>01.</code><code>&lt;script type=</code><code>"text/javascript"</code><code>&gt;</code></div>
<div><code>02.</code><code>$(</code><code>function</code><code>(){</code></div>
<div><code>03.</code><code>$(</code><code>"#ajax_display"</code><code>).ajaxStart(</code><code>function</code><code>(){</code></div>
<div><code>04.</code><code>$(</code><code>this</code><code>).html(</code><code>'&lt;p&gt;&lt;img src="images/ajax-loader.gif" /&gt;&lt;/p&gt;'</code><code>);</code></div>
<div><code>05.</code><code>});</code></div>
<div><code>06.</code><code>$(</code><code>"#ajax_display"</code><code>).ajaxSuccess(</code><code>function</code><code>(){</code></div>
<div><code>07.</code><code>$(</code><code>this</code><code>).html(</code><code>''</code><code>);</code></div>
<div><code>08.</code><code>});</code></div>
<div><code>09.</code><code>$(</code><code>"#ajax_display"</code><code>).ajaxError(</code><code>function</code><code>(url){</code></div>
<div><code>10.</code><code>alert(</code><code>'jQuery ajax is error '</code><code>);</code></div>
<div><code>11.</code><code>});</code></div>
<div><code>12.</code><code>});</code></div>
<div><code>13.</code><code>function</code> <code>loadContent(id) {</code></div>
<div><code>14.</code><code>$(</code><code>"#contenPan"</code><code>).hide();</code></div>
<div><code>15.</code><code>$(</code><code>"#contenPan"</code><code>).load(</code><code>"php-loader.php?cPub="</code><code>+id+</code><code>""</code><code>, </code><code>''</code><code>, callback);</code></div>
<div><code>16.</code><code>}</code></div>
<div><code>17.</code><code>function</code> <code>callback() {</code></div>
<div><code>18.</code><code>$(</code><code>"#contenPan"</code><code>).show();</code></div>
<div><code>19.</code><code>}</code></div>
<div><code>20.</code><code>$(document).ready(loadContent(id));</code></div>
<div><code>21.</code><code>&lt;/script&gt;</code></div>
</div>
</div>
<p>Simple line:</p>
<div id="highlighter_921272">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>1.</code><code> </code><code>$(</code><code>this</code><code>).html(</code><code>'&lt;p&gt;&lt;img src="images/ajax-loader.gif" /&gt;&lt;/p&gt;'</code><code>);</code></div>
<div><code>2.</code></div>
<div><code>3.</code><code>/*this line will load the ajax-loader.gif while progress on request*/</code></div>
</div>
</div>
<p>dan code berikut ini diperlukan bwat memanngil data content</p>
<div id="highlighter_315376">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>1.</code><code> </code><code>function</code> <code>loadContent(id) {</code></div>
<div><code>2.</code><code>$(</code><code>"#contenPan"</code><code>).hide();</code></div>
<div><code>3.</code><code>$(</code><code>"#contenPan"</code><code>).load(</code><code>"php-loader.php?cPub="</code><code>+id+</code><code>""</code><code>, </code><code>''</code><code>, callback);</code></div>
<div><code>4.</code><code>}</code></div>
<div><code>5.</code><code>function</code> <code>callback() {</code></div>
<div><code>6.</code><code>$(</code><code>"#contenPan"</code><code>).show();</code></div>
<div><code>7.</code><code>}</code></div>
</div>
</div>
<p>php-loader.php adalah file PHP yang bertugas memberikan value dalam bentuk HTML, value ini akan direquest oleh jQuery Ajax untuk di load ke contentPan Div</p>
<p>Kalo lu liat pada akhir variable GET na berupa variable cPub, maka kita bakalan bikin file PHP yang menggunakan kondisi pemilihan variable GET, ni code na:</p>
<div id="highlighter_347826">
<div>
<div><a title="view source" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#viewSource">view source</a></p>
<div></div>
<p><a title="print" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#printSource">print</a><a title="?" href="http://www.dremi.info/tutorials/photoshop/web-design-layout-plus-implementasi-jquery-tab-content.html#about">?</a></div>
</div>
<div>
<div><code>01.</code><code>&lt;?</code></div>
<div><code>02.</code><code>$allCount</code> <code>= 60; </code><code>//just to simulation for data ready</code></div>
<div><code>03.</code><code>if</code><code>(</code><code>$_GET</code><code>[</code><code>'cPub'</code><code>] == 2)</code></div>
<div><code>04.</code><code>{</code></div>
<div><code>05.</code><code>echo</code> <code>"&lt;h2&gt;Photoshop&lt;/h2&gt;"</code><code>;</code></div>
<div><code>06.</code><code>echo</code> <code>"&lt;p align=justify&gt;&lt;img src='images/psdremi-logo130.gif' width='130' height=44'&gt;"</code><code>;</code></div>
<div><code>07.</code><code>for</code><code>(</code><code>$i</code><code>=0;</code><code>$i</code><code>&lt;=</code><code>$allCount</code><code>;</code><code>$i</code><code>++)</code></div>
<div><code>08.</code><code>{</code></div>
<div><code>09.</code><code>echo</code> <code>"This is Photoshop Content. "</code><code>;</code></div>
<div><code>10.</code><code>}</code></div>
<div><code>11.</code><code>echo</code> <code>"&lt;/p&gt;"</code><code>;</code></div>
<div><code>12.</code><code>sleep(2);</code></div>
<div><code>13.</code><code>}</code></div>
<div><code>14.</code><code>elseif</code><code>(</code><code>$_GET</code><code>[</code><code>'cPub'</code><code>] == 3)</code></div>
<div><code>15.</code><code>{</code></div>
<div><code>16.</code><code>echo</code> <code>"&lt;h2&gt;CSS&lt;/h2&gt;"</code><code>;</code></div>
<div><code>17.</code><code>echo</code> <code>"&lt;p align=justify&gt;&lt;img src='images/psdremi-logo130.gif' width='130' height=44'&gt;"</code><code>;</code></div>
<div><code>18.</code><code>for</code><code>(</code><code>$i</code><code>=0;</code><code>$i</code><code>&lt;=</code><code>$allCount</code><code>;</code><code>$i</code><code>++)</code></div>
<div><code>19.</code><code>{</code></div>
<div><code>20.</code><code>echo</code> <code>"This is CSS Content. "</code><code>;</code></div>
<div><code>21.</code><code>}</code></div>
<div><code>22.</code><code>echo</code> <code>"&lt;/p&gt;"</code><code>;</code></div>
<div><code>23.</code><code>sleep(2);</code></div>
<div><code>24.</code><code>}</code></div>
<div><code>25.</code><code>elseif</code><code>(</code><code>$_GET</code><code>[</code><code>'cPub'</code><code>] == 4)</code></div>
<div><code>26.</code><code>{</code></div>
<div><code>27.</code><code>echo</code> <code>"&lt;h2&gt;PHP&lt;/h2&gt;"</code><code>;</code></div>
<div><code>28.</code><code>echo</code> <code>"&lt;p align=justify&gt;&lt;img src='images/psdremi-logo130.gif' width='130' height=44'&gt;"</code><code>;</code></div>
<div><code>29.</code><code>for</code><code>(</code><code>$i</code><code>=0;</code><code>$i</code><code>&lt;=</code><code>$allCount</code><code>;</code><code>$i</code><code>++)</code></div>
<div><code>30.</code><code>{</code></div>
<div><code>31.</code><code>echo</code> <code>"This is PHP Content. "</code><code>;</code></div>
<div><code>32.</code><code>}</code></div>
<div><code>33.</code><code>echo</code> <code>"&lt;/p&gt;"</code><code>;</code></div>
<div><code>34.</code><code>sleep(2);</code></div>
<div><code>35.</code><code>}</code></div>
<div><code>36.</code><code>elseif</code><code>(</code><code>$_GET</code><code>[</code><code>'cPub'</code><code>] == 5)</code></div>
<div><code>37.</code><code>{</code></div>
<div><code>38.</code><code>echo</code> <code>"&lt;h2&gt;AJAX&lt;/h2&gt;"</code><code>;</code></div>
<div><code>39.</code><code>echo</code> <code>"&lt;p align=justify&gt;&lt;img src='images/psdremi-logo130.gif' width='130' height=44'&gt;"</code><code>;</code></div>
<div><code>40.</code><code>for</code><code>(</code><code>$i</code><code>=0;</code><code>$i</code><code>&lt;=</code><code>$allCount</code><code>;</code><code>$i</code><code>++)</code></div>
<div><code>41.</code><code>{</code></div>
<div><code>42.</code><code>echo</code> <code>"This is AJAX Content. "</code><code>;</code></div>
<div><code>43.</code><code>}</code></div>
<div><code>44.</code><code>echo</code> <code>"&lt;/p&gt;"</code><code>;</code></div>
<div><code>45.</code><code>sleep(2);</code></div>
<div><code>46.</code><code>}</code></div>
<div><code>47.</code><code>else</code></div>
<div><code>48.</code><code>{</code></div>
<div><code>49.</code><code>echo</code> <code>"&lt;h2&gt;Home&lt;/h2&gt;"</code><code>;</code></div>
<div><code>50.</code><code>echo</code> <code>"&lt;p&gt;&lt;a href=''&gt;this is a link&lt;/a&gt;&lt;/p&gt;"</code><code>;</code></div>
<div><code>51.</code><code>echo</code> <code>"&lt;p align=justify&gt;&lt;img src='images/psdremi-logo130.gif' width='130' height=44'&gt;"</code><code>;</code></div>
<div><code>52.</code><code>for</code><code>(</code><code>$i</code><code>=0;</code><code>$i</code><code>&lt;=</code><code>$allCount</code><code>;</code><code>$i</code><code>++)</code></div>
<div><code>53.</code><code>{</code></div>
<div><code>54.</code><code>echo</code> <code>"Welcome back friend ! this tutorial explain about how to designing web layout with Photoshop+CSS and then using Ajax jQuery to implementad how to Load PHP Content. "</code><code>;</code></div>
<div><code>55.</code><code>}</code></div>
<div><code>56.</code><code>echo</code> <code>"&lt;/p&gt;"</code><code>;</code></div>
<div><code>57.</code><code>}</code></div>
<div><code>58.</code><code>?&gt;</code></div>
</div>
</div>
<p>Gw pake sleep(2) bwat mensimulasikan loading content yang cukup lama</p>
<p>Kayakna smua udah lengkap, tinggal lu upload ke webserver biar PHP na bekerja. ni screen shoot na</p>
<div id="img"><a href="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs44.png" target="_blank"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs44400.png" border="0" alt="" width="400" height="256" /></a></div>
<div id="img"><a href="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs45.png" target="_blank"><img src="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs45400.png" border="0" alt="" width="400" height="266" /></a></div>
<p>Tutorial ini gw input juga dalam bahasa inggris di <a href="http://www.psdremi.co.cc/2008/11/web-design-layout-plus-jquery-tab-content.html" target="_blank">PSDREMI.CO.CC</a> dan <a href="http://www.good-tutorials.com/users/hairulazami" target="_blank">Good-tutorials.Com</a></p>
<p>Best Regard, dr.emi</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=95&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2009/11/26/web-design-layout-plus-implementasi-jquery-tab-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/images-header200/jQuery-tab.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs31.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs1.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs32.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs33.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs34.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs2.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs35.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs36.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs37.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs38.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs39.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs40.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs5.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs41.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs7.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs8.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs6.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs9.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs10.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs11.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs14.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs142.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs15.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs16400.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs17.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs42.png" medium="image" />

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs44400.png" medium="image" />

		<media:content url="http://i409.photobucket.com/albums/pp172/psdremi/Web%20Design%20Layout%20Plus%20jQuery%20Tab%20Content/web-design-layout-jquery-tabs45400.png" medium="image" />
	</item>
		<item>
		<title>How to Illustrate Samsung Monitor &#8211; SyncMaster 933SN Series</title>
		<link>http://cakyanto.wordpress.com/2009/11/26/how-to-illustrate-samsung-monitor-syncmaster-933sn-series/</link>
		<comments>http://cakyanto.wordpress.com/2009/11/26/how-to-illustrate-samsung-monitor-syncmaster-933sn-series/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 09:00:31 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Photoshop]]></category>
		<category><![CDATA[How to Illustrate Samsung Monitor - SyncMaster 933SN Series]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=92</guid>
		<description><![CDATA[from: dremi.info July 3rd, 2009 by dr.emi Hi brother ! this tutorial will explain about how to create an illustration for my new Samsung Monitor, SyncMaster 933SN series. Follow my steps, and enjoy my tutorial. First is create your new Photoshop document. The size is up to you brother ! Step 1 Use shapping tool [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=92&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a title="Permanent Link to How to Illustrate Samsung Monitor - SyncMaster 933SN Series" rel="bookmark" href="http://www.dremi.info/tutorials/photoshop/how-to-illustrate-samsung-monitor-syncmaster-933sn-series.html#more-866">from: dremi.info<br />
</a></h2>
<p>July 3rd, 2009 by dr.emi</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/preview200.png" alt="" width="200" height="200" /><br />
Hi brother ! this tutorial will explain about how to create an illustration for my new Samsung Monitor, SyncMaster 933SN series. Follow my steps, and enjoy my tutorial.</p>
<p>First is create your new Photoshop document. The size is up to you brother !</p>
<h3>Step 1</h3>
<p>Use shapping tool to grab a rectangle as your base screen of monitor. Take look my setting:</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-89.png" alt="" width="429" height="27" /></div>
<p>and I use #1a1a1a as base color. Give name for your shapping as &#8220;base&#8221;</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-1.png" alt="" width="490" height="324" /></div>
<h3>Step 2</h3>
<p>Select base path using Direct Selection Tool, and activate Add Anchor Point Tool. We will modify the bottom side of base shapping.</p>
<p>Now click one at the center of bottom side of base path. Move it to down side, approximately 30px.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-3.png" alt="" width="469" height="333" /></div>
<h3>Step 3</h3>
<p>Repeat Step 2 for top side of base path. But on this step, move new anchor to up side, approximately 10px &#8211; 15px. The result showed on this screen shoot:</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-4.png" alt="" width="466" height="324" /></div>
<h3>Step 4</h3>
<p>Now press [CTRL+Click] at base path layer and activate Selection Tool with Intersect With Selection option. Select about 50px of your current selection area. You will get new selection.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-6.png" alt="" width="468" height="383" /></div>
<p>Then chose menu Select &gt; Modify &gt; Contract : 2px, fill selection area with color #5e5e5e. Create new layer then change layer name as &#8220;top-shadow&#8221;.</p>
<p>Go to Menu Filter &gt; Blur &gt; Gaussian Blur. Give it about 2px.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-8.png" alt="" width="549" height="357" /></div>
<p>Let’s change blending option of top-shadow layer to Screen.</p>
<h3>Step 5</h3>
<p>Press [CTRL+Click] again on base path to make a selection area, create new layer called as &#8220;top-line&#8221;. Chose menu Select &gt; Modify &gt; Contract : 2px. Fill selection area with color #ffffff.</p>
<p>Still on selection area, now move selection area to down side, it’s about 2px. Then hit [DELETE] button. You will see a line at top side of base path. Give it Gaussian Blur about 2px.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-14.png" alt="" width="499" height="350" /></div>
<h3>Step 6</h3>
<p>Now duplicate your base path as screen layer, don’t forget to change screen shapping color to #ffffff.</p>
<p>Activate Direct Selection Tool. We wil make screen path smaller than base path.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-15.png" alt="" width="455" height="520" /></div>
<p>Use Direct Selection Tool to select all anchor point at the bottom side if screen path. Then move it to top side. Like showed on this screenshoot:</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-16.png" alt="" width="469" height="333" /></div>
<p>Select another anchor point and move it to inside.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-17.png" alt="" width="469" height="306" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-18.png" alt="" width="465" height="308" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-19.png" alt="" width="463" height="309" /></div>
<h3>Step 7</h3>
<p>Ouke, now delete two anchor point that located on top side and bottom side of screen path. Use Delete Anchor Point Tool to delete it.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-20.png" alt="" width="460" height="312" /></div>
<h3>Step 8</h3>
<p>Repeat Step 4 to create bottom-shadow of base path</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-25.png" alt="" width="454" height="306" /></div>
<h3>Step 9</h3>
<p>Now press [CTRL+Click] again on base path, then chose Selection &gt; Contract 2px. Fill selection area with color #ffffff.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-26.png" alt="" width="463" height="338" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-27.png" alt="" width="454" height="299" /></div>
<p>Chose Selection &gt; Contract again, and give 1px. Hit [DELETE] button. You will see stroke line inside of base path.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-29.png" alt="" width="452" height="305" /></div>
<p>Chose Filter &gt; Blur &gt; Gaussian Blur 2px. Change blending option of layer as screen.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-30.png" alt="" width="461" height="302" /></div>
<p>Untill this step, let’s review your design. Hmm…. not so bad <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> but to make better screen, add some layer style for screen layer.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-90.png" alt="" width="409" height="336" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-91.png" alt="" width="407" height="340" /></div>
<p>Nice ! <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-32.png" alt="" width="459" height="319" /></div>
<p>Then add a glossy effect for screen using transparent gradient.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-37.png" alt="" width="453" height="318" /></div>
<h3>Step 10</h3>
<p>Ouke! let’s illustrate a transparent glasses at the bottom of base and screen layer.</p>
<p>You may duplicate base path, and make it looks likely this screenshoot:</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-92.png" alt="" width="457" height="63" /></div>
<p>I give name of this path as &#8220;bottom-glasses&#8221;. Now duplicate bottom-glasses and move it to top about 5px</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-93.png" alt="" width="466" height="65" /></div>
<h3>Step 11</h3>
<p>I use gaussian blur to create blue light at the bottom of base path</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-39.png" alt="" width="455" height="129" /></div>
<h3>Step 12</h3>
<p>Create a text for &#8220;SyncMaster 933SN&#8221; then add stroke layer style for 1px with color #000000.</p>
<p>To make a little bit of shiny effect. I create a star using 1px vertical and horizontal selection or you may use brush tool.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-45.png" alt="" width="451" height="317" /></div>
<h3>Step 13</h3>
<p>Add a text for &#8220;S MSUNG&#8221;. Note: I use &#8220;V&#8221; text and transform vertical it to get the real SAMSUNG text</p>
<p>Take look this screen shoot.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-54.png" alt="" width="448" height="321" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-55.png" alt="" width="455" height="314" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-56.png" alt="" width="462" height="317" /></div>
<h3>Step 14</h3>
<p>We will create elipse to complete our monitor <img src="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>Use Elipse Tool then grab it with color #1a1a1a</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-94.png" alt="" width="280" height="404" /></div>
<p>Change layer name as &#8220;bottom-elipse&#8221;</p>
<p>Repeat Step 4 to create shadow</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-63.png" alt="" width="251" height="173" /></div>
<h3>Step 15</h3>
<p>Duplicate bottom-elipse, move it to down side about 15px</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-65.png" alt="" width="232" height="152" /></div>
<p>Look at left and right side of elipse, looks likely not perfect. So, use poligon lasso tool, to make it perfect.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66B.png" alt="" width="500" height="150" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66.png" alt="" width="490" height="330" /></div>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66A.png" alt="" width="474" height="238" /></div>
<p>Good ! looks likely perfect!</p>
<h3>Step 16</h3>
<p>Create once again for elipse at center of bottom-elipse. Then add rounded rectangle between bottom-elipse and bottom-glasses.</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-74.png" alt="" width="459" height="370" /></div>
<p>Good job ! now you has finished to illustrate Samsung Monitor &#8211; SyncMaster 933SN Series.</p>
<p>You may add you desktop screenshoot into screen. Take look this one!</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-87.png" alt="" width="459" height="380" /></div>
<p>And add reflection effect to make it cool illustration</p>
<div id="img"><img src="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-88.png" alt="" width="530" height="512" /></div>
<p>Is that a sexy girl ??? hahahahahahahahaa…..</p>
<p>Just for have fun friends, thank for read my tutorial.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=92&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2009/11/26/how-to-illustrate-samsung-monitor-syncmaster-933sn-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/preview200.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-89.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-1.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-3.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-4.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-6.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-8.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-14.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-15.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-16.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-17.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-18.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-19.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-20.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-25.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-26.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-27.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-29.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-30.png" medium="image" />

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-90.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-91.png" medium="image" />

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-32.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-37.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-92.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-93.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-39.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-45.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-54.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-55.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-56.png" medium="image" />

		<media:content url="http://www.dremi.info/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-94.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-63.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-65.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66B.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-66A.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-74.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-87.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Illustrasi%20Monitor%20SyncMaster%20933SN/illustrasi-monitor933-88.png" medium="image" />
	</item>
		<item>
		<title>Advance Metalic Gloss Logo</title>
		<link>http://cakyanto.wordpress.com/2009/11/26/advance-metalic-gloss-logo/</link>
		<comments>http://cakyanto.wordpress.com/2009/11/26/advance-metalic-gloss-logo/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 08:53:07 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Tutorial Photoshop]]></category>
		<category><![CDATA[Advance Metalic Gloss Logo]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=89</guid>
		<description><![CDATA[from:dremi.info November 1st, 2008 by dr.emi Gw sering merindukan saat saat metal dan techy design style masih berjaya beberapa taon silam, tapi kini cuma tinggal kenangan, beberapa master dunia untuk spesialis techy style pun udah mulai mengundurkan diri dan ada yang beralih ke Style Web 2.0 Yah! Web 2.0 tidak lebih dari hanyalah sebuah kombinasi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=89&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a title="Permanent Link to Advance Metalic Gloss Logo" rel="bookmark" href="http://www.dremi.info/tutorials/photoshop/advance-metalic-gloss-logo.html#more-86">from:dremi.info</a></h2>
<p>November 1st, 2008 by dr.emi</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/images-header200/advance-metalic-gloss-logo.png" alt="" /></p>
<p>Gw sering merindukan saat saat metal dan techy design style masih berjaya beberapa taon silam, tapi kini cuma tinggal kenangan, beberapa master dunia untuk spesialis techy style pun udah mulai mengundurkan diri dan ada yang beralih ke Style Web 2.0</p>
<p>Yah! Web 2.0 tidak lebih dari hanyalah sebuah kombinasi gradasi, “No More Than Just Gradient”</p>
<p>&nbsp;</p>
<p>Selain lebih sederhana dan indah dipandang mata, design Web 2.0 terkesan elegan dan karena less table serta fast access lah yang mbikin era nya mampu meruntuhkan era design metal dan techy yang menurut amatiran sangat berat diakses dan sering memakan bandwidth. Tapi lain lagi bagi designer sejati, metal dan techy dianggap sebagai idealisme dan prinsip hidup dalam berkreasi.</p>
<p>Woke, sudahlah sekarang gw mau ngasi tutorial baru, dan thanks bwat member sejati dremi.info. Mudah2an bisa bwat inspirasi.</p>
<p>Bwat sebidang canvas area, ukuran 300 x 300 px. Bikin shapping make elipse tool</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo1.png" alt="" width="300" height="300" /></p>
<p>kasiin style pada layer na</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo13.png" alt="" width="254" height="281" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo14.png" alt="" width="253" height="195" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo15.png" alt="" width="251" height="281" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo3-1.png" alt="" width="307" height="307" /></p>
<p>bikin satu shapping lagi, di pojok kiri atas</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo2.png" alt="" width="310" height="310" /></p>
<p>kasi style juga</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo16.png" alt="" width="246" height="290" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo17.png" alt="" width="255" height="386" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo18.png" alt="" width="257" height="211" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo20.png" alt="" width="261" height="202" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo19.png" alt="" width="397" height="203" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo4.png" alt="" width="306" height="306" /></p>
<p>Bwat satu shapping lagi, tapi kali ini shapping na lu edit lagi sesuai titik pada tanda lingkaran, gw pake direct selection tool bwat ngedit titik2 shapping na</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo21.png" alt="" width="68" height="105" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo5.png" alt="" width="312" height="312" /></p>
<p>wabis ntu kassin style na</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo22.png" alt="" width="260" height="271" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo23.png" alt="" width="259" height="212" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo24.png" alt="" width="388" height="199" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo6.png" alt="" width="310" height="310" /></p>
<p>tepat diatas objek objek sebelom na, lu kasiin bidang berwarna putih make eliptical marquee tool</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo7.png" alt="" width="303" height="303" /></p>
<p>kurangi opacity na jadi 25%</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo8.png" alt="" width="307" height="307" /></p>
<p>bikin satu lagi tapi kali ini kasiin gradasi transparent putih dari atas ke bawah</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo25.png" alt="" width="281" height="33" /></p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo9.png" alt="" width="306" height="306" /></p>
<p>kurangi opacity na menjadi 77%</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo10.png" alt="" width="309" height="309" /></p>
<p>jadi dah, kassin text na “dreTechnology”</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo11.png" alt="" width="310" height="310" /></p>
<p>nah ni nyang make sedikit sentuhan filter lightning effect</p>
<p><img src="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo12.png" alt="" width="310" height="310" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=89&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2009/11/26/advance-metalic-gloss-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/images-header200/advance-metalic-gloss-logo.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo1.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo13.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo14.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo15.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo3-1.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo2.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo16.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo17.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo18.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo20.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo19.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo4.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo21.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo5.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo22.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo23.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo24.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo6.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo7.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo8.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo25.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo9.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo10.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo11.png" medium="image" />

		<media:content url="http://i175.photobucket.com/albums/w126/hairulazami/Advance%20Metalic%20Gloss%20Logo/advance-metalic-gloss-logo12.png" medium="image" />
	</item>
		<item>
		<title>Software Customize by Design</title>
		<link>http://cakyanto.wordpress.com/2009/11/14/software-berkualitas-dengan-harga-bersaing/</link>
		<comments>http://cakyanto.wordpress.com/2009/11/14/software-berkualitas-dengan-harga-bersaing/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 10:48:08 +0000</pubDate>
		<dc:creator>Sumiyanto Surabaya</dc:creator>
				<category><![CDATA[Screenshot Software]]></category>
		<category><![CDATA[Tutorial Ms Access]]></category>
		<category><![CDATA[Berkualitas]]></category>
		<category><![CDATA[Dengan Harga Bersaing]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://cakyanto.wordpress.com/?p=67</guid>
		<description><![CDATA[Dimotori oleh professional-² muda yang energik dan dinamis, dengan misi memberikan sumbangsih terbaik bagi Dunia Usaha, kami mewujudkan dengan PROGRAM Software Customize by Design. Banyak UKM (Usaha Kecil dan Menengah) yang memiliki omzet jutaan bahkan ratusan juta yang dalam masa krisis global beberapa waktu yang lalu, telah menyumbangkan ketahanan ekonomi bagi bangsa ini, adalah menjadi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=67&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_83" class="wp-caption alignleft" style="width: 120px"><img class="size-full wp-image-83" title="Software CakYanto" src="http://cakyanto.files.wordpress.com/2009/11/software-cakyanto.png?w=600" alt="Software CakYanto"   /><p class="wp-caption-text">Software CakYanto</p></div>
<p>Dimotori oleh professional-² muda yang energik dan dinamis, dengan misi memberikan sumbangsih terbaik bagi Dunia Usaha, kami mewujudkan dengan PROGRAM Software Customize by Design. Banyak UKM (Usaha Kecil dan Menengah) yang memiliki omzet jutaan bahkan ratusan juta yang dalam masa krisis global beberapa waktu yang lalu, telah menyumbangkan ketahanan ekonomi bagi bangsa ini, adalah menjadi sasaran dan target kami agar data keuangan yang dimiliki menjadi lebih bankable sehingga dapat menjadi tolok ukur untuk bisa mendapatkan kucuran modal usaha dari BPR ataupun Bank Umum yang selama ini termarginalkan. Sehingga Outputnya menjadikan UKM yang tangguh dan menjadi lebih maju.</p>
<p>Dengan PROGRAM Software Customize by Design, kami memberikan jasa pendidikan bermutu, khususnya bidang tekhnologi informasi – komputer, dengan biaya terjangkau.</p>
<p>Selain itu kami juga melayani pembuatan software/aplikasi bisnis sesuai permintaan dan kebutuhan Bisnis Anda &#8221; Software Customize by Design”.</p>
<p><img class="alignleft size-full wp-image-84" style="margin:5px;" title="bestbuy CakYanto" src="http://cakyanto.files.wordpress.com/2009/11/bestbuy-cakyanto.png?w=600" alt="bestbuy CakYanto"   />Dengan  biaya HEMAT, Anda tetap bisa mendapatkan software/aplikasi bisnis yang sesuai dengan pola dan kebijakan yang diterapkan pada perusahaan. Hal ini tentu sangat membantu dan mempercepat proses kerja. Karena semua transaksi pembukuan yang biasanya dikerjakan secara manual dan terpisah-pisah bisa diotomasi menjadi suatu kesatuan kerja yang saling melengkapi.</p>
<p>Aplikasi yang tersedia mulai dari <strong>Software Rumah Sakit, Hotel, Department Store, Koperasi, dan masih banyak lainnya.</strong></p>
<p style="text-align:center;"><strong>Daftar Harga Software Customize by Design :</strong></p>
<table style="height:294px;" border="0" cellspacing="0" cellpadding="0" width="502">
<col width="25"></col>
<col width="178"></col>
<col width="237"></col>
<col width="79"></col>
<tbody>
<tr>
<td width="25" height="20"><strong>No</strong></td>
<td width="178"><strong>Jenis Aplikasi</strong></td>
<td width="237"><strong>Feature</strong></td>
<td width="79"><strong>Harga</strong></td>
</tr>
<tr>
<td height="20">1</td>
<td>Aplikasi Mini Market   – Retail/Grosir</td>
<td>bar-code scanner,   Stok Average, Harga jual/beli bisa bervariasi, Hutang-Piutang</td>
<td>7.500.000</td>
</tr>
<tr>
<td height="20">2</td>
<td>Aplikasi Gerai/Outlet   HP</td>
<td>bar-code scanner,   Jasa Service, Imei, Stok Average, Harga jual/beli bisa bervariasi,   Hutang-Piutang</td>
<td>7.500.000</td>
</tr>
<tr>
<td height="20">3</td>
<td>Aplikasi Dagang   &amp; Jasa</td>
<td>Aplikasi Dagang &amp;   Jasa</td>
<td>7.500.000</td>
</tr>
<tr>
<td height="20">4</td>
<td>Aplikasi Simpan   Pinjam</td>
<td>Aplikasi Simpan   Pinjam</td>
<td>7.500.000</td>
</tr>
<tr>
<td height="20">5</td>
<td>General Ledger</td>
<td>General Ledger</td>
<td>7.500.000</td>
</tr>
<tr>
<td height="20">6</td>
<td>Payroll/penggajian</td>
<td>Payroll/penggajian,   Finger Print</td>
<td>15.000.000</td>
</tr>
<tr>
<td height="20">7</td>
<td>Aplikasi Hotel</td>
<td>Include: Information,   Business Office, HRD</td>
<td>20.000.000</td>
</tr>
<tr>
<td height="20">8</td>
<td>Aplikasi Rumah Sakit</td>
<td>Include: Information,   Business Office, Medical Record, HRD</td>
<td>20.000.000</td>
</tr>
<tr>
<td height="20">9</td>
<td>Aplikasi untuk Pabrik   Rokok</td>
<td>Pengolahan Bahan   Baku, Perhitungan Cukai, Inventory, General Ledger, Payroll</td>
<td>20.000.000</td>
</tr>
</tbody>
</table>
<p><strong>*) harga belum termasuk ppn 10%<br />
</strong></p>
<p><strong>Related Link:</strong></p>
<ul>
<li><a title="Aplikasi Toko versi komersial" href="http://cakyanto.wordpress.com/2009/11/14/aplikasi-toko-versi-komersial/">Aplikasi Toko Versi Komersial</a></li>
<li><a title="Aplikasi simpan pinjam versi komersial" href="http://cakyanto.wordpress.com/2009/11/13/aplikasi-simpan-pinjam-versi-komersial/">Aplikasi Simpan Pinjam Versi Komersial</a><strong><br />
</strong></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cakyanto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cakyanto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cakyanto.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cakyanto.wordpress.com&amp;blog=10441325&amp;post=67&amp;subd=cakyanto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cakyanto.wordpress.com/2009/11/14/software-berkualitas-dengan-harga-bersaing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a1879dd94cd098a27ad530c483a21f3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">bajajbekas</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2009/11/software-cakyanto.png" medium="image">
			<media:title type="html">Software CakYanto</media:title>
		</media:content>

		<media:content url="http://cakyanto.files.wordpress.com/2009/11/bestbuy-cakyanto.png" medium="image">
			<media:title type="html">bestbuy CakYanto</media:title>
		</media:content>
	</item>
	</channel>
</rss>
