Membuat Chating di Handphone dengan bantuan program chating Ebuddy.
Pagi hari minggu tgl 10-5-2009 yang cerah ini,bukannya pada hari minggu ku turut ayah ke kota untuk naik delman istimewa tapi itu hanya dalam sebuah lagu , kenyatannya pada hari minggu yang cerah ini saya membuat tulisan artikel bagaimaan membuat chating di handphone dengan bantuan program ebuddy ,kenapa saya memilih program ebuddy di hp, dikarenakan ebuddy sudah terbukti kemampuannya dan rata2 mayoritas pengguna chating di hp pasti sudah menggenal program ebuddy.
didalam program ebuddy tersedia failitas chat dengan yahoo,msn dan lain2.
Ini adalah logo kebesaran ebuddy.
Langkah nya
-perhatian untuk melakukan langkah2 ini gprs pada hp anda harus dalam posisi aktif karena kita akan melakukan download aplikasi ebuddy.
-untuk tipe minimal untuk semua merk hp ,hp berwarna biasanya berfasilitas gprs dengan fitur wap.
Pada wap atau browser di hp anda
http://get.ebuddy.com
lalu pilih download to mobile
selanjutnya tinggal ikuti petunjuk saja.
Untuk cara lain mendownload http://www.ebuddy.com/mobilebeta/
Demikian lah cara singkat dari saya untuk menghadirkan chating di hp anda untuk kritik dan saran kirim ke ibaskorn@gmial.com.
Minggu, 10 Mei 2009
Rabu, 29 April 2009
Panggill File System Menggunakan File bantuan SHELEXEC dengan Visual Basic 6.0
Maaf tutorial ini agak terlambat, dikarenakan ada yang bertanya kepada saya bagaimana caranya memanggil file system windows, saya baru menjawabnya sekarang,
Trik saya kali ini tidak murni menggunakan VB 6.0 alasannya tidak banyak koding lebih simple tetapi ini hanyalah variasi cara saja masih banyak cara yg digunakan untuk kasusnya seperti ini.
Kali ini saya menggunakan file bantuan yaitu shelexec berupa file exe untuk pembantu program saya dapat di download di link ini :
http://www.ziddu.com/download/4527492/SHELEXEC.EXE.html
yang pasti gratis tidak berbayar he2?
Setelah file ini di download lakukan langkah dibawah ini:
Selanjutanya melakukan koding seprti dibawah ini:
Akhirnya sudah jadi juga ya cukup mudah tidak memrlukan koding yang puanjanggggg.
Cukup sekian terima kasih atas requestnya kesaya. Masih ditunggu kritik dan saran kalau perlu request seperti ini lagi di tunggu salam.
Trik saya kali ini tidak murni menggunakan VB 6.0 alasannya tidak banyak koding lebih simple tetapi ini hanyalah variasi cara saja masih banyak cara yg digunakan untuk kasusnya seperti ini.
Kali ini saya menggunakan file bantuan yaitu shelexec berupa file exe untuk pembantu program saya dapat di download di link ini :
http://www.ziddu.com/download/4527492/SHELEXEC.EXE.html
yang pasti gratis tidak berbayar he2?
Setelah file ini di download lakukan langkah dibawah ini:
Selanjutanya melakukan koding seprti dibawah ini:
Akhirnya sudah jadi juga ya cukup mudah tidak memrlukan koding yang puanjanggggg.
Cukup sekian terima kasih atas requestnya kesaya. Masih ditunggu kritik dan saran kalau perlu request seperti ini lagi di tunggu salam.
Jumat, 24 April 2009
Menggunakan file Resolu.bas untuk mengatur resolusi form di vb 6.0
Menggunakan file Resolu.bas untuk mengatur resolusi form di vb 6.0
Kembali lagi ke tutorial programming seperti biasa saya menggunakan visual basic 6.0
Kali ini saya akan menjelaskan salah satu cara mengatur resolusi di visual basic 6.0 langsung saja tidak panjang lebar.
Langkah pertama saya menggunakan file bantuan resolu.bas yg dapat didownload gratis link di bawah ini.
http://www.ziddu.com/download/4635663/Resolu.zip.html
setelah dengan sukses di download lakukan langkah dibawah berikut.
Yaitu meng add file resolu.bas dengan cara dibawah
Menggunakan file Resolu.bas untuk mengatur resolusi form di vb 6.0
Setelah file teradd lakukan langkah selanjutnya yaitu mengubah seting resolu untuk x dan y dapat diganti sesuai dengan kesukaan anda.
Setelah langkah selanjutnya cara manggunakannya.
Cukup mudah bukan dan setelah langkah diatas anda bisa men test nya langsung, sekian trik dari saya untuk kritiknya di tunggu di ibaskorn@gmail.com.
Kembali lagi ke tutorial programming seperti biasa saya menggunakan visual basic 6.0
Kali ini saya akan menjelaskan salah satu cara mengatur resolusi di visual basic 6.0 langsung saja tidak panjang lebar.
Langkah pertama saya menggunakan file bantuan resolu.bas yg dapat didownload gratis link di bawah ini.
http://www.ziddu.com/download/4635663/Resolu.zip.html
setelah dengan sukses di download lakukan langkah dibawah berikut.
Yaitu meng add file resolu.bas dengan cara dibawah
Menggunakan file Resolu.bas untuk mengatur resolusi form di vb 6.0
Setelah file teradd lakukan langkah selanjutnya yaitu mengubah seting resolu untuk x dan y dapat diganti sesuai dengan kesukaan anda.
Setelah langkah selanjutnya cara manggunakannya.
Cukup mudah bukan dan setelah langkah diatas anda bisa men test nya langsung, sekian trik dari saya untuk kritiknya di tunggu di ibaskorn@gmail.com.
Validasi Karakter Asterik di Vb6.0 pada text box
trik kali ini adalah membuat validasi asterik yang fungsinya untuk memblok kata - kata asterik pada text box seperti ",/?;';][=-\ dan lain - lain:
ikuti contoh di bawah pada even keypress masukan kode seperti di bawah ini
Private Sub text1_KeyPress(KeyAscii As Integer)
''''''awal kode
If InStr("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ,", Chr(KeyAscii)) = 0 Then
If KeyAscii <> vbKeyBack Then
KeyAscii = 0
End If
''''''akhirkode
End If
mudah2 and trik ini sedikit membantu
kritik dan saran ke ibaskorn@gmail.com
ikuti contoh di bawah pada even keypress masukan kode seperti di bawah ini
Private Sub text1_KeyPress(KeyAscii As Integer)
''''''awal kode
If InStr("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ,", Chr(KeyAscii)) = 0 Then
If KeyAscii <> vbKeyBack Then
KeyAscii = 0
End If
''''''akhirkode
End If
mudah2 and trik ini sedikit membantu
kritik dan saran ke ibaskorn@gmail.com
Senin, 20 April 2009
Windows system kombinasi tombol dari it guru india
Windows system kombinasi tombol keyboard dari it guru india
• F1: Help
• CTRL+ESC: Open Start menu
• ALT+TAB: Switch between open programs
• ALT+F4: Quit program
• SHIFT+DELETE: Delete item permanently
Windows Program Key Combinations
• CTRL+C: Copy
• CTRL+X: Cut
• CTRL+V: Paste
• CTRL+Z: Undo
• CTRL+B: Bold
• CTRL+U: Underline
• CTRL+I: Italic
Mouse Click/Keyboard Modifier Combinations for Shell Objects
• SHIFT+right click: Displays a shortcut menu containing alternative commands
• SHIFT+double click: Runs the alternate default command (the second item on the menu)
• ALT+double click: Displays properties
• SHIFT+DELETE: Deletes an item immediately without placing it in the Recycle Bin
General Keyboard-Only Commands
• F1: Starts Windows Help
• F10: Activates menu bar options
• SHIFT+F10 Opens a shortcut menu for the selected item (this is the same as right-clicking an object
• CTRL+ESC: Opens the Start menu (use the ARROW keys to select an item)
• CTRL+ESC or ESC: Selects the Start button (press TAB to select the taskbar, or press SHIFT+F10 for a context menu)
• ALT+DOWN ARROW: Opens a drop-down list box
• ALT+TAB: Switch to another running program (hold down the ALT key and then press the TAB key to view the task-switching window)
• SHIFT: Press and hold down the SHIFT key while you insert a CD-ROM to bypass the automatic-run feature
• ALT+SPACE: Displays the main window's System menu (from the System menu, you can restore, move, resize, minimize, maximize, or close the window)
• ALT+- (ALT+hyphen): Displays the Multiple Document Interface (MDI) child window's System menu (from the MDI child window's System menu, you can restore, move, resize, minimize, maximize, or close the child window)
• CTRL+TAB: Switch to the next child window of a Multiple Document Interface (MDI) program
• ALT+underlined letter in menu: Opens the menu
• ALT+F4: Closes the current window
• CTRL+F4: Closes the current Multiple Document Interface (MDI) window
• ALT+F6: Switch between multiple windows in the same program (for example, when the Notepad Find dialog box is displayed, ALT+F6 switches between the Find dialog box and the main Notepad window)
Shell Objects and General Folder/Windows Explorer Shortcuts
For a selected object
• F2: Rename object
• F3: Find all files
• CTRL+X: Cut
• CTRL+C: Copy
• CTRL+V: Paste
• SHIFT+DELETE: Delete selection immediately, without moving the item to the Recycle Bin
• ALT+ENTER: Open the properties for the selected object
To Copy a File
Press and hold down the CTRL key while you drag the file to another folder.
To Create a Shortcut
Press and hold down CTRL+SHIFT while you drag a file to the desktop or a folder.
General Folder/Shortcut Control
• F4: Selects the Go To A Different Folder box and moves down the entries in the box (if the toolbar is active in Windows Explorer)
• F5: Refreshes the current window.
• F6: Moves among panes in Windows Explorer
• CTRL+G: Opens the Go To Folder tool (in Windows 95 Windows Explorer only)
• CTRL+Z: Undo the last command
• CTRL+A: Select all the items in the current window
• BACKSPACE: Switch to the parent folder
• SHIFT+click+Close button: For folders, close the current folder plus all parent folders
Windows Explorer Tree Control
• Numeric Keypad *: Expands everything under the current selection
• Numeric Keypad +: Expands the current selection
• Numeric Keypad -: Collapses the current selection.
• RIGHT ARROW: Expands the current selection if it is not expanded, otherwise goes to the first child
• LEFT ARROW: Collapses the current selection if it is expanded, otherwise goes to the parent
Properties Control
• CTRL+TAB/CTRL+SHIFT+TAB: Move through the property tabs
Accessibility Shortcuts
• Press SHIFT five times: Toggles StickyKeys on and off
• Press down and hold the right SHIFT key for eight seconds: Toggles FilterKeys on and off
• Press down and hold the NUM LOCK key for five seconds: Toggles ToggleKeys on and off
• Left ALT+left SHIFT+NUM LOCK: Toggles MouseKeys on and off
• Left ALT+left SHIFT+PRINT SCREEN: Toggles high contrast on and off
M'zoft Natural Keyboard Keys
• Windows Logo: Start menu
• Windows Logo+R: Run dialog box
• Windows Logo+M: Minimize all
• SHIFT+Windows Logo+M: Undo minimize all
• Windows Logo+F1: Help
• Windows Logo+E: Windows Explorer
• Windows Logo+F: Find files or folders
• Windows Logo+D: Minimizes all open windows and displays the desktop
• CTRL+Windows Logo+F: Find computer
• CTRL+Windows Logo+TAB: Moves focus from Start, to the Quick Launch toolbar, to the system tray (use RIGHT ARROW or LEFT ARROW to move focus to items on the Quick Launch toolbar and the system tray)
• Windows Logo+TAB: Cycle through taskbar buttons
• Windows Logo+Break: System Properties dialog box
• Application key: Displays a shortcut menu for the selected item
M'zoft Natural Keyboard with IntelliType Software Installed
• Windows Logo+L: Log off Windows
• Windows Logo+P: Starts Print Manager
• Windows Logo+C: Opens Control Panel
• Windows Logo+V: Starts Clipboard
• Windows Logo+K: Opens Keyboard Properties dialog box
• Windows Logo+I: Opens Mouse Properties dialog box
• Windows Logo+A: Starts Accessibility Options (if installed)
• Windows Logo+SPACEBAR: Displays the list of M'zoft IntelliType shortcut keys
• Windows Logo+S: Toggles CAPS LOCK on and off
Dialog Box Keyboard Commands
• TAB: Move to the next control in the dialog box
• SHIFT+TAB: Move to the previous control in the dialog box
• SPACEBAR: If the current control is a button, this clicks the button. If the current control is a check box, this toggles the check box. If the current control is an option, this selects the option.
• ENTER: Equivalent to clicking the selected button (the button with the outline)
• ESC: Equivalent to clicking the Cancel button
• ALT+underlined letter in dialog box item: Move to the corresponding item
• F1: Help
• CTRL+ESC: Open Start menu
• ALT+TAB: Switch between open programs
• ALT+F4: Quit program
• SHIFT+DELETE: Delete item permanently
Windows Program Key Combinations
• CTRL+C: Copy
• CTRL+X: Cut
• CTRL+V: Paste
• CTRL+Z: Undo
• CTRL+B: Bold
• CTRL+U: Underline
• CTRL+I: Italic
Mouse Click/Keyboard Modifier Combinations for Shell Objects
• SHIFT+right click: Displays a shortcut menu containing alternative commands
• SHIFT+double click: Runs the alternate default command (the second item on the menu)
• ALT+double click: Displays properties
• SHIFT+DELETE: Deletes an item immediately without placing it in the Recycle Bin
General Keyboard-Only Commands
• F1: Starts Windows Help
• F10: Activates menu bar options
• SHIFT+F10 Opens a shortcut menu for the selected item (this is the same as right-clicking an object
• CTRL+ESC: Opens the Start menu (use the ARROW keys to select an item)
• CTRL+ESC or ESC: Selects the Start button (press TAB to select the taskbar, or press SHIFT+F10 for a context menu)
• ALT+DOWN ARROW: Opens a drop-down list box
• ALT+TAB: Switch to another running program (hold down the ALT key and then press the TAB key to view the task-switching window)
• SHIFT: Press and hold down the SHIFT key while you insert a CD-ROM to bypass the automatic-run feature
• ALT+SPACE: Displays the main window's System menu (from the System menu, you can restore, move, resize, minimize, maximize, or close the window)
• ALT+- (ALT+hyphen): Displays the Multiple Document Interface (MDI) child window's System menu (from the MDI child window's System menu, you can restore, move, resize, minimize, maximize, or close the child window)
• CTRL+TAB: Switch to the next child window of a Multiple Document Interface (MDI) program
• ALT+underlined letter in menu: Opens the menu
• ALT+F4: Closes the current window
• CTRL+F4: Closes the current Multiple Document Interface (MDI) window
• ALT+F6: Switch between multiple windows in the same program (for example, when the Notepad Find dialog box is displayed, ALT+F6 switches between the Find dialog box and the main Notepad window)
Shell Objects and General Folder/Windows Explorer Shortcuts
For a selected object
• F2: Rename object
• F3: Find all files
• CTRL+X: Cut
• CTRL+C: Copy
• CTRL+V: Paste
• SHIFT+DELETE: Delete selection immediately, without moving the item to the Recycle Bin
• ALT+ENTER: Open the properties for the selected object
To Copy a File
Press and hold down the CTRL key while you drag the file to another folder.
To Create a Shortcut
Press and hold down CTRL+SHIFT while you drag a file to the desktop or a folder.
General Folder/Shortcut Control
• F4: Selects the Go To A Different Folder box and moves down the entries in the box (if the toolbar is active in Windows Explorer)
• F5: Refreshes the current window.
• F6: Moves among panes in Windows Explorer
• CTRL+G: Opens the Go To Folder tool (in Windows 95 Windows Explorer only)
• CTRL+Z: Undo the last command
• CTRL+A: Select all the items in the current window
• BACKSPACE: Switch to the parent folder
• SHIFT+click+Close button: For folders, close the current folder plus all parent folders
Windows Explorer Tree Control
• Numeric Keypad *: Expands everything under the current selection
• Numeric Keypad +: Expands the current selection
• Numeric Keypad -: Collapses the current selection.
• RIGHT ARROW: Expands the current selection if it is not expanded, otherwise goes to the first child
• LEFT ARROW: Collapses the current selection if it is expanded, otherwise goes to the parent
Properties Control
• CTRL+TAB/CTRL+SHIFT+TAB: Move through the property tabs
Accessibility Shortcuts
• Press SHIFT five times: Toggles StickyKeys on and off
• Press down and hold the right SHIFT key for eight seconds: Toggles FilterKeys on and off
• Press down and hold the NUM LOCK key for five seconds: Toggles ToggleKeys on and off
• Left ALT+left SHIFT+NUM LOCK: Toggles MouseKeys on and off
• Left ALT+left SHIFT+PRINT SCREEN: Toggles high contrast on and off
M'zoft Natural Keyboard Keys
• Windows Logo: Start menu
• Windows Logo+R: Run dialog box
• Windows Logo+M: Minimize all
• SHIFT+Windows Logo+M: Undo minimize all
• Windows Logo+F1: Help
• Windows Logo+E: Windows Explorer
• Windows Logo+F: Find files or folders
• Windows Logo+D: Minimizes all open windows and displays the desktop
• CTRL+Windows Logo+F: Find computer
• CTRL+Windows Logo+TAB: Moves focus from Start, to the Quick Launch toolbar, to the system tray (use RIGHT ARROW or LEFT ARROW to move focus to items on the Quick Launch toolbar and the system tray)
• Windows Logo+TAB: Cycle through taskbar buttons
• Windows Logo+Break: System Properties dialog box
• Application key: Displays a shortcut menu for the selected item
M'zoft Natural Keyboard with IntelliType Software Installed
• Windows Logo+L: Log off Windows
• Windows Logo+P: Starts Print Manager
• Windows Logo+C: Opens Control Panel
• Windows Logo+V: Starts Clipboard
• Windows Logo+K: Opens Keyboard Properties dialog box
• Windows Logo+I: Opens Mouse Properties dialog box
• Windows Logo+A: Starts Accessibility Options (if installed)
• Windows Logo+SPACEBAR: Displays the list of M'zoft IntelliType shortcut keys
• Windows Logo+S: Toggles CAPS LOCK on and off
Dialog Box Keyboard Commands
• TAB: Move to the next control in the dialog box
• SHIFT+TAB: Move to the previous control in the dialog box
• SPACEBAR: If the current control is a button, this clicks the button. If the current control is a check box, this toggles the check box. If the current control is an option, this selects the option.
• ENTER: Equivalent to clicking the selected button (the button with the outline)
• ESC: Equivalent to clicking the Cancel button
• ALT+underlined letter in dialog box item: Move to the corresponding item
Minggu, 19 April 2009
Penanganan isi kesahalan bila record kosong di vb 6.0
Jika ada sering di pusingkan dengan invalid use null inilah cara penanggulangan bilamana terdapat record kosong maka yang ditampilakn akan null ikuti petunjuk kode dibaawah ini
textbox=IIf(IsNull(rscaribahan!kb) = False, rscaribahan!kb, 0)
ya cukup sekian trik untuk menghandler kesalahan di vb 6.0 terima kasih perhatiannya wasalam
textbox=IIf(IsNull(rscaribahan!kb) = False, rscaribahan!kb, 0)
ya cukup sekian trik untuk menghandler kesalahan di vb 6.0 terima kasih perhatiannya wasalam
Sabtu, 18 April 2009
Trik Install Antivirus di Komputer Yang Terserang Virus SCR / Menginfeksi Folder dan File EXE
Trik Install Antivirus di Komputer Yang Terserang Virus SCR / Menginfeksi Folder dan File EXE
Biasanya Virus SCR ini termasuk varian virus sality yang merusak file exe, atau memanipulasi folder,kebanyakan di computer bersistem operasi windows,biasanya dinamakan virus local juga .
Dampak yang diakibatkan yaitu.
Folder dan file anda dimanipulasi menjadi scr atau exe
kalau di klik berakibat terkena infeksi virus ini, virus ini juga cepat mengandakan dirinya.
Folder dan file asli anda disembunyikan , alias hidden system.
Untuk hiden file and folder system pada windows juga di kunci oleh virus sehingga tidak dapat di konfigurasi di buka hidden and file system.
Lebih Canggihnya lagi virus ini mempunyai daftar antivirus yang terkenal seperti avg,anvira,norton,nod32 dan lain2 sehingga kita kesulitan pada waktu installasi antivirus,
Karena pada waktu membukanya saja langsung virus ini membunuh file exe antivirus,
Untuk mengatasinya dengan cara melakukan trik di bawah ini:
Sebelum masuk ke computer yg terinfeksi virus harus dipersiapkan file antivirusnya di computer yang tidak terinfeksi, anda bisa running di mode normal windows atau safe mode, lebih disarankan sebaiknya running di safe mode itu kalau safe mode tidak dikunci oleh virus.
Di umpamakan sy menggunakan antivirus anvira
Contoh filenya: avira_antivir_personal_en.exe
Langkah – Langkahnya:
Cara pertama bilamana virusnya biasa2 saja
-rename avira_antivir_personal_en.exe menjadi ibas.exe (bisa di ganti dengan nama apa saja)
-lokasi penempatan jangan di taruh di dalam folder langsung taruh file karena bisa jadi folder langsung terinfeksi virus.
-cara membukanya juga di sarankan melalui menu run browse (start-run).
-jika cara ini tidak berhasil lakukan langkah kedua
Cara kedua bilamana virusnya diatas biasa
-rename avira_antivir_personal_en.exe menjadi ibas.cmd (rubah menjadi extensi cmd)
-lokasi penempatan jangan di taruh di dalam folder langsung taruh file karena bisa jadi folder langsung terinfeksi virus.
-seperti biasa untuk membukanya biasakan melalui menu run
Bila kedua cara diatas tidak juga berhasil langkah ketiga bertanya kepada teman yang kita anggap lebih pintar atau professional dalam bidang virus,serta jangan lupakan nama virusnya untuk trus dapat di cari di library website resmi antivirus seperti grisoft.symantec,vaksin,eset32 dan lain - lain siapa tau ada cara penanggulangannya.
Biasanya Virus SCR ini termasuk varian virus sality yang merusak file exe, atau memanipulasi folder,kebanyakan di computer bersistem operasi windows,biasanya dinamakan virus local juga .
Dampak yang diakibatkan yaitu.
Folder dan file anda dimanipulasi menjadi scr atau exe
kalau di klik berakibat terkena infeksi virus ini, virus ini juga cepat mengandakan dirinya.
Folder dan file asli anda disembunyikan , alias hidden system.
Untuk hiden file and folder system pada windows juga di kunci oleh virus sehingga tidak dapat di konfigurasi di buka hidden and file system.
Lebih Canggihnya lagi virus ini mempunyai daftar antivirus yang terkenal seperti avg,anvira,norton,nod32 dan lain2 sehingga kita kesulitan pada waktu installasi antivirus,
Karena pada waktu membukanya saja langsung virus ini membunuh file exe antivirus,
Untuk mengatasinya dengan cara melakukan trik di bawah ini:
Sebelum masuk ke computer yg terinfeksi virus harus dipersiapkan file antivirusnya di computer yang tidak terinfeksi, anda bisa running di mode normal windows atau safe mode, lebih disarankan sebaiknya running di safe mode itu kalau safe mode tidak dikunci oleh virus.
Di umpamakan sy menggunakan antivirus anvira
Contoh filenya: avira_antivir_personal_en.exe
Langkah – Langkahnya:
Cara pertama bilamana virusnya biasa2 saja
-rename avira_antivir_personal_en.exe menjadi ibas.exe (bisa di ganti dengan nama apa saja)
-lokasi penempatan jangan di taruh di dalam folder langsung taruh file karena bisa jadi folder langsung terinfeksi virus.
-cara membukanya juga di sarankan melalui menu run browse (start-run).
-jika cara ini tidak berhasil lakukan langkah kedua
Cara kedua bilamana virusnya diatas biasa
-rename avira_antivir_personal_en.exe menjadi ibas.cmd (rubah menjadi extensi cmd)
-lokasi penempatan jangan di taruh di dalam folder langsung taruh file karena bisa jadi folder langsung terinfeksi virus.
-seperti biasa untuk membukanya biasakan melalui menu run
Bila kedua cara diatas tidak juga berhasil langkah ketiga bertanya kepada teman yang kita anggap lebih pintar atau professional dalam bidang virus,serta jangan lupakan nama virusnya untuk trus dapat di cari di library website resmi antivirus seperti grisoft.symantec,vaksin,eset32 dan lain - lain siapa tau ada cara penanggulangannya.
Langganan:
Postingan (Atom)
-
Bahaya 3,5 G Pada Saat Anda Terhubung Ke Internet Pada PC anda. Kali Ini saya akan mengukapkan bahaya 3,5 G di PC anda bilamana anda lengah...
-
Komponen – komponenn Java di NetBeans (JLabel , JTextField , JButton JCheckBox , JRadioButton , JTextArea , JComboBox) Sekarang ini saya aka...
-
A.Putty Putty adalah software remote console/ terminal yang digunakan untuk meremote komp dengan terhubungnya menggunakan port ssh atau se...