Posts

How to Read Data from MS Access using JavaScript

How to read data from MS Access File using JavaScript           The bellow mentioned script is used to read data from MS Access file and to display the same data on webpage.             This is just a sample, the same may be modified as per requirements ======================================================================= <html>     <head>         <title>Entitled Document</title>         <script language="JavaScript">         function getdata(){             var cn = new ActiveXObject("ADODB.Connection");             var strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =1.mdb;Persist Security Info=False";        ...

Railway Reservation System DFD

Image
Railway Reservation System DFD  

Diagram learning - Ignou MCA students

                                                               MCS 032  ALL DIAGRAM                                           1.  Student Management system 2.  Pay Roll system 3.  ATM System 4.  Library Management System                                         ...

Basic Java learning - Ignou MCA students

Session 4  ex 2 class players { String name,age; } class cricket_players extends players {     void get_data(String n,int age)     {         System.out.println("Name : "+n + "Age "+age);     } } class football_players extends players {     void get_data(String n,int age)     {         System.out.println("Name : "+n + "Age "+age);     } } class hockey_players extends players {     void get_data(String n,int age)     {         System.out.println("Name : "+n + "Age "+age);     } } class ketan {     public static void main(String args[])     {         cricket_players c=new cricket_players();         football_players f=new football_players();       ...

Java tutorial - Ignou MCA students

SEM - 2     JAVA SESSION1_EX1 /*  * To change this template, choose Tools | Templates  * and open the template in the editor.  */ package mcs025; /**  *  * @author KETAN  */ public class SESSION1_EX1 {         public static void main(String args[])     {         int height=10,width=20,area;         area=height * width;         System.out.println("The area of ranctangle is " +area);             }     }      =====================================================================                     session1_ex4 /*  * To change this template, choose Tools | Templates  * and open the template in the e...

Basic Comand prompt Commands

NETWORK CONFIGURATION SESSION 1          Run the following command and write use of each command 1.   ipconfig :                     This command is used to display current configuration of IP systax : ipconfig [/all] [/renew] [/release]       this command is equivalent to winipcfg command.                 this command is used to display basic icp / ip configuration. and is most useful for those computers which are configured to obtain IP automatically. 2. ping           This command is used to check connetivity between two computers by sending internet controll message protocol.              the receipt of corresponding echo reply messages are displayed. Syntax : Ping...

Send messenge from One pc to another over Lan Network

This is very simple but useful trick using command prompt. Here we will learn how to send message from one computer to another computer under same network using command prompt Syntex.             Net send pcname "msg" Process :  Open command prompt Type the command shown above. Press enter      Necessity :             In big office we need to pass our message to other operators.     This simple command can work for us