To refresh the contents in JTextArea on selection of a row in JTable.

This is the block of code that i have tried :
import java.awt.GridBagConstraints;
import java.awt.SystemColor;
import java.awt.event.ActionEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import javax.swing.table.DefaultTableModel;
import ui.layouts.ComponentsBox;
import ui.layouts.GridPanel;
import ui.layouts.LayoutConstants;
import util.ui.UIUtil;
public class ElectronicJournal extends GridPanel {
     private boolean DEBUG = false;
     private boolean ALLOW_COLUMN_SELECTION = false;
private boolean ALLOW_ROW_SELECTION = true;
     private GridPanel jGPanel = new GridPanel();
     private GridPanel jGPanel1 = new GridPanel();
     private GridPanel jGPanel2 = new GridPanel();
     DefaultTableModel model;
     private JLabel jLblTillNo = UIUtil.getHeaderLabel("TillNo :");
     private JLabel jLblTillNoData = UIUtil.getBodyLabel("TILL123");
     private JLabel jLblData = UIUtil.getBodyLabel("Detailed View");
     private JTextArea textArea = new JTextArea();
     private JScrollPane spTimeEntryView = new JScrollPane();
     private JScrollPane pan = new JScrollPane();
     String html= " Item Description: Price Change \n Old Price: 40.00 \n New Price: 50.00 \n Authorized By:USER1123 \n";
     private JButton jBtnExporttoExcel = UIUtil.getButton(85,
               "Export to Excel - F2", "");
     final String[] colHeads = { "Task No", "Data", "User ID", "Date Time",
               "Description" };
     final Object[][] data = {
               { "1", "50.00", "USER123", "12/10/2006 05:30", "Price Change" },
               { "2", "100.00", "USER234", "15/10/2006 03:30", "Price Change12345"},
     final String[] colHeads1 = {"Detailed View" };
     final Object[][] data1 = {
               { "Task:Price Change", "\n"," Old Price:50.00"," \n ","New Price:100.00"," \n" }
     JTable jtblTimeEntry = new JTable(data, colHeads);
     JTable jTbl1 = new JTable(data1,colHeads1);
     ComponentsBox jpBoxButton = new ComponentsBox(LayoutConstants.X_AXIS);
     public ElectronicJournal() {
          super();
          jtblTimeEntry.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
          if (ALLOW_ROW_SELECTION) { // true by default
ListSelectionModel rowSM = jtblTimeEntry.getSelectionModel();
rowSM.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {
//Ignore extra messages.
if (e.getValueIsAdjusting()) return;
ListSelectionModel lsm = (ListSelectionModel)e.getSource();
if (lsm.isSelectionEmpty()) {
System.out.println("No rows are selected.");
} else {
int selectedRow = lsm.getMinSelectionIndex();
System.out.println("Row " + selectedRow
+ " is now selected.");
textArea.append("asd \n 123 \n");
} else {
     jtblTimeEntry.setRowSelectionAllowed(false);
          if (DEBUG) {
               jtblTimeEntry.addMouseListener(new MouseAdapter() {
     public void mouseClicked(MouseEvent e) {
     printDebugData(jtblTimeEntry);
          initialize();
     private void printDebugData(JTable table) {
int numRows = table.getRowCount();
int numCols = table.getColumnCount();
javax.swing.table.TableModel model = table.getModel();
System.out.println("Value of data: ");
for (int i=0; i < numRows; i++) {
System.out.print(" row " + i + ":");
for (int j=0; j < numCols; j++) {
System.out.print(" " + model.getValueAt(i, j));
System.out.println();
System.out.println("--------------------------");
     private void initialize() {
          this.setSize(680, 200);
          this.setBackground(java.awt.SystemColor.control);
          jBtnExporttoExcel.setBackground(SystemColor.control);
          ComponentsBox cmpRibbonHORZ = new ComponentsBox(LayoutConstants.X_AXIS);
          cmpRibbonHORZ.addComponent(jBtnExporttoExcel, false);
          jpBoxButton.add(cmpRibbonHORZ);
          this.addFilledComponent(jGPanel, 1, 1, 1, 1, GridBagConstraints.BOTH);
          this.addFilledComponent(jGPanel1, 2, 1, 11, 5, GridBagConstraints.BOTH);
          this.addFilledComponent(jGPanel2, 2, 13, 17, 5, GridBagConstraints.BOTH);
          jGPanel.setSize(650, 91);
          jGPanel.setBackground(SystemColor.control);
          jGPanel.addFilledComponent(jLblTillNo,1,1,GridBagConstraints.WEST);
          jGPanel.addFilledComponent(jLblTillNoData,1,10,GridBagConstraints.BOTH);
          jGPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(0,0,0,0));
          jGPanel1.setBackground(SystemColor.control);
          jGPanel1.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0,
                    0));
          spTimeEntryView.setViewportView(jtblTimeEntry);
          jGPanel1.addFilledComponent(spTimeEntryView, 1, 1, 11, 4,
                    GridBagConstraints.BOTH);
          jGPanel2.addFilledComponent(jLblData,1,1,GridBagConstraints.WEST);
          jGPanel2.setBackground(SystemColor.control);
          jGPanel2.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0,
                    0));
          //textArea.setText(html);
          pan.setViewportView(textArea);
     int selectedRow = jTbl1.getSelectedRow();
          System.out.println("selectedRow ::" +selectedRow);
          int colCount = jTbl1.getColumnCount();
          System.out.println("colCount ::" +colCount);
          StringBuffer buf = new StringBuffer();
          System.out.println("Out Of For");
          /*for(int count =0;count<colCount;count++)
          {System.out.println("Inside For");
          buf.append(jTbl1.getValueAt(selectedRow,count));
          // method 1 : Constructs a new text area with the specified text. 
          textArea  =new JTextArea(buf.toString());
          //method 2 :To Append the given string to the text area's current text.   
         textArea.append(buf.toString());
          jGPanel2.addFilledComponent(pan,2,1,5,5,GridBagConstraints.BOTH);
          this.addAnchoredComponent(jpBoxButton, 7, 5, 11, 5,
                    GridBagConstraints.CENTER);
This code displays the same data on the JTextArea everytime i select each row,but my requirement is ,it has to refresh and display different datas in the JTextArea accordingly,as i select each row.Please help.Its urgent.
Message was edited by: Samyuktha
Samyuktha

Please help.Its urgentThen why didn't you use the formatting tags to make it easier for use to read the code?
Because of the above I didn't take a close look at your code, but i would suggest you should be using a ListSelectionListener to be notified when a row is selected, then you just populate the text area.

Similar Messages

  • Refresh the content of a page

    I' am developing a web monitoring console. Therefore I must be able to refresh the content of a page(table) and requery the underlying sql. Must I use a timer or are the other methods and alternatives.

    I am creating a project in Java Studio Creator 2. It starts out with a login screen and depending on the user rights, it lists(in a listbox) the possible pages the user has access to. From here the user selects the page they want to go to and takes them there. Now the problem that I am having is that this final page they are taken too needs to be refreshed every 5 seconds.
    I tried to add <meta http-equiv="refresh" content="5"/> in my <ui:head, but it just returned an error. After a little tweaking, I came up with <ui:meta httpEquiv="refresh" content="5"/>.
    The problem that I'm now having is that the page will wait 5 sec, and then reloads the previous page with the listbox. What am I doing wrong?
    The JSP head code that I have is as follows:
    <ui:head binding="#{Page3.head1}" id="head1">
    <ui:link binding="#{Page3.link1}" id="link1" url="/resources/stylesheet.css"/>
    <ui:meta httpEquiv="refresh" content="5"/>
    </ui:head>
    Now another question that I have, is how can I get a different page to start refreshing every 5 seconds after pressing a button and have it stop after pressing a second button.
    Thanks in advance,
    Raimie

  • How can i get the content of JTextArea with out loosing Indentation.

    I am developing one mail sending application. I am getting mailid , from address, mail body from one Swing. In one JTextArea i am typing i have typed some matter. When i call the content of JTextArea using
    jtx.getText() method, i am getting all the content as one paragraph. That means there is no indentation which was there in TextArea.
    Please provide me some solution how can i get the content of JTextArea wiht out loosing indentation.

    And it was you who asked the question!

  • Deleting the Row from the table is not refreshing the contents in the form

    Hi,
    We developed a table and form in the same UI based on the following suggestion.
    Display and edit currently selected row of ADF Table in ADF Form
    1. Created one view object based on the employees table.
    2. dragged the view object to the UI as table.
    3. dragged the view object as form.
    4. set partial triggers on the form's container (panelformlayout) as tableId.
    Tested the application with the edit options and everything is working fine. But the problem comes when we delete the record from table. it is not refreshing the form based on the newly selected row after deleting the record. If we commit the data the form contents are updated to the selected row (which is not desired).
    Can you please suggest how to fix the issue, refreshing the form with the selected row after deleting the records.
    Thanks and Regards,
    S R Prasad

    The Code snippet looks fine. I think, the issue is in the partial trigger setting
    4. set partial triggers on the form's container (panelformlayout) as tableId.In order to the table to get refreshed, the table's partialTriggers property should be set to id of the delete Button.
    Go to table, select partialTriggers in the Property Inspector, Click on Expression Builder at the right and select the delete Button.
    Can you set this and check?
    Sample Code:
    <af:panelHeader text="panelHeader 1" id="ph1">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar">
    <af:commandButton text="Delete" id="cb1"/>
    </f:facet>
    <f:facet name="legend"/>
    <f:facet name="info">
    <af:table var="row" rowBandingInterval="0" id="t1"
    partialTriggers="::cb1">
    <af:column sortable="false" headerText="col1" id="c1">
    <af:outputText value="#{row.col1}" id="ot1"/>
    </af:column>
    <af:column sortable="false" headerText="col2" id="c4">
    <af:outputText value="#{row.col2}" id="ot3"/>
    </af:column>
    <af:column sortable="false" headerText="col3" id="c3">
    <af:outputText value="#{row.col3}" id="ot4"/>
    </af:column>
    <af:column sortable="false" headerText="col4" id="c5">
    <af:outputText value="#{row.col4}" id="ot2"/>
    </af:column>
    <af:column sortable="false" headerText="col5" id="c2">
    <af:outputText value="#{row.col5}" id="ot5"/>
    </af:column>
    </af:table>
    </f:facet>
    </af:panelHeader>
    Thanks,
    Navaneeth

  • Refreshing the Content on a JSP page

    Hi,
    I am developing an application where a JSP page (index.jsp) is displaying some data from the database. There is an HTML form on the JSP page too. When the user fills in the data and clicks submit, he is redirected to a servlet (via form's action)... the servlet inserts the data into the database and the user is redirected back [Response.sendRedirect("index.jsp")] to the original JSP page.
    The problem I am facing here is that when the user is back on the original index.jsp page, the newly inserted data is not being displayed on the page. The user MUST refresh the page manually in order to view the new data.
    How can I display the new data automatically, without the user refreshing the page?
    PS: I have already tried <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">... but it is not working...
    Any help will be greatly appreciated.
    Thanks.

    Thanks for info... Have you got any idea of dynamic updation of JSP page? I have been debugging the problem since 2 days and I have tried various methods but nothing seem to help. I have tried to use meta http-equiv and javascript as well for the refresh but its of no use...
    My business logic is pretty simple...
    index.jsp
    =======
    [Connect to database]
    [Fetch  & Display data]
    [HTML Form] ---> submit to Servlet 'test'
    test.java (Servlet)
    ======
    [Fetch the request parameters sent by JSP page]
    [Insert the record into database]
    [response.sendRedirect("index.jsp");]

  • How to refresh the content of an external file

    Hi guys.
    I need to use an external file, no matter the extension(txt .xls .xml .mdb .csv) in the oracle BI rpd.
    I Use this file like a center table in my star schema and this file need to refresh frequently.
    How i can see, dynamically, the changes in the file without restart the services?I've tried by Answer to see all the record in the file, but if i change the file content and after, by answer, try to see the content.... it's the same as first!
    I can do something to overcome this problem? or i have to use external table??
    Thanks in advance.
    Best reguards

    It seems to me that you are trying to reinvent the wheel here. Having the BI Server load a 100,000 rows file is nto a good idea. The BI Server is not an ETL tool. While I could see why you may want to refresh the file frequently a better process would be to load it using standard ETL tools, create indexes etc and the move it to current table for OBIEE to see. You can use the OBIEE's Event Polling to clear the cache. Another simpler option if you are using an Oracle database is to use external tables. External tables allow you to define a table in an Oracle database that it's source is a text file. Google it and you will plenty of samples.

  • Clean the content of a variable selection

    HI,
    coming from other forum,
    I create Currency = OBJV().
    Any time that I execute the layout the variable Currency get also the buffered value.
    HOw can I refresh the value of the OBJV()?
    Regards

    Hi
    I have the same problem. Regarding BPS there is solution, run planning function before folder open and refresh values there.
        CALL METHOD cl_sem_variable=>get_instance
          EXPORTING
            i_area       = i_area
            i_variable   = wa_variable
          RECEIVING
            rr_variable  = lr_variable
          EXCEPTIONS
            not_existing = 1
            OTHERS       = 2.
        IF sy-subrc = 0.
    * delete the restrictions
          CALL METHOD lr_variable->set_user_restriction
            EXPORTING
              i_user   = sy-uname
              i_delete = 'X'
            EXCEPTIONS
              failed   = 1
              OTHERS   = 2.
        ENDIF.
    There is one side effect - planning f-ction runs authorization check, so, you have to have values set in variable, otherwise system try to run pl.f-ction for all obj. And it raises authorization exceptions ;(
    For web it is little bit worse - system clears varibale, but does not clear input field contents. User opens layout and get last values ;( Refresh data and fields are cleared.
    Valters

  • How to delete and refresh the contents of table control..

    how to delete particular row in table control .consider we r having three rows i wish to delete the third row.while on debugging the third row gets deleted successfully.but that is displayed in table control.then how to refresh the table control...

    hi,
    try like this....
    USER_COMMAND of PAI
    MODULE user_command_9000 INPUT.
      CASE ok_code.
        WHEN 'BACK' OR 'UP' OR 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'DEL'.
          GET CURSOR LINE lin_no.
          f1 = 1.
       ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    and in Module in which u fetching data in PBO, write like
    MODULE get_data OUTPUT.
      IF f1 <> 1.
        SELECT kunnr name1
        INTO CORRESPONDING FIELDS OF TABLE mytab
        FROM kna1.
      ENDIF.
      IF f1 = 1.
        DELETE mytab INDEX lin_no.
        FREE lin_no.
        FREE f1.
      ENDIF.
    ENDMODULE.                 " get_data  OUTPUT
    reward if useful...

  • Master table / detail table: Problem refreshing the content

    Hi,
    I have a Master table/detail table on my page. When I add a new row to the master or detail table, the new row is inserted in the database, but not shown in the ADF Tables on the page. After restarting the OC4J the ADF Tables show the correct data, including the new rows.
    While dropping the collection on my page there were one methodIterator and two accessorIterators created.
    In several tutorials the solution for the refresh problem is to change the chacheResult parameter of the methodIterator to false. But this causes in "No row found for rowKey:null" errors.
    An other solution should be to create a new invokeAction with the id "tableRefresh" and the corresponding RefreshConditions. This doesn't helps, too.
    So how could I solve this problem? I want to update/refresh the master and detail table, after I inserted a new row.
    Thanks,
    Thomas

    Hi,
    thanks for your answer.
    Sorry, but I forgot to say, that I am using Jdev 10.1.3.1, Toplink, ADF and EJB3.
    I think I will give some further informations about the scenario. I created the m/d table by drag-and-droping the object out of the data control palette on site A. Each row stores a goLink item, which navigates to a new page B. After creating and saving the new entry the user navigates back to the page with the m/d table (page A). Storing the new entry is handled by an action in the page B managed bean.
    Now the question: How could I re-execute in page B backing bean the iterator which is stored in page A? Could this be handled by an invokeAction? Or is it possible to get access to the iterator used and stored on another page (definition)?
    Thanks,
    Thomas

  • How to clean the content in JTextArea?

    I have created a JTextArea to show some calculation results, how to clean the current shown content if I don't want them? Thanks!

    What's wrong with setText("")? (setText(null) works as well)

  • ITunes share disconnects right after refreshing the contents of that share

    The device offering the sharing is a Thecus N4200Pro. It works fine in iTunes for Windows, but is not working with iTunes for Mac OS X. It disappears right after the playlist is displayed and shows up again. It has been tried on various configuration, OS 10.6, 10.7, iTunes 10.4.1, 10.5, 10.5b2 etc.
    The library contains more than 30k songs, maybe too large?
    Thanks in advance.

    iTunes v10.5.1b2 fixed it. Thank you all

  • How to print the all content of JTextArea to several pages

    Hi there, my application have a JTextArea and user can type text in. When the jbPrint button is pressed, the all content of JTextArea should be printed to papers. But now my application can only print out the first page even the content of JTextArea is 3-page length, does anyone can give me some clue or example? Thanks in advance.!! Really hurry!!

    Use freely downloadable smart jprint classes from http://www.activetree.com. This package also allows you to print contents of any kind of JTextComponent such as JTextField, JTextArea, JEditorPane, and JTextPane.
    Print the swing components with or without showing in the UI. Line breaking is done automatically for you and prints in multiple pages.
    JTable printing is specially interesting.

  • How to make the contents of NSTextField selected?

    Hi,
    I'm creating an NSTextField (from within a custom NSView):
    NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(20, 20, 50, 16)];
    [textField setStringValue:@"abc"];
    [textField setSelectable:YES];
    [textField setEditable:YES];
    [textField selectText:self];
    I want the contents to be selected ready for the user to start typing, but despite calling selectText, the text field is never selected. Is there another step I have to do first?
    Thanks
    Steve

    Steve556 wrote:
    Now, if you change NSView to NSTextView in the @interface, you will see the behaviour I'm getting, that the NSTextField still appears and functions, but the contents are no longer selected.
    I haven't put this in a testbed yet, Steve, but need to ask a couple questions anyway: Are you (1) having a problem getting your NSTextField object(s) to accept first responder, or unable to select text manually? Or (2) are you expecting to see the selected text when a text field object isn't first responder (i.e. when it's neither displaying the caret nor connected to the field editor)?
    As to #1, your code shows that the text field is added as a subview of the NSTextView object. Have you tried making the text field a sibling view? I.e. both the text view and the text field would be subviews of the content view, but the text field(s) would be higher in the subview order. You can change the order by dragging in the xib window (with the View Mode switch in Center position), or you can send [addSubview:positioned:relativeTo:|http://developer.apple.com/mac/library/docum entation/Cocoa/Reference/ApplicationKit/Classes/NSViewClass/Reference/NSView.html#//appleref/occ/instm/NSView/addSubview:positioned:relativeTo:].
    If #2, I don't know of any easy way to get NSTextField to highlight text when it's not first responder. In fact I don't think NSTextField remembers which text was selected once it's no longer editing. From [Text Fields, Text Views, and the Field Editor|http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/UI TextView/TextFieldsAndViews.html#//apple_ref/doc/uid/20001799] in +Text Views+:
    Because only one of the text fields in a window can be active at a time, the system needs only one NSTextView instance per window to be the field editor. Among its other duties, the field editor maintains the selection. Therefore, a text field that's not being edited typically does not have a selection at all. (However, developers can substitute custom field editors, in which case there could be more than one field editor.)
    On the other hand, +NSTextView does remember+ the range of selected text and highlights that text in a different color when not editing. So you might consider creating additional smaller NSTextView objects in place of the NSTextField objects.
    The [Cocoa Text System|http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Te xtArchitecture/TextArchitecture.html] is rich in [details and capabilities|http://developer.apple.com/mac/library/documentation/Cocoa/Concept ual/TextEditing/TextEditing.html#//apple_ref/doc/uid/10000157] about which I'm clueless. So if you need to dig much deeper, I hope one of our OS X experts will respond.
    \- Ray

  • How to change the content of a frame

    Hi,
    I want to create a link that refreshes the content of a frame in my page.
    I guess that Oracle Portal does not support frames.
    That's why I wonder if I'm obliged to developp a new page each time I just want
    the content of a frame to be updated ?
    Thanks for your help,
    Best Regards,
    Jean-Christophe

    Cleartoby,
    Well, another thought that comes to mind is to define and implement a listener.
    e.g.
    public interface MyListener
        public void setText(String text);
    public class MyFrame extends JFrame implements MyListener
        private JTextArea textArea;
        public void setText(String text)
            this.textArea.setText(text);
    public class MyOtherFrame extends JFrame
        public void addMyListener(MyListener l)
            // somehow keep track of listeners
        // so some stuff and when needed call "setText()" on the listener(s)
    --- pam11

  • Save the contents into hard disk on click of Save As button in Swing

    Hi,
    I have a JButton "Save As". On clicking the button, the contents in the JTextArea should be saved in the local hard disk by opening a Save As dialog box and allowing the user to save in any location.
    Is it possible to do this? If so, please inform me how it could be done.

    Hi,
    Please find the code below.
    try{
    File f = new File("Out.txt");
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis); DataInputStream dis = new DataInputStream(bis); String stb = null;
    JDialog w = null;
    stb = new String();
    stb = dis.readLine();
    if(stb != null){
    w = new JDialog();
    final Container c = w.getContentPane();
    c.setLayout(null);
    w.setContentPane(c);
    w.setResizable(true);
    w.setTitle("Log Window");
    w.setSize(330,500);
    final JTextArea jt = new JTextArea();
    JScrollPane jsp = new JScrollPane(jt);
    jt.setLineWrap(true);
    jt.setText("Records not available for the id's"+"\n"+stb);
    jt.setBounds(10,10,285,500);
    final JButton jbSave = new JButton("Save File As");
    JPanel spacer = new JPanel();
    spacer.setMinimumSize(new Dimension(50, 18));
    spacer.setPreferredSize(new Dimension(50, 18));
    JPanel jpButtons = new JPanel();
    jpButtons.add(jbSave);
    jpButtons.add(spacer);
    jpButtons.setBorder(BorderFactory.createEtchedBorder());
    JScrollPane scroll = new JScrollPane();
    c.setLayout(new BorderLayout());
    c.add(jt,BorderLayout.CENTER);
    c.add(jpButtons, BorderLayout.SOUTH);
    jbSave.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    JFileChooser fileChooser = new JFileChooser();
    int userOption = fileChooser.showSaveDialog(null);
    if(userOption == JFileChooser.APPROVE_OPTION)
    //*******************STATEMENTS TO BE ADDD****************** }
    jt.getText()-----This is how I can get the contents from JTextArea.
    But how I can save the contents. i.e on click of Save As button, Save dialog box opens, and I can choose the location and give the name. but if I go to the location I don't find the file....
    Please guide me to finish this....
    Thanks in Advance.....

Maybe you are looking for

  • Placing text beside image in a table cell?

    I'm creating business cards (using a Printworks template), and I want to place text to the right of the inserted picture. I've copied and pasted the jpg fine onto the left side of the cell, yet when I try to type text, the cursor only lets me begin t

  • Material type ..? to get 28 views

    hi gurus can anybody explain me which material type will show all the view in Material master..? Nearly 28 views are there in material master. Thanks sap-mm

  • Crosstabs- Selecting Rows based on parameters

    Does anyone know a way to display or not display rows in a crosstab based on parameters? I am not looking to suppress rows, rather just include or exclude. What I am trying to do is replicate a webfocus report that allows the user to check a checkbox

  • Backup and Restore approach

    HI All, Please let me know how to take backup of instance periodically on Author and Publisher. As i tried Online repository backup on Qa server it is taking more than 8 hours to copy 28 GB file and still not completed. Is their any way to perform Ba

  • Will my photoshop 6.0.1 run on windows  ?

    Will my photoshop 6.0.1 run on windows 7?