Microsoft Visual Basic 2008 Express Edition (Installer) + Cara Delete Registration


Visual Basic 2008 Express Edition

Cara Delete Registration
1. Klik "Start" lalu klik "Run..." dan masukan "regedit"
2. Lalu ke "HKEY_LOCAL_MACHINE" > "SOFTWARE" > "Microsoft" > "VBExpress" > "9.0"
3. Lalu klik kanan folder "Registration" dan pilih Delete

Cek VB2008Express Anda, apakah masih ada pertanyaan-pertanyaan registrasi? Jika kurang yakin , masuk ke VB2008 lalu klik menu "Help" dan cari masih ada registrasi??

[Blog] Cara Membuat Form Search Melebar Saat di Klik (Seperti di Website Apple.com)


Ada yang pernah buka apple.com ?? atau lihat di kolom search ujung blog ini.. Coba kalian klik, kolom akan melebar, pingin seperti itu? saya kasih tau caranya :)

Langkah yang harus dibuat adalah, sebagai berikut :


1. Masuk ke blogger sobat.


2. Pergi ke Design / Rancangan - Page Elements / Elemen Laman - Add a Gadget / Tambahkan Gadget - HTML / Javascript


3. Paste Kode berikut didalamnya dan Simpan



<form method="get" action="/search" id="search">
<input name="q" type="text" size="40" placeholder="Search..." />
</form>


4. Belum selesai, Pergi lagi ke Design / Rancangan - Edit HTML
5. Cari kode ]]></b:skin>, Paste kode - kode berikut, tepat diatasnya.
a. Untuk Search Form Dark Background



CSSnya :




#search {
}
#search input[type="text"] {
background: url(http://www.bloggermint.com/demos/css3searchbox/search-dark.png) no-repeat 10px 6px #444;
border: 0 none;
font: bold 12px Arial,Helvetica,Sans-serif;
color: #777;
width: 150px;
padding: 6px 15px 6px 35px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
-webkit-transition: all 0.7s ease 0s;
-moz-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
}
#search input[type="text"]:focus {
width: 200px;
}


b. Untuk Search Form Light Background




CSSnya :

#search { } #search input[type="text"]{ background: url(http://www.bloggermint.com/demos/css3searchbox/search-white.png)
no-repeat 10px 6px #fcfcfc; border: 1px solid #d1d1d1; font: bold 12px Arial,Helvetica,Sans-serif; color: #bebebe; width: 150px; padding: 6px 15px 6px 35px; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset; -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s; } #search input[type="text"]:focus { width: 200px; }



c. Untuk Style Apple.com




CSSnya :

#search { } #search input[type="text"] { background: url(http://www.bloggermint.com/demos/css3searchbox/search-white.png)
no-repeat 10px 6px #444; border: 0 none; font: bold 12px Arial,Helvetica,Sans-serif; color: #d7d7d7; width:150px; padding: 6px 15px 6px 35px; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s; } #search input[type="text"]:focus { background: url(http://www.bloggermint.com/demos/css3searchbox/search-dark.png)
no-repeat 10px 6px #fcfcfc; color: #6a6f75; width: 200px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset; text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); }



6. Terakhir, Simpan Template. dan Lihat hasil kerja sobat.

Silahkan modif sendiri CSSnya sesuai dengan keinginan sobat.
Kalau ada yang masih bingung, jangan segan - segan bertanya dengan berkomentar dibawah.
Sekian Cara Membuat Form Search Melebar Seperti Apple.com

Sumber : MyHavies
Label: Blog

Cara Membuat Media Player dengan VB2008

Setelah saya membuat "f-Media" yaitu software untuk memutar media (video & musik) saya akan berbagi cara membuatnya. Saya hanya akan mengajarkan teknik dasarnya, silakan Anda kembangkan sendiri.
Kali ini saya menyertakan gambar agar mudah di mengerti

1. Buka Microsoft Visual Basic 2008. Lalu klik 'File > New Project' atau Ctrl+N
2. Atur seperti gambar di bawah, nama sesuai keinginan sendiri
3. Perbesar ukuran, lalu ke Toolbox, klik kanan dan pilih "Choose Items..." (Lihat Gambar)

4. Ke bagian COM Components dan ke bawah cari "Windows Media Player" , centang lalu OK

 5. Drag komponen WMP (Windows Media Player) ke Form
6. di Properties cari Dock dan atur jadi Fill

 7. Tambahkan (drag) button dua, yang pertama ganti Text jadi "Open File..." yang kedua ganti text menjadi "Exit"
8. Kembali ke Toolbox, meluncur ke bawah dan cari "Open File Dialog" , drag ke form
9. Klik 2x button open file yang kita buat, masukan kode berikut
OpenFileDialog1.ShowDialog()
        AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName
10. Kembali ke Form, klik 2x button Exit dan masukan kode
End

Software : Portable Adobe Illustrator CS5

Free Portable Software Portable Adobe Illustrator CS5 can create distinctive vector artwork for any project. Used by design professionals worldwide, Adobe® Illustrator® CS5 software provides precision and power with sophisticated drawing tools, expressive natural brushes, a host of time-savers, and integration with Adobe CS Live online services.* CS Live services are complimentary for a limited time. Find precision and power in new Adobe® Illustrator® CS5 software. Draw accurately in perspective, create variable-width strokes, paint with lifelike brushes, and take advantage of integration with new Adobe CS Live online services.* CS Live online services are complimentary for a limited time.
What\’s new in Illustrator CS5 portable software

Perspective Drawing, Draw shapes and scenes in accurate 1-,2-, or 3-point linear perspective to create the look of realistic depth and distance. See it in action, Beautiful Strokes, Fully control variable-width strokes, arrowheads, dashes, and art brush scaling along a path. See it in action

Crisp graphics for web and mobile devices, Create vector objects precisely on the file\’s pixel grid for delivering pixel-aligned raster artwork. See it in action, Shape Builder tool - Intuitively combine, edit, and fill shapes directly on your artboard without accessing multiple tools and panels. See it in action, Roundtrip editing with Flash Catalyst.

Edit artwork in Illustrator while maintaining structure and interactivity added using Adobe Flash® Catalyst™. See it in action Integration with Adobe CS Review, Create and share an online review of your artwork and view comments using Adobe CS Review, one of the new CS Live online services.* Create interactivity without writing code, Take Illustrator designs into Flash Catalyst and create interactive experiences without writing code. Do more with Creative Suite® Design Premium, Bristle Brush - Paint with vectors that resemble natural-media brush strokes, controlling bristle characteristics and paint opacity in Free Portable Software Portable Adobe Illustrator CS5


Multiple artboard enhancements enhanced, Work on up to 100 artboards of varying sizes in one file, organized and viewed the way you want. Drawing enhancements, Work faster with everyday tools. Join paths with a keystroke, draw behind, and draw inside. See it in action, Resolution-independent Effects, Apply raster effects, such as drop shadows, blurs, and textures, that maintain a consistent appearance across media.


Free Portable Software Portable Adobe Illustrator CS5 product may allow you to extend its functionality by accessing certain features that are hosted online, including CS Live online services ("Online Services"), provided you have a high-speed Internet connection. The Online Services, and some features thereof, may not be available in all countries, languages, and/orcurrencies and may be discontinued in whole or in part without notice. Use of the Online Services is governed by separate terms of use and by the Online Privacy Policy, and access to some services may require user registration. Some Online Services, including services that are initially offered at no charge, may be subject to additional fees and require a separate subscription. For more details and to review the applicable terms of use and Online Privacy Policy, For more information about CS Live onlineservices


Watch how the all-new Creative Suite 5 will help you deliver innovative ideas in print, web, interactive, and mobile. Creative Suite Buzz Hub Follow your favorite products on social media sites and keep up with the Creative Suite evangelists as they travel around the world. Adobe MAX Online , View MAX 2009 sessions and keynotes on demand. Adobe Youth Voices, Hear the stories of Adobe Youth Voices, the Adobe Foundation\’s signature philanthropy initiative that empowers young people to create with purpose. Youth use digital tools to express themselves about issues important to them.
download for Free Portable Software Portable Adobe Illustrator CS5 in this link
Label: Software

Software : Lattes Portable Firefox 11 Final Edition



The following is a little bit about Mozilla Firefox Portable app :
Mozilla Firefox is a free Web browser descended from the Mozilla Application Suite and managed by Mozilla Corporation. Mozilla Firefox would be the 2nd most favored internet browser
Portable Mozilla Firefox 11 Features such as:


Anti-Phishing - Shop and do businesssafely on the Internet. Mozilla Firefox gets a fresh update of web forgery sites 48 times in a day, so if you try to visit a fraudulent site that’s pretending to be a site you trust (like your bank), a browser message—big as life—will stop you.
Anti-Malware - portable Firefox protects you from viruses, worms, trojan horses and spyware delivered over the Web. If you accidentally access an attack site, it will warn you away from the site and tell you why it isn’t safe to use.
Anti-Virus Software - Mozilla Firefox integrates elegantly with your Windows antivirus software. When you download a file, your computer’s antivirus program automatically checks it to protect you against viruses and other malware, which could otherwise attack your computer.
Instant Web Site ID - Want to be extra sure about a site’s legitimacy before you make a purchase? Click on a site favicon for an instant identity overview. Another click digs deeper: how many times have you visited? Are your passwords saved? Check up on suspicious sites, avoid Web forgeries and make sure a site is what it claims to be.
Forget This Site - Having second thoughts about having visited a certain Web site? With this feature, you can remove every trace of that site from your browser—no questions asked!
Parental Controls - Enforce parental control settings you’ve entered on Windows 7 — stop unwanted downloads and more.
Private Browsing - Sometimes it’s nice to go undercover, so turn this feature on and protect your browsing history. You can slip in and out of private browsing mode quickly, so it’s easy to go back to what you were doing before as if nothing ever happened. It’s great if you’re doing your online banking on a shared computer or checking email from an Internet cafĂ©.
Outdated Plug-In Detection - Some web pages require that you install small applications called plugins to watch videos, play games or view documents. These plugins are written by other companies, and it can be hard to make sure they’re always up to date. Since outdated plugins are a security risk, Firefox will let you know when you have a plugin that’s vulnerable to attack and direct you to the right site to get the updated version. View our plugin check page.
Add-ons - Firefox portable app looks for a secure connection before installing or updating add-ons, 3rd party software, and Personas.
Customized Security Settings - Control the level of scrutiny you’d like portable Firefox to give a site and enter exceptions—sites that don’t need the third degree. Customize settings for passwords, cookies, loading images and installing add-ons for a fully empowered Web experience.
Clear Recent History - Clear all your private data or just your activity over the past few hours with a few quick clicks. You have full control over what to delete, and then your info is gone for good—on your own computer or the one at your local library. It’s that easy.

Download lattes portable App Mozila Firefox 11 final version in this link
Label: Software

Photoshop : Trik Menghaluskan Wajah


Trik Photoshop beserta tutorial photoshop untuk menghaluskan wajah kali ini untuk membantu teman – teman dalam mengedit foto wajah untuk dapat diperbaiki di photoshop. Sebagian besar para pengguna photoshop menggunakan cara menghaluskan wajah di photoshop dengan memakai cara healing brush tool . Dari salah satu sumber yang saya dapat dan akan di share disini dengan cara lain menghilangkan jerawat atau menghaluskan muka tanpa meng clone ataupun healing tapi dengan blur filter.
Buka file foto yang mau dihaluskan wajahnya menggunakan cara Memperhalus Wajah Di Photoshop biar charming dan ganteng seperti irfan bachdim atau buat foto cewek cantikgebetanmu biar jadi kejutan.
trik photoshop
Trik Photoshop Memperhalus Wajah
duplikat layer background atau layer gambar dengan menekan ctrl + J ubah layer style menjadi vivid light.
menghaluskan wajah di photoshop
Klik Image > adjustment > Invert atau tekan CTRL + I
edit wajah di photoshop
Klik filter > blur > gaussian blur Nilai radius tergantung gambar.. usahakan hasil blur nya sama yaa dengan yang digambar
menghaluskan muka di photoshop
Klik filter > other > high pass .. sekali lagi nilai radius tergantung besar gambar nya.. jadi dikira-kira aja wajahnya udah mulus apa belom.. :) .. kalo ada perubahan pada mata.. biarin aja.. nanti dimasking kok.
tutorial edit foto photoshop
Kalo udah keliatan halus muka nya.. klik Add layer mask .. warna foreground harus hitam.
trik trik photoshop
Klik brush TooL .. warnai bagian-bagian yang harusnya tajem.. seperti alis, mata, bibir, hidung, rambut, baju… kecuali daerah yang ada jerawatnya.. jangan di masking.
trik edit wajah di photoshop
hasilnya :
edit muka di photoshop
Ini contoh yang lain :
hasil edit wajah di photoshop
Sumber Tutorial : http://ilmuphotoshop.com/
Label: Editing

PC Game : KUNG FU PANDA

KUNGFU PANDA(PC)

Title : Kung Fu Panda | Platform : PC |
Genre : Action | Release Date : June 3, 2008 | 
Developer : Beenox, Inc. | Publisher : Activision, Inc | 


Screenshot






Minimum System Requirements
  • OS: Windows XP/Vista
  • Processor: Pentium 4 @ 2 GHz / Athlon Equivalent
  • Memory: 512 Mb
  • Hard Drive: 8.4 Gb free
  • Video Memory: 128 Mb
  • Video Card: nVidia GeForce FX 5600 / ATI Radeon 9500
  • Sound Card: DirectX Compatible
  • DirectX: 9.0c
  • Keyboard
  • Mouse
  • DVD Rom Drive

DOWNLOAD
Size : 3.4GB
(Click "SKIP AD" to continue)
PART1 | PART2 | PART3 | PART4 | PART5 |
PART6 | PART7 | PART8 | PART9 | PART10 |
PART11 | PART12 | PART13 | PART14 | PART15 |
PART16 | PART17 | PART18 |
(Sebelum mendownload harap di cek setiap link)

Label: PC Game

PC Game : HALF-LIFE 2

HALF-LIFE 2-Episode 1
Size : 681MB


Screenshot





Minimum System Requirements
  • 1.2 GHz Processor
  • 256MB RAM
  • DirectX 7 capable graphics card
  • Windows 2000/XP/ME/98
  • Mouse
  • Keyboard

DOWNLOAD HALF-LIFE 2
(Click "SKIP AD" to continue)
Part1-(100MB)
Part2-(100MB)
Part3-(100MB)
Part4-(100MB)
Part5-(100MB)
Part6-(100MB)
Part7-(81MB)
Label: PC Game

PC Game : HALF-LIFE

HALF-LIFE
Genre: Shooter Action | Publisher: Sierra |
Developer: Valve | Release Date: Nov 19, 98 [North America]


Awalnya saya kira ini game melawan Manusia tembak tembak tapi ternyata ini Perang melawan alien asal mula mengapa alien tersebut ada di bumi karena dimananya telah terjadi kerusakan pada Lab Mesin yang mengakibatkan terbukanya Ruang dimensi lain yang menyebabkan alien dapat masuk ke bumi,banyak orang di dalam Lab tersebut mati dan hanya sedikit yang selamat,bagaimana cerita selanjutnya mari mainkan Game ini dan rasakan keseruannya....

untuk masalah grafik game ini terbilang cukup baik,

Hardware Requirements
System: Pentium-133 or equivalent
RAM:24 MB RAM
CD-ROM: 2X CD-ROM
Video Memory: 2 MB VRAM
Hard Drive Space: 400 MB
Mouse: Yes
Sound Board: Yes
DirectX: DirectX v6.0

Recommended System Requirements: 
System: Pentium-166 or equivalent
RAM: 32 MB RAM
3D Sound Card: Yes

Download

From : Mediafire
Size : 741 MB


Pass : blogecahsantri

Alternatif Link :

Download
From : Mediafire
Size : 741 MB


Pass : alisoftware



Link Unduh
Size : 124 MB

Half-Life 1.part1.rar (Size : 101 MB

Half-Life 1.part2.rar (Size : 23 MB)


Label: PC Game

HTML : Pengertian dan Penjelasannya



HTML singkatan dari Hyper Text Markup Language,dalam arti umum,sebuah web adalah sebuah dokumen HTML,yang mana sebuah HTML itu sendiri merupakan bahasa yang menggunakaan tanda-tanda tertentu(Tag)untuk menyatakan kode-kode yang harus diterjemahkan oleh Browser,agar halaman dapat di tampilkan secara benar.

HTML sendiri,sebenarnya hanya dokument biasa,hanya dokumen ini dapat dilakukan untuk pemformatan text,peletakan object,maupun Hypertext yakni text yang berfungsi ganda sebagai penghubung (Link)antara halaman satu dengan yang lain.

Nah!link inilah yang menjadi ciri sekaligus membentuk suatu www (Jaringan global antar text / halaman)

Berdasarkan Wikipedia

HyperText Markup Language (HTML) adalah sebuah bahasa markup yang digunakan untuk membuat sebuah halaman web, menampilkan berbagai informasi di dalam sebuah Penjelajah web Internet dan formating hypertext sederhana yang ditulis kedalam berkas format ASCII agar dapat menghasilkan tampilan wujud yang terintegerasi. Dengan kata lain, berkas yang dibuat dalam perangkat lunak pengolah kata dan disimpan kedalam format ASCII normal sehingga menjadi home page dengan perintah-perintah HTML. Bermula dari sebuah bahasa yang sebelumnya banyak digunakan di dunia penerbitan dan percetakan yang disebut denganSGML (Standard Generalized Markup Language), HTML adalah sebuah standar yang digunakan secara luas untuk menampilkan halaman web. HTML saat ini merupakan standar Internet yang didefinisikan dan dikendalikan penggunaannya oleh World Wide Web Consortium (W3C). HTML dibuat oleh kolaborasi Caillau TIM dengan Berners-lee robert ketika mereka bekerja di CERN pada tahun 1989 (CERN adalah lembaga penelitian fisika energi tinggi di Jenewa). [1]
Tahun 1980, IBM memikirkan pembuatan suatu dokumen yang akan mengenali setiap elemen dari dokumen dengan suatu tanda tertentu. IBM kemudian mengembangkan suatu jenis bahasa yang menggabungkan teks dengan perintah-perintah pemformatan dokumen. Bahasa ini dinamakan Markup Langiage, sebuah bahasa yang menggunakan tanda-tanda sebagai basisnya. IBM menamakan sistemnya ini sebagai Generalized Markup Language atau GML.
Tahun 1986, ISO menyatakan bahwa IBM memiliki suatu konsep tentang dokumen yang sangat baik, dan kemudian mengeluarkan suatu publikasi ( ISO 8879 ) yang menyatakan markup language sebagai standar untuk pembuatan dokumen-dokumen. ISO membuat bahasa ini dari GML milik IBM, tetapi memberinya nama lain, yaitu SGML ( Standard Generalized Markup Language ).

ISO dalam publikasinya meyakini bahwa SGML akan sangat berguna untuk pemrosesan informasi teks dan sistem-sistem perkantoran. Tetapi diluar perkiraanISO, SGML dan terutama subset dari SGML, yaitu HTML juga berguna untuk menjelajahi internet. Khususnya bagi mereka yang menggunakan World Wide Web. Versi terakhir dari HTML adalah HTML 4.01, meskipun saat ini telah berkembang XHTML yang merupakan pengembangan dari HTML.

Contoh

Bagaimana contoh sederhana bentuk sebuah halaman HTML?Sebagaimana Pengertian Blog pada posting pelajaran-blog.blogspot.com beberapa waktu lalu,bahwa sebuah halaman web yang baik,secara fisik akan terdiri dari sebuah Header,Body,Sidebar dan Footer.

Untuk membentuk sebuah halaman HTML secara sederhana,kita memanfaatkan Notepad pada komputer anda.

Tapi sebelum itu,pergi ke My Document,pilih Folder Option,lalu pilih View,kosongkan check box pada Hide Extentions for Known Filetypes,inihanya untuk memperlihatkan File type dari setiap file di komputer anda.Setelah itu,buka Notepad dan tuliskan kode di bawah ini :

<html><head><title>Belajar HTML</title></head><body><p>Hallo! aku sedang belajar blog di Pelajaran Blog !</p></body></html>

Setelah itu simpan dengan nama "belajar",yang nantinya di komputer anda akan menjadi"belajar.txt",setelah itu,klik kanan file tersebut pilih Rename rubah menjadi "belajar.htm".

Setelah itu,Open file tersebut,dan anda sudah bisa melihat suatu tampilan halaman HTMLyang di maksud.

Apa keterangan dari kode-kode di atas?

Kode HTML,dalam setiap kodenya di awali dengan tanda <> dan di akhiri dengan </>contoh:

<html>merupakan penandaan bahwa halaman HTML di mulai.

</html>merupakan tanda bahwa halaman html ditutup.

<Head>artinya merupakan awal kepala

</Head>artinya merupakan akhir bagian kepala.

<Title>menujukkan judul yang akan keluar pada Bar atas yang ditutup dengan </title><body>isi dari halaman tesebut,seperti contoh HTML diatas,isinya berupa kata "Hallo! aku sedang belajar blog di Pelajaran Blog !"yang ditutup dengan akhir isi halaman,yaitu </body>Sedangkan tanda <p> yaitu pembentukan alinea baru,seperti halnya anda menekan Enter pada Ms Word untuk membentuk kursor baru pada Alinea baru,yang mana diakhiri pula dengan tanda </p>.Untuk membentuk alinea baru bisa juga menggunakan kode <br> dan diakhiri dengan </br>




Label: Programming
close

-=[DANIEL SITE]=-

FRIEND BLOG

- Dwi Tekhnologi
- Mas Sugeng
- Swordhaven Social
Follow