Posts

Showing posts with the label Tutorials

How to add gadget to the Blogger with Screenshots -- Images/HTML/Java Script/Contact Form

Image
Hello, guys! In this short tutorial, I'll teach you how to add any gadget to the blogger. There are thousands of interesting and attractive gadgets that Blogger provide their users. You can add Images, HTML or Java Scrips codes, Popular posts, Labels, Blog Archive etc. using gadgets into your blog. There are the following steps to add gadget into your blog. Write  www.blogger.com  into your search bar and hit enter. After this, you will have to login into your  Gmail  account. If you already login you will not see the blow window. You will directly redirect to the dashboard. After giving email/username and password, you will be able to see the dashboard. List of your blogs is displaying here. Select the Layout from the drop-down menu as shown in the blow pic After selecting the layout, you will see the option of add-gadget at different locations as shown in fig. Select the location where you want to add the gadget. If you want to add the image into your layout click...

How to connect Java with MySQL/MicrosoftSQL server with pictures

Image
Server Connection with Java using JDBC In this tutorial I'll tech you how you can connect any database (especially MS SQL Server) with your Java code. I'm using NetBeans (click here to download latest version of NetBeans) IDE to connect MSSQL Database. This is very simple and easy way, just follow the blow steps for connection. Open MS SQL Server and enter your user name, password and click next as shown in blow fig. After login into your server. Right click on Databases and select new database as shown blow A new window will open. Give any name to your database (i.e cs2it.blogspot.com) and click on OK button to execute. Now your database is showing under Databases tag as shown blow. After creating this database your mission will be to create its connection with you Java Code. So open your IDE (i.e NetBeans) and create new project as shown blow. A new window will open select Java Application . Give name to your project and click on f inish button .  After this add JDBC (Jav...

Addition/Multiplication of two integer numbers in Java using Graphical User Interface (GUI) using Netbeans with source code free download

Image
In this post I will teach you how you can add two integer numbers in Java using Graphical User Interface. I made it very simple and easy for you. At the end of this tutorial you will be able create the following Graphical User Interface with many different properties. I'm using NetBeans IDE (Recommended for you) for this purpose. Just follow the following steps. Open NetBeans editor and click on new project as shown blow Select this project as a Java Application and click on next as show blow After this name your project, what you want. I named is " Addition GUI " as shown in blow fig. After the creating project make a new JFrame Form Class as show blow in fig. Name this class (i.e Addition) and a JFrame Form panel create to move forward as shown blow. Now drag a text field in you frame from Swing Controls as show shown blow After adding text field perform the following function on it. Right Click on text field Press Backspace button to remove all the text from textFiel...