<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4497289148669276886</id><updated>2012-02-17T01:14:03.714+07:00</updated><category term='Visual Basic Tutorial'/><category term='Visual Basic Tips dan Triks'/><title type='text'>Visual Basic Learning</title><subtitle type='html'>Tempat yang tepat untuk mendapatkan nformasi mengenai  tutoral, tips dan trik pemrograman visual basic</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8357486286549691216</id><published>2011-06-08T03:44:00.000+07:00</published><updated>2011-06-08T03:45:40.794+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Validasi Input Data Menggunakan Regular Expressions di VB</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Udah 2 bulan di kota hujan Bogor…ga kerasa…jd kangen jogja nih…pengen ketemu temen-temen disana…apalagi lagi ada yang ulang lahun nih..wah nyesel banget klo ga dapet jatah traktiran…harus bisa pulang pokoknya…hehehehehe&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Ok deh…Seperti yang sudah saya janjikan sebelumnya, sekarang kita akan mencoba bagaimana menggunakan regular expressions untuk validasi input data di visual basic 6.0. Kita akan menggunakan regex untuk mengecek apakah input yang kita masukkan benar atau tidak, jika benar maka regex akan menampilkan pesan benar, begitu juga sebaliknya jika salah maka akan ditampilkan pesan salah.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Kode yang kita perlukan untuk membuat validasi input menggunakan regex di VB kira-kira seperti ini:&lt;span id="more-606"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dim EkspresiReguler As New RegExp, Benar As Match&lt;br /&gt;Dim DataInput As String&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Text1_Change()&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘dikasih di text1_change agar regex melakukan pengecekan secara langsung ketika text diisi&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;DataInput = Text1.Text&lt;br /&gt;EkspresiReguler.Pattern = “disinilah tempat meletakkan regex patternya”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;EkspresiReguler.Global = True&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘ini kode untuk mengecek kesesuaian input degen pattern yang diberikan&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption = “Input Nama Salah”&lt;br /&gt;For Each Benar In EkspresiReguler.Execute(DataInput)&lt;br /&gt;Label5.Caption = “Input Nama Benar”&lt;br /&gt;Next&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Agar bisa menjalankan regular expressions di vb, kita akan menggunaan library VBScript scripting library punyanya microsoft. Penah baca nih tapi belum membuktikan, hehehe…. katanya library ini adalah bagian dari Internet Explorer 5.5 ke atas, jadi dengan begitu library ini pasti ada di komputer yang menggunakan IE 5.5 ke atas seperti Windows XP atau Vista , dan termasuk juga Windows versi sebelumnya yang sudah diupgrade dengan IE 5.5 ke atas.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Untuk menggunakan Regex di VB kita perlu mengaktifkan library ini terlebih dahulu di visual basic kita. caranya :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;masuk ke Visual Basic 6.0&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;pilih menu Project -&amp;gt; References&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Maka akan muncul tampilan dialog References seperti ini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/03/regex3.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-medium wp-image-610" title="regex3" src="http://febryanharipurwanto.files.wordpress.com/2009/03/regex3.jpg?w=300&amp;amp;h=243" alt="regex3" width="300" height="243" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;Nah…kalo sudah muncul tampilan seperti di atas,  pilih dan contreng “Microsoft VBScript Regular Expressions 5.5″, jangan sampai salah contreng ya…hehehe jd kaya pemilu ja pake contreng-contrengan, klo dah dicontreng klik tombol OK. Trus….&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Langkah selanjutnya buatlah tampilan seperti gambar di bawah ini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/03/regex1.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-medium wp-image-608" title="regex1" src="http://febryanharipurwanto.files.wordpress.com/2009/03/regex1.jpg?w=300&amp;amp;h=147" alt="regex1" width="300" height="147" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;kalo sudah, selanjutnya ubah nilai properties masing masing object yang sudah dipasang di form tadi.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label1.Caption = “Nama”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label2.Caption=”No. Telp”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label3.Caption=”E-Mail”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label4.Caption=”Website”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption=”Data yang anda masukkan benar/salah”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Trus Kosongkan property Text pada Text1,Text2,Text3,dan Text4&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;sehingga tampilannya menjadi sbb:&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/03/regex2.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-medium wp-image-609" title="regex2" src="http://febryanharipurwanto.files.wordpress.com/2009/03/regex2.jpg?w=300&amp;amp;h=148" alt="regex2" width="300" height="148" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sampai disini, kita sudah membuat tampilannya. Langkah selanjutnya menuliskan kode program Regex yang akan digunakan untuk validasi input di kode editor visual basic.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Kodenya sebagai berikut :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(51, 153, 102); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘ inisialisasi regular expressions&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dim EkspresiReguler As New RegExp, Benar As Match&lt;br /&gt;Dim DataInput As String&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘regex untuk input nama ( mengecek ketika &lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;text1 diisi )&lt;/span&gt;&lt;br /&gt;Private Sub Text1_Change()&lt;br /&gt;DataInput = Text1.Text&lt;br /&gt;EkspresiReguler.Pattern = “^D+$”&lt;br /&gt;EkspresiReguler.Global = True&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption = “Input Nama Salah”&lt;br /&gt;For Each Benar In EkspresiReguler.Execute(DataInput)&lt;br /&gt;Label5.Caption = “Input Nama Benar”&lt;br /&gt;Next&lt;br /&gt;End Sub&lt;br /&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘regex untuk input telepon&lt;/span&gt; &lt;span style="color: rgb(0, 128, 0); "&gt;( mengecek ketika &lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;text2 diisi )&lt;/span&gt;&lt;br /&gt;Private Sub Text2_Change()&lt;br /&gt;DataInput = Text2.Text&lt;br /&gt;EkspresiReguler.Pattern = “^d+$”&lt;br /&gt;EkspresiReguler.Global = True&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption = “Input Telepon Salah”&lt;br /&gt;For Each Benar In EkspresiReguler.Execute(DataInput)&lt;br /&gt;Label5.Caption = “Input Telepon Benar”&lt;br /&gt;Next&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;End Sub&lt;br /&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘regex untuk input email&lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;( mengecek ketika &lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;text3 diisi )&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Text3_Change()&lt;br /&gt;DataInput = Text3.Text&lt;br /&gt;EkspresiReguler.Pattern = “^([A-Za-z0-9]+([_]|[.])?)+[A-Za-z0-9]+@(([A-Za-z0-9]+[-]?)+[A-Za-z0-9]+.)+[A-Za-z]{2,3}$”&lt;br /&gt;EkspresiReguler.Global = True&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption = “Input Email Salah”&lt;br /&gt;For Each Benar In EkspresiReguler.Execute(DataInput)&lt;br /&gt;Label5.Caption = “Input Email Benar”&lt;br /&gt;Next&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘regex untuk input website&lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;( mengecek ketika &lt;/span&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;text4 diisi )&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Text4_Change()&lt;br /&gt;DataInput = Text4.Text&lt;br /&gt;EkspresiReguler.Pattern = “^(([A-Za-z0-9]+[-]?)+[A-Za-z0-9]+.)+[A-Za-z]{2,3}$”&lt;br /&gt;EkspresiReguler.Global = True&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Label5.Caption = “Input Website Salah”&lt;br /&gt;For Each Benar In EkspresiReguler.Execute(DataInput)&lt;br /&gt;Label5.Caption = “Input Website Benar”&lt;br /&gt;Next&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Nah itu kodenya… ga usah diketik lagi, capek + lama. dicopy paste aja,yang penting tahu maksudnya dan kalo ditanya bisa jawab..hehehe,  o iya untuk Pattern Regexnya di vb dijadiin satu baris aja,  soalnya di sini ga bisa dijadikan  satu baris, kepanjangan.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Kalo semuanya sudah..tinggal dijalankan, lalu coba masukkan input ke masing-masing teks cek apakah regexnya sudah berjalan sesuai selera apa belum. Ini screenshoot ketika saya menjalankan program ini di laptop saya. Pas masukin nama pake angka maka regexnya langsung laporan kalo inputan saya salah. berikut gambarnya:&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/03/regex4.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-medium wp-image-611" title="regex4" src="http://febryanharipurwanto.files.wordpress.com/2009/03/regex4.jpg?w=300&amp;amp;h=148" alt="regex4" width="300" height="148" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;OK..segitu dulu, selamat mencoba, dan semoga berhasil &lt;img src="http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1305258975g" alt=":)" class="wp-smiley" /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8357486286549691216?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8357486286549691216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8357486286549691216' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8357486286549691216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8357486286549691216'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/validasi-input-data-menggunakan-regular.html' title='Validasi Input Data Menggunakan Regular Expressions di VB'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8408869526370099712</id><published>2011-06-08T03:43:00.001+07:00</published><updated>2011-06-08T03:44:29.402+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Menonaktifkan Tombol Start Windows</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Udah lewat seminggu di kota yang tiap hari hujaaan mulu…huuuh dingin bangeet tambah lagi macet dimana-mana. Tapi tetep betah soalnya kotanya asri ( masih banyak pohon ) dan baru seminggu di sini dah keliling-keliling kota..hehehe&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Minggu depan kemana yaaa..????&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sekarang saya mo posting gimana caranya agar tombol start di wndows ga bisa di klik. nah…gimana tuh caranya..tapi sebelumnya jagan dibuat untuk ngerjain temennya lhoooo..&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span id="more-495"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Ok..langsung aja. Pertama buat tampilannya seperti ini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/tombol-start-windows-1.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-496" title="tombol-start-windows-1" src="http://febryanharipurwanto.files.wordpress.com/2009/02/tombol-start-windows-1.jpg?w=245&amp;amp;h=127" alt="tombol-start-windows-1" width="245" height="127" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Biar bisa kaya gabar di atas tambahin 1 buah Timer dan 2 buah CommandButton ke dalam form, kemudian atus properti Command1.Caption =”Aktifkan Start” dan  Command2.Caption=”Nonaftifkan Start”, trus jangan lupa buat kontrol Timer1 beri nilai properti Interval=1.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;kalo sudah semua nanti jadinya seperti ini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/tombol-start-windows-2.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-497" title="tombol-start-windows-2" src="http://febryanharipurwanto.files.wordpress.com/2009/02/tombol-start-windows-2.jpg?w=243&amp;amp;h=126" alt="tombol-start-windows-2" width="243" height="126" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Langkah terakhir Ketik…Eh salah&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Copy Paste Code berikut di kode editor Visual Basic 6.0…..hahahahaha..klo mau ngetikin juga ga dilarang koq, hehe..&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Const VK_ESCAPE = &amp;amp;H1B&lt;br /&gt;Private Const KEYEVENTF_KEYUP = &amp;amp;H2&lt;br /&gt;Private Declare Sub keybd_event _&lt;br /&gt;Lib “user32″ (ByVal bVk As Byte, _&lt;br /&gt;ByVal bScan As Byte, ByVal dwFlags _&lt;br /&gt;As Long, ByVal dwExtraInfo As Long)&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command1_Click()&lt;br /&gt;Timer1.Enabled = False&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command2_Click()&lt;br /&gt;Timer1.Enabled = True&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Timer1_Timer()&lt;br /&gt;Call keybd_event(VK_ESCAPE, 0, 0, 0)&lt;br /&gt;Call keybd_event(VK_ESCAPE, 0, _&lt;br /&gt;KEYEVENTF_KEYUP, 0)&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Kalo udah tinggal dijalankan. Klik tombol “Nonaktifkan Start” untuk menaonaktifkan tombol start dan klik tombol “Aktifkan Start” untuk mengaktifkannya kembali.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Saya pamit dulu…:D&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8408869526370099712?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8408869526370099712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8408869526370099712' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8408869526370099712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8408869526370099712'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/menonaktifkan-tombol-start-windows.html' title='Menonaktifkan Tombol Start Windows'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-2672747758085139430</id><published>2011-06-08T03:41:00.000+07:00</published><updated>2011-06-08T03:43:04.435+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Enkripsi dan Deskripsi Teks dengan Visual Basic</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Enkripsi dan deskripsi teks…ya itu yang akan kita coba kali ini. Prinsipnya sebuah teks yang bersifat rahasia seperti pesan rahasia atau bisa juga surat cinta yang takut dibaca orang lain..hehehe..bisa kita enkripsikan menjadi chipertext dengan pasword tertentu, kemudian untuk membacanya lagi kita harus menggunakan pasword yang sama pula untuk mengembalikan teks yang terenkripsi menjadi plaintext atau teks awal sebelum di enkripsi.&lt;br /&gt;&lt;span id="more-480"&gt;&lt;/span&gt;&lt;br /&gt;Sekarang.. mari kita coba membuat program enkripsi dan deskripsi tersebut dengan Visual Basic 6.0.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Pertama masuk ke Visual Basic 6.0, kemudian buat project baru yaitu Standard.exe. Lalu buatlah tampilan form dengan menambahkan 1 buah Label, 2 buah TextBox dan 2 buah CommandButton sehingga menjadi seperti gambar d bawah ini :&lt;br /&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsienkripsi1.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-478" title="deskripsienkripsi1" src="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsienkripsi1.jpg?w=390&amp;amp;h=373" alt="deskripsienkripsi1" width="390" height="373" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Ganti properti caption dari Label dan CommandButton, kemudian kosongkan properti Text dari Text1 dan Text2, khusus Text1 atur properti MultiLine menjadi True sehingga tampilan menjadi seperti gambar di bawah ini :&lt;br /&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsienkripsi2.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-479" title="deskripsienkripsi2" src="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsienkripsi2.jpg?w=391&amp;amp;h=373" alt="deskripsienkripsi2" width="391" height="373" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Jika user interface sudah selesai langkah terakhir adalah Copy Paste Kode di bawah ini ke Kode Editor Visual Basic :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;‘==========ENKRIPSI&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Function EncryptText(strText, ByVal strPwd)&lt;br /&gt;Dim i, c&lt;br /&gt;Dim strBuff&lt;br /&gt;If strPwd &amp;lt;&amp;gt; “” And strText &amp;lt;&amp;gt; “” Then&lt;br /&gt;strPwd = UCase(strPwd)&lt;br /&gt;If Len(strPwd) Then&lt;br /&gt;For i = 1 To Len(strText)&lt;br /&gt;c = Asc(Mid(strText, i, 1))&lt;br /&gt;c = c + Asc(Mid(strPwd, (i Mod Len(strPwd)) + 1, 1))&lt;br /&gt;strBuff = strBuff &amp;amp; Chr(c And &amp;amp;HFF)&lt;br /&gt;Next&lt;br /&gt;Else&lt;br /&gt;strBuff = strText&lt;br /&gt;End If&lt;br /&gt;EncryptText = strBuff&lt;br /&gt;Else&lt;br /&gt;EncryptText = “”&lt;br /&gt;End If&lt;br /&gt;End Function&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;‘==========DESKRIPSI&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Function DecryptText(strText, ByVal strPwd)&lt;br /&gt;Dim i, c&lt;br /&gt;Dim strBuff&lt;br /&gt;If strPwd &amp;lt;&amp;gt; “” And strText &amp;lt;&amp;gt; “” Then&lt;br /&gt;strPwd = UCase(strPwd)&lt;br /&gt;If Len(strPwd) Then&lt;br /&gt;For i = 1 To Len(strText)&lt;br /&gt;c = Asc(Mid(strText, i, 1))&lt;br /&gt;c = c – Asc(Mid(strPwd, (i Mod Len(strPwd)) + 1, 1))&lt;br /&gt;strBuff = strBuff &amp;amp; Chr(c And &amp;amp;HFF)&lt;br /&gt;Next&lt;br /&gt;Else&lt;br /&gt;strBuff = strText&lt;br /&gt;End If&lt;br /&gt;DecryptText = strBuff&lt;br /&gt;Else&lt;br /&gt;DecryptText = “”&lt;br /&gt;End If&lt;br /&gt;End Function&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command1_Click()&lt;br /&gt;Text1.Text = EncryptText(Text1.Text, Text2.Text)&lt;br /&gt;Command1.Enabled = False&lt;br /&gt;Command2.Enabled = True&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command2_Click()&lt;br /&gt;Text1.Text = DecryptText(Text1.Text, Text2.Text)&lt;br /&gt;Command1.Enabled = True&lt;br /&gt;Command2.Enabled = False&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Form_Load()&lt;br /&gt;Command2.Enabled = False&lt;br /&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sekarang program tinggal dijalankan. Masukkan teks yang akan dienkripsikan kemudian masukkan password dan klik tombol ENKRIPSI maka teks akan terenkripsi seperti yang ditunjukkan oleh gambar berikut :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/enkripsi.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-476" title="enkripsi" src="http://febryanharipurwanto.files.wordpress.com/2009/02/enkripsi.jpg?w=391&amp;amp;h=373" alt="enkripsi" width="391" height="373" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Untuk mendeskripsikan ke teks awal, dengan menggunakan password yang sama kemudian klik tombol DESKRIPSI, makan teks akan kembali menjadi plaintext semula seperti pada gambar berikut :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsi.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-477" title="deskripsi" src="http://febryanharipurwanto.files.wordpress.com/2009/02/deskripsi.jpg?w=391&amp;amp;h=373" alt="deskripsi" width="391" height="373" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Selesai…&lt;br /&gt;Selamat Mencoba &lt;img src="http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1306911992g" alt=":)" class="wp-smiley" /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-2672747758085139430?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/2672747758085139430/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=2672747758085139430' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/2672747758085139430'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/2672747758085139430'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/enkripsi-dan-deskripsi-teks-dengan.html' title='Enkripsi dan Deskripsi Teks dengan Visual Basic'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-2007881310488144837</id><published>2011-06-08T03:38:00.001+07:00</published><updated>2011-06-08T03:40:15.679+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Menyimpan Teks ke File.INI dan Menampilkannya dengan VB</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Wah..ga kerasa sekarang tanggalnya dah direset jadi 01 lagi…ini postingan saya di awal februari setelah 3 hari ga ada aktivitas di blog..maklum kemaren lagi di jalan..hehe. di tempat yang baru..suasana baru.. pagi yang adeeeem banget… enaknya emang di depan komputer sambil minum teh hangat sama sarapan mmmmm..tapi karna dingin jadi males mandi hehehe…&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;yuuuk kita mulai ja..Menyimpan Teks ke file.INI?? Sudah tahu file.INI kan. Pokoknya ya filenya ekstensinya .INI gitu.. biasanya selain di registry, sebuah program menggunakan file ini untuk menyimpan settingan program sehingga ketika program di load kita tidak perlu melakukan setting ulang lagi.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span id="more-432"&gt;&lt;/span&gt;Gimana cara kerjanya???&lt;br /&gt;cara kerjanya pas kita melakukan settingan di program kemudian kita Apply atau Save maka nilai-nilai settingan tadi disimpan di file.INI, kemudian ketika program di load, program hanya tinggal mengambil nilai settingan dari file.INI kemudian diterapkan di program.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Gimana buatnya pake Visual Basic??&lt;br /&gt;Nah disini kita cuma belajar gimana nyimpen data berupa teks dari program ke file.INI kemudian gimana caranya mengambil data dari file.INI trus ditampilin ke program..&lt;br /&gt;Dari konsep ini nanti kita bisa menerapkannya sendiri dalam suatu program tertentu.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;OK..udah lumayan ngocehnya sekarang kita mulai&lt;br /&gt;1. buka Visual Basicnya trus buat new project pilih Standard.EXE&lt;br /&gt;2. buatlah desain pada form dengan memasukkan 2 buah TextBox dan 2 buah CommandButton, sehinggan nanti jadi seperti ini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-433" title="file-ini" src="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini.jpg?w=278&amp;amp;h=153" alt="file-ini" width="278" height="153" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;3. Biar ga bingung nanti pas menjalankan program, ganti properti Command1.Caption =”simpan ke file” dan Command2.Caption=”tampilkan nilai” sertta kosongin nilaiproperti Text pada Text1 dan Text2 sehingga tampilannya kurang lebih benarnya gini :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-2.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-434" title="file-ini-2" src="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-2.jpg?w=279&amp;amp;h=153" alt="file-ini-2" width="279" height="153" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;4 Selanjutnya menuliskan Kode Program di Kode Editornya Visual Basic 6.0. Hehehehe…hayo kalo dikasih Kode seperti di bawah ini lebih milih nulis atau Copy Paste. Dicopy Paste aja biar cepet trus bisa belajar yang lain lagi. tapi ya harus tetep ngerti caranya, nah ini Kode Program Copy Paste ke Kode Editornya VB :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Kode untuk mengambil nilai dari file.ini&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Private Declare Function GetPrivateProfileString _&lt;br /&gt;Lib “kernel32″ Alias “GetPrivateProfileStringA” _&lt;br /&gt;(ByVal lpApplicationName As String, ByVal lpKeyName As Any, _&lt;br /&gt;ByVal lpDefault As String, ByVal lpReturnedString As String, _&lt;br /&gt;ByVal nSize As Long, ByVal lpFileName As String) As Long&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Kode untuk menuliskan nilai ke file.ini&lt;/span&gt;&lt;br /&gt;Private Declare Function WritePrivateProfileString _&lt;br /&gt;Lib “kernel32″ Alias “WritePrivateProfileStringA” _&lt;br /&gt;(ByVal lpApplicationName As String, ByVal lpKeyName As Any, _&lt;br /&gt;ByVal lpString As Any, ByVal lpFileName As String) As Long&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Deklarasi file.ini, ganti nama file sesuai keinginan&lt;br /&gt;&lt;/span&gt;Const INIFileName = “C:\file.ini”&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command1_Click()&lt;br /&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Ketika Command1 di klik makan akan menyimpan nilai&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘pada text1 dan text2 ke file.ini&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Result1 = WritePrivateProfileString(“My App Name”, _&lt;br /&gt;“My Key1″, Text1.Text, INIFileName)&lt;br /&gt;Result2 = WritePrivateProfileString(“My App Name”, _&lt;br /&gt;“My Key2″, Text2.Text, INIFileName)&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Private Sub Command2_Click()&lt;br /&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Deklarasi variabel untuk menampilkan nilai dari file.ini&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dim MyValue1 As String * 20&lt;br /&gt;Dim MyValue2 As String * 20&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); "&gt;‘Ketika Command2 di klik akan menampilkan nilai dari&lt;br /&gt;‘file.ini ke dalam message box&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Result1 = GetPrivateProfileString(“My App Name”, _&lt;br /&gt;“My Key1″, “Empty”, MyValue1, _&lt;br /&gt;Len(MyValue1), INIFileName)&lt;br /&gt;MsgBox MyValue1&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Result2 = GetPrivateProfileString(“My App Name”, _&lt;br /&gt;“My Key2″, “Empty”, MyValue2, _&lt;br /&gt;Len(MyValue2), INIFileName)&lt;br /&gt;MsgBox MyValue2&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;End Sub&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;5. Langkah terakhir jalankan program, kemudian masukkan nilai pada kedua textbox kemudian klik simpan program, kemudian cek di file.INInya apakah sudah masuk apa belom dengan membuka file.INI mengunakan Notepad, untuk menampilkan nilai dari file.INI klik Tampilkan nilai maka nilai akan ditampilkan melalui Message Box.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Memasukkan nilai text ke file.INI&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-running.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-435" title="file-ini-running" src="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-running.jpg?w=279&amp;amp;h=154" alt="file-ini-running" width="279" height="154" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Menampilkan nilai dari file.INI&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-running-2.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: rgb(255, 60, 0); "&gt;&lt;img class="aligncenter size-full wp-image-436" title="file-ini-running-2" src="http://febryanharipurwanto.files.wordpress.com/2009/02/file-ini-running-2.jpg?w=209&amp;amp;h=108" alt="file-ini-running-2" width="209" height="108" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Nah itu dulu untuk hari ini…&lt;br /&gt;Selamat mencoba..&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-2007881310488144837?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/2007881310488144837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=2007881310488144837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/2007881310488144837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/2007881310488144837'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/menyimpan-teks-ke-fileini-dan.html' title='Menyimpan Teks ke File.INI dan Menampilkannya dengan VB'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-1358274672275765331</id><published>2011-06-08T03:36:00.000+07:00</published><updated>2011-06-08T03:37:57.601+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Menampilkan Kode Tombol Keyboard dan Mouse dengan Visual Basic</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dulu ketika awal-awal saya belajar Visual Basic.. saya sempat kebingungan ketika membuat sebuah program, yaitu bagaimana caranya membuat Form Login dimana ketika tombol ENTER pada keyboard ditekan maka mengecek inputan user dan password kemudian login ke Form Utama. Dengan begitu user tidak perlu mengklik tombol Login dengan mouse.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Setelah tau rahasianya…ternyata logikanya ternyata mudah sekali.&lt;br /&gt;Ketika program menerima event yang namanya “Keypress”, program mengecek tombol apakah itu, jika tombol itu adalah tombol ENTER maka fungsi untuk mengecek login dijalankan.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span id="more-365"&gt;&lt;/span&gt;untuk tahu tombol apa yang kita tekan program menggunakan KeyAscii atau KeyCode dari tombol keyboard tersebut. Contohnya tombol ENTER memiliki KeyAscii dan KeyCode =13.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Kurang lebih kode programnya seperti ini:&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;strong&gt;Private Sub Form_KeyPress(KeyAscii As Integer)&lt;br /&gt;If KeyAscii=13 Then&lt;br /&gt;‘ disini letak fungsi atau pernyataan yang akan dijalankan&lt;br /&gt;End If&lt;br /&gt;End Sub&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Berapa Kode untuk tombol SPASI,TAB, Huruf A, atau Karakter “?” ???&lt;br /&gt;Susah pastinya jika kita harus menghapal semua kode tombol yang ada di keyboard kita.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Berikut ini adalah cara untuk menampilkan nilai KeyAscii dan KeyCode serta Nilai tombol Mouse di Visual Basic Form. Cara kerjanya yaitu ketika Tombol keyboard atau mouse ditekan maka program akan menampilkan Nilai Keyascii dan Keycodenya di Form.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Caranya :&lt;br /&gt;1. Buatlah tampilan pada form sebagai berikut:&lt;br /&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/tampilkode.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-366" title="tampilkode" src="http://febryanharipurwanto.files.wordpress.com/2009/01/tampilkode.jpg?w=295&amp;amp;h=155" alt="tampilkode" width="295" height="155" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Tambahkan 6 Buah Label ke dalam form, kemudian ubah property Caption masing masing label seperti yang tertampil pada gambar di atas.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;2. Copy Paste atau ketik kode berikut ini di Kode Editor :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;==================================================================&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;‘menampilkan keycode&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;strong&gt;Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)&lt;br /&gt;Label1.Caption = KeyCode&lt;br /&gt;End Sub&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;‘menampilkan keyascii&lt;br /&gt;&lt;strong&gt;Private Sub Form_KeyPress(KeyAscii As Integer)&lt;br /&gt;Label2.Caption = KeyAscii&lt;br /&gt;End Sub&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;‘menampilkan mousekey&lt;br /&gt;&lt;strong&gt;Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)&lt;br /&gt;Label3.Caption = Button&lt;br /&gt;End Sub&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;==================================================================&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;3. Jalankan program kemudian coba tekan sembarang tombol pada keyboard, maka akan muncul kode dari tombol tersebut di form. kurang lebih tampilannya sebagai berikut :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/hasilkode.jpg" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;img class="aligncenter size-full wp-image-367" title="hasilkode" src="http://febryanharipurwanto.files.wordpress.com/2009/01/hasilkode.jpg?w=295&amp;amp;h=156" alt="hasilkode" width="295" height="156" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; display: block; margin-left: auto; margin-right: auto; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Untuk diketahui:&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;KEYASCII: hanya terbatas pada karakter dan simbol saja, kode untuk huruf kecil berbeda dengan huruf kapital&lt;br /&gt;KEYCODE: hampir semua tombol di keyboard, satu tombol satu kode&lt;br /&gt;MOUSEKEY : klik kanan, klik kiri&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Semoga Bermanfaat.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-1358274672275765331?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/1358274672275765331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=1358274672275765331' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1358274672275765331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1358274672275765331'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/menampilkan-kode-tombol-keyboard-dan.html' title='Menampilkan Kode Tombol Keyboard dan Mouse dengan Visual Basic'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8048398441895989886</id><published>2011-06-08T03:35:00.002+07:00</published><updated>2011-06-08T03:36:41.051+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Status Battery Laptop</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Semua laptop atau notebook kita bisa mengetahui info battery laptop yang kita pakai, tinggal berapa persen battery kita, berapa jam lagi battery akan habis. &lt;span id="more-128"&gt;&lt;/span&gt;Nah Kali ini kita akan mencoba membuat sendiri program untuk menampilkan info battery pada laptop kita dengan menggunakan Visual Basic 6.0.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download file tutor&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/status-battery-laptop.pdf"&gt;status-battery-laptop&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8048398441895989886?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8048398441895989886/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8048398441895989886' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8048398441895989886'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8048398441895989886'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/status-battery-laptop.html' title='Status Battery Laptop'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-377423785983667963</id><published>2011-06-08T03:35:00.001+07:00</published><updated>2011-06-08T03:35:40.595+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Membuat Web Link di VB</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Tentunya sudah biasa mendengar kata “web link” yang terdapat di suatu website yang ketika di klik akan membuka alamat website lain sesuai alamat yang ada pada link tersebut, nah sekarang kita akan mencoba membuat web link di form Visual basic, caranya sangat mudah yaitu kita akan memanfaatkan fungsi shellExecute. &lt;span id="more-124"&gt;&lt;/span&gt;Pada dasarnya sama saja dengan ketika kita menuliskan “explorer http://www.google.com” pada Command Promptnya windows maka akan membuka browser (seperti Internet Explorer, Mozilla Firefox) tergantung mana yang disetting default pada computer kita ) dengan alamat http://www.google.com.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download disini&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/membuat-web-link-di-vb.pdf"&gt;membuat-web-link-di-vb&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-377423785983667963?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/377423785983667963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=377423785983667963' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/377423785983667963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/377423785983667963'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/membuat-web-link-di-vb.html' title='Membuat Web Link di VB'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-890911457940101974</id><published>2011-06-08T03:34:00.000+07:00</published><updated>2011-06-08T03:35:01.450+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Menutup Semua Program</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Terbayangkah ketika kita sedang di depan komputer dan membuka banyak aplikasi misalnya ketika kita sedang mempelajari tutorial Pemrograman Web dengan menggunakan Macromedia Dreamwever dan aplikasi tambahan untuk membuat desiainnya seperti Adobe Photoshop, CorelDraw ataupun Macromedia Flash dari e‐book berupa PDF sambil mendengar lagu di Winamp, diselingi juga dengan menonton video tutorial tentang PHP dengan Windows Media Player, dan mencari file‐file yang dibutuhkan melalui Windows Explorer. &lt;span id="more-121"&gt;&lt;/span&gt;Tiba‐tiba anda harus segera ke suatu tempat dan harus menutup semua program yang sudah anda jalankan. setidaknya perlu waktu bagi anda untuk menutup semua aplikasi yang sedang berjalan tadi. Pertanyaannya adalah bisakah kita menutup semua aplikasi tadi dalam satu kali klik mouse?. Tips n Trik kali ini akan menjawabnya, sekarang kita akan mencoba membuat program yang berfungsi menutup semua aplikasi dalam satu kali klik mouse dengan menggunakan Visual Basic 6.0 sehingga kita tidak perlu menutup program‐program tersebut satu per satu.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download file&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/menutup-semua-program.pdf"&gt;menutup-semua-program&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-890911457940101974?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/890911457940101974/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=890911457940101974' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/890911457940101974'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/890911457940101974'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/menutup-semua-program.html' title='Menutup Semua Program'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-4827626078786514467</id><published>2011-06-08T03:33:00.001+07:00</published><updated>2011-06-08T03:33:57.581+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Mengunci Gerakan Mouse</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Mouse adalah bagian yang cukup penting dari sebuah komputer karena sebagian besar program memerlukan mouse dalam menjalankannya, meskipun sebuah program mempunyai shortcut keyboard untuk menjalankan perintahnya, akan tetapi masih banyak dan sebagian besar pengguna komputer mengunakan mouse untuk menjalankan program terutama bagi yang tidak tahu dan tidak hapal shortcut keyboard suatu program tertentu. &lt;span id="more-113"&gt;&lt;/span&gt;&lt;br /&gt;Sekarang kita mencoba membuat program untuk mengunci gerakan mouse sehingga pointer mouse selalu berada di tengah‐tengah layar monitor dan tidak dapat digerakkan.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;donlot disini&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/mengunci-gerakan-mouse.pdf"&gt;mengunci-gerakan-mouse&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-4827626078786514467?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/4827626078786514467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=4827626078786514467' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/4827626078786514467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/4827626078786514467'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/mengunci-gerakan-mouse.html' title='Mengunci Gerakan Mouse'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5241521283975056310</id><published>2011-06-08T03:31:00.002+07:00</published><updated>2011-06-08T03:33:15.797+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Membuat Toolbar dan Statusbar</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Tips n Trik kali ini adalah bagaimana cara membuat toolbar dan statusbar pada aplikasi yang dibuat dengan menggunakan Visual Basic 6.0. Toolbar yaitu tombol atau icon yang biasanya terdapat pada bagian atas aplikasi yang mewakili menu‐menu tertentu seperti menu save diwakili oleh toolbar dengan icon disket, atau menu cut dengan icon gunting. &lt;span id="more-108"&gt;&lt;/span&gt;Sedangkan statusbar biasanya posisinya di bagian bawah yang fungsinya menunjukkan status seperti status Caps Lock, Num Lock, Scroll Lock, dan biasanya juga terdapat tanggal dan waktu dan lain‐lain. Pada Tips n Trik ini kita akan belajar mengimplementasikan Toolbar dan Statusbar pada aplikasi Text Editor sederhana.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;donlot filenya disini&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/membuat-toolbar-dan-statusbar.pdf"&gt;membuat-toolbar-dan-statusbar&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5241521283975056310?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5241521283975056310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5241521283975056310' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5241521283975056310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5241521283975056310'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/membuat-toolbar-dan-statusbar.html' title='Membuat Toolbar dan Statusbar'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-1287229247412409232</id><published>2011-06-08T03:31:00.001+07:00</published><updated>2011-06-08T03:31:47.802+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Mencegah Perintah Ctrl+Alt+Del</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Tips n Trik kali ini adalah bagaimana cara kita untuk mencegah seseorang menjalankan Windows Task Manager seperti yang sering kita alami ketika di warnet, biasanya setiap warnet mencegah clientnya untuk menjalankan Windows Task Manager supaya client tidak bisa mematikan program seenaknya seperti program billing pada warnet.&lt;br /&gt;&lt;span id="more-104"&gt;&lt;/span&gt;&lt;br /&gt;nah sekarang bagaimana caranya membuat program untuk mencegah seseorang atau teman kita masuk ke Windows Task Manager di komputer kita, caranya sangat mudah kita hanya membutuhkan dua buah komponen yaitu komponen timer dan system.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download file&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/melarang-ctrlaltdel.pdf"&gt;melarang-ctrlaltdel&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-1287229247412409232?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/1287229247412409232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=1287229247412409232' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1287229247412409232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1287229247412409232'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/mencegah-perintah-ctrlaltdel.html' title='Mencegah Perintah Ctrl+Alt+Del'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-4080187013176986356</id><published>2011-06-08T03:30:00.000+07:00</published><updated>2011-06-08T03:31:06.624+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Mengganti Tombol Klik Mouse</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sebelumnya saya mau cerita, saya punya teman yang kidal dan dia sering cerita kalau komputernya dia mousenya di setting terbalik, tapi karena komputernya sering dipakai oleh temen‐temennya settingan&lt;br /&gt;mousenya diubah jadi normal lagi dan dia merasa repot harus membuka control panel untuk mengubah&lt;br /&gt;settingan mousenya.&lt;br /&gt;&lt;span id="more-94"&gt;&lt;/span&gt;&lt;br /&gt;Nah tips n trik kali ini adalah bagaimana caranya kita membantu temen saya agar&lt;br /&gt;dia tidak kerepotan mengganti settingan mousenya. Solusinya kita akan membuat program sederhana&lt;br /&gt;dengan menggunakan visual basic untuk mengubah setting tombol mouse.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download filenya&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/mengganti-klik-mouse.pdf"&gt;mengganti-klik-mouse&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-4080187013176986356?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/4080187013176986356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=4080187013176986356' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/4080187013176986356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/4080187013176986356'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/mengganti-tombol-klik-mouse.html' title='Mengganti Tombol Klik Mouse'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8131739815015708855</id><published>2011-06-08T03:29:00.001+07:00</published><updated>2011-06-08T03:30:21.520+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Open Close CD‐ROM</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sebelumnya kita sudah tahu bagaimana cara untuk mengetahui drive pada komputer kita beserta jenisnya, dari tips yang saya posting sebelumnnya kita bisa memanfaatkan FileSistem Object untuk mengetahui CD‐ROM pada Komputer kita kemudian dengan menambahkan beberapa fungsi kita bisa membuat program untuk membuka dan menutup CD‐ROM. &lt;span id="more-90"&gt;&lt;/span&gt;Logikanya sangat mudah, pertama kita menentukan apakah suatu drive adalah CD‐ROM? kemudian jika drive tersebut benar adalah CD‐ROM maka kita panggil fungsi untuk membuka atau menutup CD‐ROM. Untuk lebih jelasnya ikuti langkahlangkah berikut :&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/open-close-cd-rom.pdf" style="color: rgb(81, 81, 81); text-decoration: none; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver; "&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/open-close-cd-rom.pdf"&gt;open-close-cd-rom&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8131739815015708855?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8131739815015708855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8131739815015708855' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8131739815015708855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8131739815015708855'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/open-close-cdrom.html' title='Open Close CD‐ROM'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5756595380578832507</id><published>2011-06-08T03:27:00.000+07:00</published><updated>2011-06-08T03:29:13.342+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Mengetahui Drive pada Komputer</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Tips n Trik kali ini adalah bagaimana caranya mengetahui drive pada komputer serta jenis drive tersebut ( Hard Drive, CD Drive, atau Removable Drive ), Tips ini awalnya terinspirasi setelah saya membaca satu tips dari salah satu website tentang visual basic yaitu tips mengetahui CD‐ROM pada komputer.&lt;span id="more-77"&gt;&lt;/span&gt;padatips kali ini kita tidak hanya mengetahui CD‐ROM saja tetapi juga Harddisk dan Removable Disk. caranya sangat mudah kita hanya perlu menggunakan FileSystemObject untuk mengetahui Drive yang ada di komputer kita.&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;donlot&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/mengetahui-drive-pada-komputer.pdf"&gt;mengetahui-drive-pada-komputer&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5756595380578832507?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5756595380578832507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5756595380578832507' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5756595380578832507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5756595380578832507'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/mengetahui-drive-pada-komputer.html' title='Mengetahui Drive pada Komputer'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-3168449968995206373</id><published>2011-06-08T03:26:00.000+07:00</published><updated>2011-06-08T03:27:47.822+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Memainkan Animasi Flash di VB</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 12px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Animasi flash adalah gambar animasi bergerak berekstensi *.swf dan biasanya dijalankan dengan menggunakan flash player. Animasi flash banyak digunakan untuk membuat banner pada website, game dan bahkan banyak aplikasi yang dibuat dengan Flash.&lt;span id="more-70"&gt;&lt;/span&gt; Selain itu kita juga bisa memainkan animasi flash melalui Visual Basic yaitu dengan menggunakan komponen shockwaveFlash&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download  caranya&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: silver;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/memainkan-flash-di-vb.pdf"&gt;memainkan-flash-di-vb&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-3168449968995206373?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/3168449968995206373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=3168449968995206373' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/3168449968995206373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/3168449968995206373'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/memainkan-animasi-flash-di-vb.html' title='Memainkan Animasi Flash di VB'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5069546923711284531</id><published>2011-06-08T03:24:00.000+07:00</published><updated>2011-06-08T03:26:32.106+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tips dan Triks'/><title type='text'>Membuat Menu Pop‐Up</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Menu pop‐up adalah menu yang muncul ketika kita mengklik kanan ketika menjalankan sebuah aplikasi, menu pop‐up juga sering disebut dengan menu shortcut atau menu konteks.&lt;span id="more-41"&gt;&lt;/span&gt; Kita bisa menambahkan menu pop‐up ke dalam aplikasi yang dibuat dengan menggunakan Visual Basic yaitu dengan menggunakan Menu Editor dan Event MouseUp.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Donlot di sini&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/membuat-menu-pop-up.pdf"&gt;membuat-menu-pop-up.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5069546923711284531?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5069546923711284531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5069546923711284531' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5069546923711284531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5069546923711284531'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/membuat-menu-popup.html' title='Membuat Menu Pop‐Up'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8177076964253155971</id><published>2011-06-08T03:23:00.000+07:00</published><updated>2011-06-08T03:24:01.452+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Modul Standar</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Ketika membuat program yang cukup besar, kita mungkin memiliki lebih dari satu form yang menggunakan variable, prosedur atau fungsi yang sama. Misalnya kita memiliki 2 buah form yaitu Form1 dan Form2 dan ingin menampilkan tanggal beserta waktu di kedua form tersebut. maka kita bisa saja menuliskan fungsi atau prosedur untuk menampilkan tanggal dan waktu di masing‐masing form, bayangkan jika form kita lebih dari dua. Sama halnya ketika kita membuat&lt;br /&gt;program yang terkoneksi database.jika ada lebih dari satu form terkoneksi database, kita bisa saja menuliskan fungsi atau procedure untuk koneksi ke database di setiap form yang ada. Tapi semua itu menjadi tidak efisien, karena banyak kode program yang sama ditulis secara berulang‐ulang. Sedangkan secara default sebuah variable sifatnya lokal dalam sebuah prosedur, dan procedur sifatnya lokal untuk form tempat diciptakannya saja. Nah… untuk mengatasi hal ini, kita bisa membuat satu variable, prosedur atau fungsi public di sebuah modul standar yang nantinya bisa dipanggil dari semua form dalam project kita.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span id="more-383"&gt;&lt;/span&gt;Apa itu Modul Standar???&lt;br /&gt;Modul standar bisa dikatakan sebuah file dengan ekstensi .bas dan bisa menampung variable, prosedur atau fungsi yang dapat digunakan di seluruh bagian program pada sebuah project. Berbeda dengan form module hanya bisa diberi kode program saja dan tidak bisa disisipkan objek seperti pada form.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Bagaimana membuat sebuah Modul Standar???&lt;br /&gt;Bagaimana menggunakan Modul Standar di dalam sebuah Project???&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download File PDF Lengkapnya disini&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-10.pdf"&gt;visual-basic-60-chapter-10.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8177076964253155971?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8177076964253155971/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8177076964253155971' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8177076964253155971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8177076964253155971'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/modul-standar.html' title='Modul Standar'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-8401272926135474171</id><published>2011-06-08T03:21:00.000+07:00</published><updated>2011-06-08T03:22:59.099+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Array dan Kontrol Array</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Array adalah sekumpulan nilai yang disimpan dalam satu nama yang sama, array mengijinkan kita merujuk seluruh kelompok nilai menggunakan satu nama lalu memproses setiap nilai tersebut secara individual atau sebagai group menggunakan For … Next ataupun Loop … Do. Array sangat bermanfaat karena membantu menyimpan data yang besar dan tidak praktis jika disimpan dalam variabel biasa.&lt;br /&gt;&lt;span id="more-117"&gt;&lt;/span&gt;&lt;br /&gt;Array dibuat atau dideklarasikan dengan cara yang sama seperti pendeklarasian variabel biasa yaitu menggunakan perintah Dim, kemudian diikuti dengan tanda kurung dan jumlah elemen arraynya dikurangi 1. Setiap nilai data di dalam sebuah array disebut elemen array dan masingmasing dibedakan dengan nomor indeksnya. Perlu di ingat bahwa indeks pada array dimulai dari angka nol.&lt;br /&gt;Array terdiri dari fixed array dan dynamic array, fixed array yaitu array yang mengandung jumlah elemen berukuran tetap, sedangkan dynamic array yaitu array yang mengandung jumlah elemen berupa variabel ( array yang bisa diperbesar selama eksekusi program ).&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;download file lengkap&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-9.pdf"&gt;visual-basic-60-chapter-9.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-8401272926135474171?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/8401272926135474171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=8401272926135474171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8401272926135474171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/8401272926135474171'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/array-dan-kontrol-array.html' title='Array dan Kontrol Array'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-9062348951843259547</id><published>2011-06-08T03:20:00.000+07:00</published><updated>2011-06-08T03:21:38.640+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Procedure</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Procedure dikategorikan sebagai sub algoritma atau sub program yang berisi perintah‐perintah untuk melakukan tugas tertentu. Procedure efektif digunakan ketika terdapat lebih dari satu kali perintah yang sama dalam suatu program. Dengan menggunakan procedure kita tidak perlu berulangkali membuat kode yang sama, kita hanya perlu membuat satu procedure dan menuliskan sekali saja perintah tersebut di dalam procedure tadi.&lt;br /&gt;&lt;span id="more-101"&gt;&lt;/span&gt;&lt;br /&gt;Dengan penggunaan procedure ini kita hanya perlu memanggil procedure untuk menjalankan perintah di beberapa tempat yang berbeda. Selain itu, procedure akan memudahkan perbaikan kode program bila terjadi perubahan atau kesalahan, karena perbaikan cukup dilakukan pada satu bagian saja.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Donlot disini&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-8.pdf"&gt;visual-basic-60-chapter-8.pdf&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-9062348951843259547?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/9062348951843259547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=9062348951843259547' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/9062348951843259547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/9062348951843259547'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/procedure.html' title='Procedure'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-7028063477703174131</id><published>2011-06-08T03:19:00.002+07:00</published><updated>2011-06-08T03:20:35.241+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Alur Program ‐ Kondisi Perulangan</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dalam pemrograman ada kalanya kita memerlukan perulangan untuk melakukan suatu perintah yang sama untuk beberapa kali, misalkan pada program untuk mencari data maka diperlukan perulangan untuk mencari data dari record awal sampai record akhir atau sampai data yang dicari ditemukan.&lt;br /&gt;&lt;span id="more-97"&gt;&lt;/span&gt;&lt;br /&gt;Dalam visual basic terdapat beberapa macam struktur kondisi perulangan, diantaranya adalah Do … Loop dan For … Next.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download Tutorial&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-7.pdf"&gt;visual-basic-60-chapter-7.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-7028063477703174131?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/7028063477703174131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=7028063477703174131' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/7028063477703174131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/7028063477703174131'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/alur-program-kondisi-perulangan.html' title='Alur Program ‐ Kondisi Perulangan'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5247059745550200242</id><published>2011-06-08T03:19:00.001+07:00</published><updated>2011-06-08T03:19:44.999+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Alur Program ‐ Kondisi Percabangan</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Sebuah aplikasi harus memiliki alur program yang baik sehingga tidak akan terjadi kesalahan dan hasil yang dikeluarkan oleh program tidak menyimpang dari yang diinginkan ketika program berjalan. Untuk itu perlu dibuat sebuah kondisi percabangan dalam program.&lt;span id="more-86"&gt;&lt;/span&gt; Dalam Visual Basic ada beberapa kondisi percabangan yang dapat digunakan seperti IF… THEN atau SELECT CASE. Kondisi percabangan biasanya dinyatakan dengan menggunakan operator seperti operator sama dengan (=), tidak sama dengan (&amp;lt;&amp;gt;) atau operator‐operator perbadingan lainnya ( &amp;gt;, &amp;gt;=, &amp;lt;, &amp;lt;=).&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download tutor&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-6.pdf"&gt;visual-basic-60-chapter-6.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5247059745550200242?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5247059745550200242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5247059745550200242' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5247059745550200242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5247059745550200242'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/alur-program-kondisi-percabangan.html' title='Alur Program ‐ Kondisi Percabangan'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-1155768840609056956</id><published>2011-06-08T02:55:00.000+07:00</published><updated>2011-06-08T03:06:51.879+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Operator Matematika</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Dalam pemrograman kita tidak hanya sekedar mempelajari bahasa pemrogramannya saja, banyak hal yang harus dipelajari seperti salah satunya adalah Operator Matematika. Dalam bahasa pemrograman Operator Matematika dapat diartikan sebagai symbol yang digunakan untuk melakukan operasi terhadap nilai data.&lt;span id="more-83"&gt;&lt;/span&gt; Operator dalam bahasa pemrograman dapat berupa karakter ataupun berupa kata khusus yang melambangkan satu operasi tertentu, misalnya operator untuk operasi penjumlahan (+), pengurangan(‐),pembagian(/),perkalian(*) dan sebagainya.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-5.pdf"&gt;visual-basic-60-chapter-5.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-1155768840609056956?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/1155768840609056956/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=1155768840609056956' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1155768840609056956'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1155768840609056956'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/operator-matematika.html' title='Operator Matematika'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5031638072652536236</id><published>2011-06-08T02:52:00.000+07:00</published><updated>2011-06-08T02:55:46.483+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Tipe Data, Variabel, dan Konstanta</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Data memiliki tipe yang berbeda‐beda dan biasanya data dikelompokkan pada kelompok yang sejenis agar tidak terjadi operasi matematika diantara data yang berbeda jenis tersebut, contohnya kita tidak bisa menjumlahkan nilai suatu jarak (Km) dengan Massa (Kg) karena keduanya memiliki tipe data yang berbeda. Begitu juga dalam suatu program, setiap nilai harus dikelompokkan pada jenis‐jenis tertentu yang disebut dengan tipe data.&lt;br /&gt;&lt;span id="more-67"&gt;&lt;/span&gt;Setiap data yang disimpan dalam komputer memerlukan variabel sebagai sesuatu tempat untuk menyimpan nilai dari data tersebut, dan nilainya suatu variable dapat berubah‐ubah selama proses program.misalnya kita bisa menyimpan nilai ujian mid di variable A dan nilai ujian akhir di variable B, dan setiap mahasiswa nilainya pasti berbeda.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;donlot disini&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-4.pdf"&gt;visual-basic-60-chapter-4.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5031638072652536236?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5031638072652536236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5031638072652536236' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5031638072652536236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5031638072652536236'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/tipe-data-variabel-dan-konstanta.html' title='Tipe Data, Variabel, dan Konstanta'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-5990102340665599406</id><published>2011-06-08T02:49:00.000+07:00</published><updated>2011-06-08T02:51:05.155+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Setting Properties di Kode Program</title><content type='html'>&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Selain bisa diatur melalui properties window kita juga dapat mengatur property sebuah komponen/objek di kode program. &lt;span id="more-59"&gt;&lt;/span&gt;Dalam visual basic 6.0 penulisan kode biasanya selalu di awali dengan nama objek menudian dipisah oleh tanda dot (.) baru diikuti oleh method atau property dan valuenya.&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;Download pdfnya&lt;/p&gt;&lt;p style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; font-size: 12px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; "&gt;&lt;span class="Apple-style-span" &gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-31.pdf"&gt;visual-basic-60-chapter-31.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-5990102340665599406?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/5990102340665599406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=5990102340665599406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5990102340665599406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/5990102340665599406'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/setting-properties-di-kode-program.html' title='Setting Properties di Kode Program'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-1876545799198337714</id><published>2011-06-08T02:42:00.003+07:00</published><updated>2011-06-08T02:51:45.141+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>User Interface, Property, dan Event</title><content type='html'>Tahap pertama dalam membangun sebuah aplikasi berbasis GUI ( Graphical User Interface ) yaitu membuat User Interfacenya terlebih dahulu. User Interface adalah tampilan/antarmuka dari sebuah program yang berfungsi sebagai penghubung antara program dengan pengguna ( user ).&lt;br /&gt;&lt;br /&gt;donwload aja ya… bis bingung mo nulis apa..&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-2.pdf"&gt;visual-basic-60-chapter-2.pdf&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-1876545799198337714?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/1876545799198337714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=1876545799198337714' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1876545799198337714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1876545799198337714'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/user-interface-property-dan-event.html' title='User Interface, Property, dan Event'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4497289148669276886.post-1350990059238755198</id><published>2011-06-08T02:31:00.001+07:00</published><updated>2011-06-08T02:52:47.481+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic Tutorial'/><title type='text'>Mengenal Visual Basic 6.0</title><content type='html'>Visual Basic adalah salah satu bahasa pemrograman komputer yang sudah mendukung OOP (Object Oriented Programming ) dan merupakan bahasa pemrograman berbasis GUI (Graphical User Interface ).Visual Basic adalah pengembangan dari bahasa pendahulunya yaitu bahasa pemrograman BASIC ( Beginner’s All Purpoe Symbolic Instruction Code ). Visual Basic merupakan salah satu alat bantu ( Development Tool ) dalam pembuatan berbagai macam program komputer, khususnya program komputer yang berbasis sistem operasi&lt;br /&gt;Windows. tutornya dah tak buat dalam bentuk pdf tinggal donload disini :&lt;br /&gt;&lt;br /&gt;&lt;a href="http://febryanharipurwanto.files.wordpress.com/2009/01/visual-basic-60-chapter-1.pdf"&gt;visual-basic-60-chapter-1.pdf&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4497289148669276886-1350990059238755198?l=teachmevb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://teachmevb.blogspot.com/feeds/1350990059238755198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4497289148669276886&amp;postID=1350990059238755198' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1350990059238755198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4497289148669276886/posts/default/1350990059238755198'/><link rel='alternate' type='text/html' href='http://teachmevb.blogspot.com/2011/06/mengenal-visual-basic-60.html' title='Mengenal Visual Basic 6.0'/><author><name>Febryan</name><uri>http://www.blogger.com/profile/03633735788105343072</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
