/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * AboutJDialog.java * * Created on Jan 23, 2012, 12:20:44 PM */ package com.server.gui; /** * * @author Administrator */ public class AboutJDialog extends javax.swing.JDialog { /** Creates new form AboutJDialog */ public AboutJDialog(java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); jScrollPane1 = new javax.swing.JScrollPane(); jTextPane1 = new javax.swing.JTextPane(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); jTextPane1.setEditable(false); jTextPane1.setText("RDViewer as the name suggests is a cross platform extraneous Surveillance system. \nRDViewer is an application that monitors remote desktops over the network. \nIt monitors and scrutinizes the desktops of all remote systems whose IP address\n have been stated for perusal. It also keeps vigil on processes currently running on\n remote system. The project consists of two modules a remote host (server) and \nthe user (client). Employer can use this program to read e-mail and see any program\n that is open on an employee’s screen. Desktop replicating software captures the\n image on the computer screen by intercepting signals that are being transmitted to\n the computer's video card. These images are then streamed across the network to\n the system administrator. Some prepackaged programs include an alert system .\n when a user visits an objectionable Web site or transmits inappropriate text, \nthe system administrator is alerted to these actions.\n • Monitoring and recording activities of remote computers. \n • Can be used for remote troubleshooting endeavors.\n • Enforcing security by strictly scrutinizing all desktop activities.\n\t\nThere are two Application \n 1. RDViewerCLIENT \n 2. RDViewerSERVER "); jScrollPane1.setViewportView(jTextPane1); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 509, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 313, Short.MAX_VALUE) .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 313, Short.MAX_VALUE) ); pack(); }// </editor-fold>//GEN-END:initComponents /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { AboutJDialog dialog = new AboutJDialog(new javax.swing.JFrame(), true); dialog.addWindowListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); } }); dialog.setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private javax.swing.JScrollPane jScrollPane1; private javax.swing.JTextPane jTextPane1; // End of variables declaration//GEN-END:variables }