Tuesday 12 May 2015

VB6.0 :: Kumpulan Source Code Gratis Sistem Informasi Menggunakan Visual Basic 6.0






1. Program Hotel
http://www.ziddu.com/download/8895846/Aplikasi_Pengelolaan_Hotel.rar.html

2. Program Jasa Bengkel
http://www.ziddu.com/download/8895847/AplikasiServiceKendaraan.rar.html

3.Program Penyewaan DVD
http://www.ziddu.com/download/8895848/Rental_DVD.rar.html

4.Program Koperasi
http://www.ziddu.com/download/8895959/Koperasi.rar.html

5. Program Stok Obat
http://www.ziddu.com/download/8895960/SistemPersediaanObat.rar.html

6.Program SMS Manager
http://www.ziddu.com/download/8895958/SMSManager.rar.html

7.Program Toko Komputer
http://www.ziddu.com/download/8896289/Retail_computer.rar.html

8. Koleksi SMS Gateway
http://www.ziddu.com/download/8930202/IndoprogSMS.zip.html
http://www.ziddu.com/download/8930203/xsmsgateway.zip.html
http://www.ziddu.com/download/8930204/Smart-SMS.zip.html
http://www.ziddu.com/download/8930205/smsgateway.zip.html

9. Program Penerimaan Mahasiswa Baru
http://www.ziddu.com/download/8896291/Penerimaan_Mahasiswa_Baru.zip.html

10. Program Penjualan Tiket Pesawat
http://www.ziddu.com/download/8896290/Penjualan_Tiket_Pesawat.rar.html

11. Rental video
http://www.ziddu.com/download/8896287/Rental_Video.rar.html

12. Program Rental DVD
http://www.ziddu.com/download/8896586/SISTEM_APLIKASI_RENTAL_DVD.zip.html

13. Program Pasien
http://www.ziddu.com/download/8896585/SISTEM_INFORMASI_PASIEN.zip.html

14. Program Rumah Sakit/ Puskesmas
http://www.ziddu.com/download/8896583/Rumah_Sakit.rar.html

15.Program Billing
http://www.ziddu.com/download/8896584/Visual_Basic_Billing.zip.html

16.Program Sistem Informasi Persediaan Barang
http://www.ziddu.com/download/8896582/SistemInformasiPersediaanBaran.rar.html

17. Sistem Informasi Persediaan Sepatu
http://www.ziddu.com/download/8896587/SistemInformasiPersediaanSepat.rar.html

18. Software Akuntansi menggunakan Excel
http://www.ziddu.com/download/8896654/software_aplikasi_akuntansi_ex.rar.html

19.Program Sistem Supermarket
http://www.ziddu.com/download/8896653/Supermarke1732534122004.zip.html

20.Program Bar Rest
http://www.ziddu.com/download/8896652/BarRest.rar.html

21.Program Bel Sekolah
http://www.ziddu.com/download/8584512/BelSekolah.zip.html

22. Aplikasi Karyawan PLN
http://www.ziddu.com/download/8584514/AplikasiKaryawanPLN.zip.html

23. Pendaftaran Sekolah
http://www.ziddu.com/download/8584513/PendaftaranSekolah.zip.html

24. Aplikasi Penjualan Koran
http://www.ziddu.com/download/8584546/SistemAplikasiPenjualanKoran.zip.html

25. Aplikasi Rumah Sakit
http://www.ziddu.com/download/8584515/SistemInformasiRumahSakit.zip.html

26. Aplikasi Gaji Karyawan
http://www.ziddu.com/download/8584511/Penggajian.rar.html

27. Aplikasi sidik Jari
http://www.ziddu.com/download/8930118/FingerPrintdtbase.ZIP.html

28. Sistem Pakar
http://www.ziddu.com/download/8930117/expertsystem.rar.html

29. Penjualan Tunai Kredit
http://www.ziddu.com/download/8930120/735464501b4bce254493cf17c1d14f14.rar.html

30. Penjualan Toko Komputer
http://www.ziddu.com/download/8930116/penjualan.rar.html

31. Penjualan Toko Retail
http://www.ziddu.com/download/8930119/retail.zip.html


Monday 11 May 2015

VB.NET :: How To Disable And Enable Task Manager In VB.NET

 Dim Regkey As Object
    Private Sub Form1_Load(ByVal sender As System.ObjectByVal As System.EventArgs) Handles MyBase.Load
        Regkey = CreateObject("WScript.Shell")
    End Sub
    Private Sub Button1_Click(ByVal sender As System.ObjectByVal As System.EventArgs) Handles Button1.Click
        Regkey.RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr", 0, "REG_DWORD")
    End Sub
    Private Sub Button2_Click(ByVal sender As System.ObjectByVal As System.EventArgs) Handles Button2.Click
        Regkey.RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr", 1, "REG_DWORD")
    End Sub
End Class


Sunday 10 May 2015

REGISTRY :: Tip and Trik Registry


1. Hide drive in My Computer 
Follow the steps below. Click Start – Run, type regedit and press Enter.You can hide the drive in My Computer by going to:Key: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ ExplorerValue Name: NoDrives Data Type: REG_DWORD Data:On the data you can fill with the drive you want to hide.The value is:A: 1, B: 2, C: 4, D: 8, E: 16, F: 32, G: 64, H: 128, I: 256, A: 512, K: 1024, L:2048, M: 4096, N: 8192, O: 16384, P: 32768, Q: 65 536, R: 131 072, S:262 144, T: 524 288, U: 1048576, V: 2097152, W: 4194304, X: 8388608, Y:16777216, Z: 33554432, ALL: 67108863
 2. Hiding the Network Neighborhood icon 
Network neighborhood icon will appear on the desktop if you install Windows Networking. If you do not like, you can hide the icon.Follow the steps below. Click Start – Run, type regedit and press Enter. Key: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows\ CurrentVersion \ Policies \ ExplorerValue Name: NoNetHoodData Type: REG_DWORDData: (0 = disabled, 1 = enabled / hide icon)

3. Disable MS-DOS Command Prompt
 These settings will prevent “the use of” MS-DOS command prompt in Windows.Follow the steps below. Click Start, Run, type regedit and press Enter.Key:HKEY_CURRENT_USER \ Software \ Microsoft \ Windows\ CurrentVersion \ Policies \ WinOldAppValue Name: DisabledData Type: REG_DWORD Data: (0 = disable, 1 = enable / prevent MS-DOS command prompt)
 4. Prevent the replacement of the Display Properties settings
 You can do the display settings from Control Panel – Display or by right clicking on the desktop and select Properties.With this setting under the others can not change the setting on the Display.Follow the steps below. Click Start, Run, type regedit and press Enter. Key:HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ SystemValue Name: NoDispCPL Data Type: REG_DWORDData: (0 = disabled, 1 = enabled / prevent replacement)(Make Key System: In the left panel, select Policies, right-click, New – Key. Name System. Then select System, right click, New – DWORD Value. NoDispCPL Name. Double-click on NoDispCPL, change the 0 to 1 to prevent the replacement of the Display Properties settings.


5. Save the contents of a folder 
You often observe the contents of a folder, of course, need a precise and rapid way. For that follow these steps:First create a file with Notepad isifolder.bat and placed in c: \ windows, then type:@ Echo offOpen the registry and the key [HKEY_CLASSES_ROOT \ Directory \ ShellCreate a new key dg right click select New – Key. Move to the right pane, click 2x on Default. Fill in & View Folder ContentsCreate another key with the command name.Right panel pd pd 2x click Default. Fill in the c: \ windows \ isifolder.bat% 1From now to view and save the contents of a folder, you just right-click on the folder.


6. Prevent changes to Network settings 
If you re-enable this setting, then other people can not change the settings in the Control Panel – Network.Follow the steps below. Click Start, Run, type regedit and press Enter. Key:HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ NetworkValue Name: NoNetSetupData Type: REG_DWORDData: (0 = disabled, 1 = enabled)(If not there is a Network key, making it the same way as tips on setting Display)



7. Printer prevents change in settings
 If you re-enable this setting, then other people can not change the settings in the Control Panel – Printers.Follow the steps below. Click Start, Run, type regedit and press Enter. Key:HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ ExplorerValue Name: NoPrintersData Type: REG_DWORDData: (0 = disabled, 1 = enabled)
Microsoft Canada
 8. Password setting changes to prevent
 If you re-enable this setting, then other people can not change the settings in the Control Panel – Password. In other words no one else can change the password (if your computer using the Windows password).Follow the steps below. Click Start, Run, type regedit and press Enter. Key: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ SystemValue Name: NoSecCPL Data Type: REG_DWORDData: (0 = disabled, 1 = enabled)


9. Prevent the Shut Down command
 The following settings will prevent someone to turn off your computer. This is useful if for example you leave the computer for a while and you’re worried someone else is going to Shut Down your computer.Follow the steps below. Click Start, Run, type regedit and press Enter. Key: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ ExplorerValue Name: NoCloseData Type: REG_DWORDData: (0 = shutdown enabled, 1 = shutdown disabled)
 10. Hide all the items on the desktop 
The following settings will hide all the items contained on your desktop.Follow the steps below. Click Start, Run, type regedit and press Enter. Key: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ \ CurrentVersionPolicies \ ExplorerValue Name: NoDesktopData Type: REG_DWORDData: (0 = disabled, 1 = enabled)

REGISTRY :: Mengganti nama pada Recycle Bin

Mengganti nama pada Recycle Bin 
Bosan dengan nama recycle bin ? Segera ganti dengan nama yang Anda inginkan. Untuk itu Anda perlu masuk ke :
Key : HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E}.
Lalu Anda bisa mengganti default value (yang terletak pada panel sebelah kanan) menjadi nama yang Anda inginkan. 

REGISTRY :: Menampilkan thumbnail untuk file bitmap (*.bmp)

Menampilkan thumbnail untuk file bitmap (*.bmp) 
Setelah Anda mengganti dengan nilai di bawah ini dan menjalankan Windows Explorer maka file-file BMP akan tampil dengan icon berupa thumbnail untuk masing-masing gambar.
Key: HKEY_CLASSES_ROOT\Paint.Picture\DefaultIcon
Value Name: (Default)
Data Type: String Value
Data: %1