e-Book Tips Photoshop for Photography: Cara Membuat Efek ROL (Ray of Lights) pada Foto di Photoshop
0 Comments - 30 Jan 2012
oleh Ramadhan Bagaskara Arya Pramuka, Professional Photographer Indonesia Baru-baru ini, saya mendapat PM (private message) dari sahabat saya di Bandung Sriwijaya, yang memohon pencerahannya untuk membuat ROL (Ray of Lights). Saya menjawab bahwa, f...

More Link
Instagram Filters as Photoshop Actions
0 Comments - 01 Oct 2011
I recently did a google search to see if anyone had “converted” instagram filters to photoshop actions. After not finding any results, I decided to see if I could do it myself. I didn’t get a 100% exact match, but it’s pretty close. Im starting w...

More Link

Rabu, 21 Juli 2010

TextBox Hanya Menerima Input Huruf

Source code berikut untuk memfungsikan textbox hanya bisa menerima input huruf. Bisa digunakan untuk input nama atau yang lainnya yang tidak menggunakan angka.

Yang diperlukan :
1 Form
1 TextBox

Source code pada Form :

1Public Sub HanyaHuruf(ByRef KeyAscii As Integer)
2 If Not (KeyAscii >= Asc("a") & Chr(13) And KeyAscii <= Asc("z") & Chr(13) Or (KeyAscii >= Asc("A") & Chr(13) And KeyAscii <= Asc("Z") & Chr(13) Or KeyAscii = vbKeyBack Or KeyAscii = vbKeyDelete Or KeyAscii = vbKeySpace)) Then
3 KeyAscii = 0
4 End If
5End Sub
6
7Private Sub Text1_KeyPress(KeyAscii As Integer)
8 HanyaHuruf KeyAscii
9End Sub

Download Source Code

0 komentar:

Posting Komentar