Last Moments of Benazir Bhutto Before Died


PIA Air hostess Fight With Passenger During Flight


Fatima Bhutto Telling in Detail How Her Father Was Murdered by Banazir Bhutto


3D Video Of Inside Roza e Rasool Must Watch video


Pakistani Girl Slaps Boy In London Train video


urdu Naats | hur Waqt taswur main great naat sharif

hur Waqt taswur main great naat sharif

Beautiful Naat in Voice of Sami Yusuf Hasbi Rabbi - soomro4u

Beautiful Naat in Voice of Sami Yusuf Hasbi Rabbi

Moula ya salli wa sallim - female

Moula ya salli wa sallim - female  - soomro4u
 

Feriha OST title songs must watch


Feriha OST title songs must watch 

                 

The Kawish

daily Kawish new
Use scroll bar to up/down
click any new to zoom view.

Stack Program in C++

keep in mind that this Program is build in DEV Editor of c++.
Stack Program in C++ 


Output of this program :)
keep visit for more .





NotePad create in java

tags:
java projects
notepad created in java
source code notepad in java

here download and install this software and checkout My NotePad 1.5 (created in java by: Ahsan Ali Soomro)
for source code contact # aahsansoomro@gmail.com








Free Download Internet Download manager with keygen

www.soomro4u.com

Free Download Internet Download manager 6.05 
with keygen
password to unrar file : soomro4u
crack license key of IDM.

just download this file and run exe pitch file.
Easy and fast. only just 4.62 Mb File Size.



Free Download Crack File for Windows 8.1, windows 8

www.soomro4u.com

Free Download Crack For windows 8.1 and Windows  8
just download this file and run exe pitch file.
Easy and fast. only just 64 Mb File Size.

How to create jar file, how to create exe file from that jar file and how to create setup of that program

How to create jar file?
How to create exe file from that jar file ?
How to create setup of that program?
java Program
.Jar .exe
www.soomro4u.com

java video tutorials in urdu






How to create jar file, how to create exe file... by aahsan-soomro

English to Sindhi Dictionary

Tags:
english to sindhi dictionary free download free download English to Sindhi dictionary
download Sindhi to English dictionary 
2015 java software created in java 
version 1.5 available new version also.
http://soomroforu.blogspot.com
soomro4u

                               
 English to Sindhi Dictionary 


Download

Program for Find Char and ASCII codes

//this is create is Dev editor
Program for Find Char and ASCII codes in C++

Output




Using 2D array in Java get 3 subject mark and give result total student are 10

// Using 2D array in Java get 3 subject mark and give result total student are 10
// keep visit for more updates
package ahsan;
import java.util.Scanner;
public class Ahsan {

    public static void main(String[] args) {
    Scanner obj=new Scanner(System.in);
    int sum=0, per=0;
    int arry [][]= new int [10][3];
    for(int r=0; r<10; r++)
    {
        System.out.print("\t"+(r+1)+" Student :\n");
        for(int c=0; c<3; c++)
        {
             System.out.print("\t"+(c+1)+" Subject Marks :");
             arry[r][c]=obj.nextInt();
             sum+=arry[r][c];
        }
         System.out.println("Total is :"+sum);
        per=sum*100/300;
        System.out.println("Percenstage is :"+per );
        if (per >=80)
        {System.out.println(" A Grade");}
        else if (per >=65)
        {System.out.println("B Grade");}
        else if (per >= 50)
        {System.out.println("C Grade");}
        else if (per >=40)
        {System.out.println("D Grade");}
        else
        {System.out.println("Fail");}
    sum=0;
    per=0;
    }
    }
}

Output of this Program this is continue Run 10 times.










Simple java Input, get number form user and provide table of that number

// Simple java Input
// get number form user and provide table of that number.


package ahsan;
import java.util.Scanner;
public class Ahsan {
public static void main(String []arg){
Scanner obj= new Scanner(System.in);
    int a,b;
    int ch;
do{System.out.print("Enter Your Number want to
see Table of that number\n");
ch=obj.nextInt();
System.out.println("Table of "+ch+" is :");
for(int i=1; i<11; i++)
{  
System.out.println(i+"\t"+ch+"\t"+(i*ch));
}}while(ch!=0);
}  
}


Output of this program.


Calculator with GUI in Java














Calculator with GUI in Java
You must save file as CalculatorPanel.Java
thank you keep visiting for more updates



/*
* To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package javaapplication29;



import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

// A panel with calculator buttons and a result display

public class CalculatorPanel extends JPanel {

private JButton display;
private JPanel panel;
private double result;
private String lastCommand;
private boolean start;

    public static void main(String[] args) {
        CalculatorPanel cp = new CalculatorPanel();
   
    }
    public JFrame frame ;
public CalculatorPanel(){
setLayout(new BorderLayout());
result = 0;
lastCommand = "=";
start = true;

// add the display
display = new JButton("0");
display.setEnabled(false);
add(display, BorderLayout.NORTH);

ActionListener insert = new InsertAction();
ActionListener command = new CommandAction();
frame = new JFrame("calculator");
frame.add(this);
frame.setVisible(true);
//add the buttons in a 4 x 4 grid
panel = new JPanel();
panel.setLayout(new GridLayout(4, 4));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

addButton("7", insert);
addButton("8", insert);
addButton("9", insert);
addButton("/", command);

addButton("4", insert);
addButton("5", insert);
addButton("6", insert);
addButton("*", command);

addButton("1", insert);
addButton("2", insert);
addButton("3", insert);
addButton("-", command);

addButton("0", insert);
addButton(".", insert);
addButton("=", command);
addButton("+", command);

add(panel, BorderLayout.CENTER);

}

/**
* Adds a button to the center panel.
* @param label the button label.
* @param listener the button listener
*/

private void addButton(String label, ActionListener listener)
{
JButton button = new JButton(label);
button.addActionListener(listener);
panel.add(button);
}

/**
* This action insert the button action string to the end of the display text
*/

private class InsertAction implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
String input = event.getActionCommand();
if (start);
{
display.setText(" ");
start = false;
}
display.setText(display.getText() + input);
}
}

/**
* This action executes the command that the button action string denotes
*/

private class CommandAction implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
String command = event.getActionCommand();

if(start)
{
if (command.equals("_"))
{
display.setText(command);
start = false;
}
else lastCommand = command;
}
else
{
calculate(Double.parseDouble(display.getText()));
lastCommand = command;
start = true;
}
}
}

/**
* Carries out the pending calculation.
* @param X the value to be accumalated with the prior result
*/

public void calculate(double x)
{
if(lastCommand.equals("+")) result += x;
else if(lastCommand.equals("-")) result -= x;
else if(lastCommand.equals("*")) result *= x;
else if(lastCommand.equals("/")) result /= x;
else if(lastCommand.equals("=")) result = x;
display.setText("" + result);
}
}