Home |
Guest Column |
Hacking |
Cracking |
DoS |
Mail Bombing |
Exploits |
Serial Numbers |
Cracks |
Firewalls |
Antivirus |
Apps |
IRC |
Linux |
BsD |
Visual Basic |
HTML |
Chat |
Forums |
Games |
Contact |
Links |
Visual Basic
VISUAL BASIC is an Object Oriented Programming (OOP). This is the main divergence from the old BASIC. In BASIC, the program is executed sequentially. In VISUAL BASIC, due to its Windows Interface, the users may click on a certain object randomly, so each object has to be programmed independently to be able to respond to certain actions. Therefore, a VISUAL BASIC Program is made up of may subprograms, each has its own program codes, and each can be executed independently and at the same time each can be linked together in one way or another.
When we start Visual Basic, we are provided with a VB project. A VB project is a collection of the following modules and files.
The global module ( that contains declaration and procedures)
The form module (that contains the graphic elements of the VB application along with the instruction )
The general module (that generally contains general-purpose instructions not pertaining to anything graphic on-screen)
The class module (that contains the defining characteristics of a class, including its properties and methods)
The resource files (that allows you to collect all of the texts and bitmaps for an application in one place)
For anyone who isn't too clued up on Visual Basic, I decided to provide you with a few introductory tutorials. I will update as much as I can, hopefully get a new tutorial up every week or so.....I have to point out, the emphasis is on "hopefully" ! :o)
Tutorial 1
In this tutorial what I want to prove just how easy it is to create a windows based application using VB.
Steps
1) Create a new form and add two command buttons to the form. Off to the right you should see a box with many options for the box you just dragged on to the form. Change the caption of the first box to say "Click Me!" , and the second box to "Delete."
2) Next, drag a text box out to the form under the two boxes. Again go to the "option box" to the right and clear the text so it is blank.
3) Now we will code! Please pay attention to how coding is just a logical train of thought in VB and not computer jibberish or geek jargon. Click the first commandbutton, it should say "Click Me!." Okayz. Between the Command1 at top and the End Sub at bottom type this in: Text1.text="SyXx Rulez!" : Note the quotes, these always go in when you want to execute "real" words, and not computer code, for example: captions, labels, text boxes etc. Next, get out of the code window and back to the form, and click on command2 or "Delete." This is an easy one, think about it yourself, if we know to "say" something we need quotes, and "SyXx Rulez!" will put that in the textbox, what should this be? Right, the code is: text1.text= "" because the "" with nothing in between the " and the " simply means that the app will display.....that's right, fuck all, nothing :o)
4) So what we have is a nice neat little program that displays SyXx Rulez!, and then deletes it! Good job, you just made your first VB app.
I'll try and get another little fuck about tutorial up as soon as possible
www.ChromeBox.com 2001 All Rights Reserved