Matrix On VB.NET Console


hello , this is a matrix effect on CLI (command line interface) aka Console as i wrote before here its also the same matrix effect but its coded using c# console ok now lets make it just create a new project and select console application and name it and when the coding thing is on just add these code inside it

How To Make A Simple Text Encrypter(Encryptor),Decrypter(Decryptor) In VB.NET


hello dear readers , now i am up with a simple encryption decryption tutorials in vb.net by the way i am not going to use any classes like RC4,RSA,etc i just wrote the simple method to understand how encryption and encryption works . read how encryption works here and you know what is decryption if there's anyone who don't know what is decryption , decryption make a protected code or whatever visible you can read about that in some other websites ok now lets move to the main part now create a new project and when your form finishes loading add two textboxes and two buttons now place the text box 1 in the top of the form and place the text box2 in the bottom of the form now the textbox1 is for text to input and the textbox2 is for text to output so now change the text of the button 1 to encrypt and the other button to decrypt as you can see how all the controls are arranged in the picture . now double click the form and add this codes ...

How To Make A Cool Text Animation In VB.NET

anim

hello , animation in vb.net is really a cool thing and for this you are not going to use any type of labels or textboxes just we are coding but we need timer and a button the timer for you know for timing and the button to show the animation up so now lets begin making this don't worry this wont take much time or don't need to work hard because its already coded in the easiest way to understand and also to create. now create a new project in your visual basic 2008/2010 i tested this in visual basic 2010 and i don't have visual basic 2008 to test to i hope it work in visual basic 2008 . when the form finished loading now change the usual things in properties now from the toolbox add a timer(timer1) and a button(button1) now double click your form and add this codes

How To Make A Advance Calculator In VB.NET

Today we are going to make an advanced calculator(no), this is how our calculator looks like after designing it.

To begin open your visual basic 2008/2010 and make a new project and name it whatever you want and go to your form properties and change size to 258, 269 also change the form text .

Now add 2 group boxes and re-size them as below

How To Convert Numbers To Text Using VB.NET




hello this a tutorial which helps you now what this actually do is , when you enter some numbers ie:1000 and click the button you will one thousand in the converted richtextbox so i am using a class here and i have 2 richtextbox and a button ok now lets make it add two rich textbox and a button now change button text to convert and add labels to make the program look good and now add a class and name it convert.vb add this codes inside the convert.vb

How To Make A Password Generator In Java

generate


hello today i am going to teach you to create a password generator in java first of all make sure you read this - http://ultimateprogrammingtutorials.blogspot.com/2013/02/starting-with-java-programming.html ok now what this program will do is we have string alphabets now when we run the program it will generate a password by the way this is not a GUI program so now here is the code

Starting With Java Programming

java programming

In this post I will tell you what I know about java and how to make a hello world program in java ok, now java is a great programming language, it was introduced in 1995. From my experience java is nothing without classes because everything works with classes in java programming, java is a language that can be used in web and desktop, the syntax of java is exactly the same as c# and also the codes are similar to c# too if you go through the java programming history you will see java programming language is a tradition of C & C++, the newest version is JDK 7.
Java originally doesn't have an IDE(Integrated Development Environment) it just have compiler, below is a hello world program in java
public class HelloWorldApp {

    public static void main(String[] args) {
            System.out.println("Hello World - ultimate programming tutorials");
    }

}
The code is for the hello world program now you can see public class HelloWorldApp its the class name, the program should start off with public static void main(string[] args).

I hope you learned something, share with your friends and please let me know if theres any questions.

Java Tutorials

How To Make A IP Analyzer In VB.NET

ultimate programming

This is a good one but its a in console but i hope you will like it and it has not alot code . the program works like when you enter a IP address and press enter key in your keyboard then you will see the class of the ip address and subnet mask and IP binary and network address and at last broadcast address so i hope you will like the features and dont forget you can also make alot features for this if you made anything dont forget to comment it ok lets begin making it now make a console project and name it and when it loading successful then add this code down

How To Draw Border At PictureBox Border In C#

s

hello i am up with this but this is something very small but very useful ok now what this is about , theres are 2button and a openfiledialog and when you click open the openfiledialog will be up so you just can go ahead and select a image and you click the draw button the picturebox out border will be green color .