Adding text to a text area

Im trying to add text from a result set to a text area but the text simply isnt showing.
When i try
String s =(res.getString("OrderID"));
System.out.println(s);
it prints the corretc result to the screen.
However, when i try
String s =(res.getString("OrderID"));
txtArea.append(s); nothing happens to the text area
Also txtArea.append(res.getString("OrderID"));
doesnt work.
What am i doing wrong???

ok the append is working now, but the thing is is that its sending the info to the textarea twice??????? here's my code
public void itemStateChanged(ItemEvent ie) // Item event handling
if (ie.getSource().equals(cmbCustomerID))
CID = cmbCustomerID.getSelectedItem().toString();
try
//connect to database
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
System.out.println("Drivers loaded");
String url = "jdbc:odbc:wms";
Connection con = DriverManager.getConnection(url,"root","");
Statement stmt = con.createStatement();
ResultSet res = stmt.executeQuery("SELECT OrderID,CustomerID, ProductDescription, ProductCost FROM orderhistory WHERE CustomerDescription ='"+CID+"'");
while(res.next())
txtCustomerID.setText(res.getString("CustomerID"));
txtArea.append("ORDER ID: " + res.getString("OrderID")+ "\n" );
txtArea.append("Product Description: " + res.getString("ProductDescription" )+"\n");
txtArea.append("Product Cost: " + res.getString("ProductCost")+"\n");
con.close();
catch(Exception e)

Similar Messages

  • Problem with adding text area in scroll pane

    hi , i have been facing this funny problem , but cant able to get solution.
    the problem is i am trying to add text area in scroll pane , but when i add textarea in scroll pane using scrollpane.add(textarea) that text area remain disable always. i tried making it enable explicility but that code is not working.

    You don't use the add(...) method for JScrollPane. Use:
    a) new JScrollPane( textArea );
    b) scrollPane.getViewport().setView( textArea );

  • Adding Text Area on Infotype

    Hi,
    I would like to know how to add text area on the Infotpe 0102,so the user can add 1 or n lines of text, I know we can create additional Field from PM01, I dont how to do this.. Can anyone help me ..
    Thanks
    Kishore

    Hi,
    Why do you want create an additional field? Did you try the Edit--> Maintain Text option? This enables the User to enter any number of lines of free text.
    Good Luck,
    Suresh Datti

  • On click of lov new jsp page which has only text area for adding comment

    hi all ,
    please help me to do this task. on click of lov new jsp page should be opend which has only text area for adding comment and upon clicking submit on the jsp page the value entered on the textarea should fall on the text field of lov.
    with regards
    prabhakaran.p

    The only reason I see for such a requirement is "Notes" require more space for entering a detailed note and would be inconvenient to write it in small single-line text input box. But, still in this case, getting the entered text back to the page and displaying it will have the same inconvenience of reading it from that field. And, I still think that removing one amongst the two (text field or image link) would be good, design wise.
    Anyway, did u try the following:
    1. Add a flow layout to the table bean
    2. Add text input and image item to the flow layout.
    3. Attach the notes page as the destination uri for the image.
    Did u start the working on it, let us know how far did u reach so that we can guide you through from that point.

  • Users are adding text boxes and not typing in form fields.

    I have created forms for a client to use as grade school report cards. Some of the teachers are having issues because they are not clicking on the form fields to add information. They are actually creating and editing their own text boxes. The instructions to click on the form field and type do not seem to be working. Any suggestions?

    You can use standard password security to allow form filling but disallow commenting, which includes adding text boxes.

  • Photoshop CC : Workspace Flashing Black When Inserting Guides & Completely Black When Adding Text

    I recently bought Photoshop CC (2 Days Ago) and shortly after installing I jumped onto Photoshop CC and started to set up the prefferences for my personal use and started to just do some basic stuff and see whats new in CC. when inserting Guides & adding Text the workspace started to flash/stay BLACK. I don't know whats going on but my specs are better than the minimum requirements? Any idea whats going on? Operating System : Windows 8.1

    Have a look through this step by step guide.
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    It's coming up 1am here, so I am calling it a night.

  • I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only

    I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only sends the original form without text. Once I've changed a doc in Adobe, how can I save it so that I'm able to use it with added text and notes? Also, I'm using a new iPad.

    If you are using those apps or websites, they are likely viewing the PDF using iOS' built in PDF previewing, which will not show annotations and markup to the PDF. We have informed Apple of this issue, but do not have any insight into whether or when they will fix it.
    Regarding the qustion about importing pictures, Adobe Reader does not provide any capabilities to import pictures into a PDF. To do this, you'll need to use Acrobat, available on your desktop computer.

  • How can I remove the underline from added text for tracing edits

    We have a lot of content that includes underscores and when we use the track text edit feature added text is green and underlined. How can I change the properties of the added text to not be underlined?

    Starting with FM11, you could specify a custom colour to be used for track changes, but the styles (underline, strikethrough) are still hardwired.
    Even if you try to make the changes to the rack text edit conditions in a MIF file, they will get overwritten as the MIF is interpreted when opened by FM.
    Please use the new Bugs & Features form to submit an enhancement request: https://bugbase.adobe.com/index.cfm

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • Text Area for long text not appearing properly for BBP_POC_DISPLAY Service

    Hi,
    In our development we have added additional Icon at ITS in Process PO transaction and onclicking  that icon Web dynpro AB screen called with the Purchase Order No of selected row .(SRM 5.0)
    There is one more icon in Web dynpro screen on click of that Purchase order service open in ITS with display mode .This is achieved with service BBP_POC_DISPLAY from Web Dynpro-AB.
    This is also working ok only the issue is in Document tab of PO The Text Area for long text appear at Top  .This functionality is working fine with BBP_POC  service from ITS .
    Has anybody faced this kind of issue ?
    Thanks,
    SMS

    Hi SMS,
    I am unsure of the additional component you are talking about. In general, issues with text area misplacing, is solved by note 1067625. May be you can check it.
    thanks,
    Ashwin

  • Display Text Area as Read Only

    Hello,
    I have about 5 forms, some of the forms have text areas with counters. All of my text area fields are pretty much set up the same way:
    width = 75, height= 6, max width = 500.
    When a user logs in with read only priv. the text areas turn change to read only. The problem is when I enter some data into a text area it will display across the screen. I need the text area to do word wrap. I have tried the following in the Read Only Element Table Cell Attribute.
    display:block; width: 400px; word-wrap: break-word; overflow:hiddenI have also tried to add some CSS to my HTML Header, which adds borders to all of the fields, which is not wanted and it doesn't word wrap.
    <style type="text/css">
    span.display_only {border:2px inset #D4D0C8; padding:1px 0px;}
    </style>Any help, is greatly appreciated.
    Mary
    Edited by: MaryM on Aug 25, 2010 11:58 AM

    They are page items all of them have character counters. The problem, comes when a user logs in with Read Only privelages, then the text area's turn to Read only. For example, if I enter something in the text box like (xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxeeeeeeeeeeeeeeeeeeeeeee) it will display across the screen when a Read Only user logs in and looks at it. I need it to word wrap, when it is in Read Only mode. It will also display the same way if I change the field type to Display as Text ex: (xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee), it will not word wrap.
    All of my text area boxes are varchar2 (300) or more in length. I need to be able to word word wrap. I was able to do with classic reports, using standard report columns and in the css I added the following:
    display:block; width:400px;word-wrap:break-word;overflow:hidden.Hope I explained this better.
    Mary
    Edited by: MaryM on Aug 25, 2010 12:25 PM

  • Deselecting text in a text area as well as a input label?

    Hi there,
    Scenario - I have some text selected in a text area
    component. I get a callback from another program (external
    interface included) to remove the selection. How do i deselect the
    selected text and retain the text without selection? I have read on
    the .selected, .editable, .setSelected etc, but Im not getting it.
    This same prob exists with a normal text input type, it doesnt
    deselect there too.
    Can you please help me out? Is there something Im missing
    from the help doc?
    In short - How do we deselect text programatically in AS
    2.0?

    Hi Ned,
    The null param didnot work as expected, the selection goes
    and then again returns when I leave the mouse button. I tried
    adding a invisible botton obj outside the stage and then I gave
    it's instance to the param, this worked. Now this is hidden so I
    cannot see the tab effect on the stage since the button is outside.
    Thanks a lot for the answer Ned.

  • Can a script manually insert a delete (or backspace) into a text area?

    I'm new to action script, so this may have a simple answer, sorry if that's the case.
    I have a little movie created with a simple purpose of trying to mimic a system like cell phones have for character input.
    There are two text areas, one hidden off the screen that accepts the input from the user; a second text area in on screen and displays what the user had entered after some basic processing on the input.
    The hidden text area is pretty basic with listener that is responsible for grabbing the input keys and then mangling them to be inserted into the displayed text area based on the cell phone text entry multi-tap rules. Example user press 2-2-2  and the hidden input accepts 222 and then appends 'C' to the display text area. That's working great, but I have a problem if the user wants to delete from the display text area. I can't find a way to insert a delete or backspace key into the display text area. I've tried using StringFromCharCode (8) // Key.BACKSPACE, but that doesn't work. That just displays one of those undefined glyphs. I figure that things like clear, and delete are handled somewhere higher in the input chain and that's where I'm having a problem.
    I've looked, but I can't find a way to delete a single character from the text area. I was thinking if I could find the cursor location that I could just use some delete character method to get the job done, but I couldn't find how to do that.
    Any ideas on how to pull off manual delete function in a text area?

    Ned, I do really want to manually (by method of code) trigger a delete in a text area. The delete (or backspace) that I want added to the text area isn't directly entered by the user, it's the result of several key presses by the user. That's why I called it "manual" because it's done by the code, not by the user's direct input.
    Think about how text entry works on most phones... if you want to enter a letter you have to cycle through all the letters on a single key until you get to the character desired. As I stated before, if you want a 'c' you need to press 2 button 3 times. This is basically what I'm trying to do, but I want to add the ability to delete a character too if the correct sequence in entered, for example a sequence of ### would equal a backspace.
    Rothrock, I think you were thinking the same thing that a single key is used to do a backspace.
    I was thinking that I could possibly insert key event into the event queue for the text area to process, but I wasn't sure about that.
    Sorry, if this is confusing, I know it's not a straight forward design. I need onscreen and offscreen text areas with the onscreen one acting as a slave of the offscreen one.
    The way the code currently works is hidden text area had a listner that responds to changes, and that handler processes the key entered and deletes that character from the hidden text area. After the full sequence of characters (say 2 button has been pressed 3 times) the handler then sends the resulting character into the display text area. This part of the code works great. I can add any character including some specials like tab and newline. However if I want the text area to delete a character I don't have a way to do that. That's why I tried to insert the backspace key (0x08 or ^H, for other oldschoolers), but using that as a char code or string from char code doesn't work.
    I had also tried to create to set the focus to the display text area then create and dispatch a backspace keydown and keyup events to the visible text area and then return the focus back to the hidden textarea, but... no luck.

  • How to Create Free Text Area

    Hi all,
    I have a requirement where i need to create some 70 Z-fields inside Incident line item where user just enters data and will save the form.
    i have achived this by adding the fields into ORDERADM_I and is working fine.. i am able to bring the fields in the Incident line item.
    Now i have a requirement where i need to create 2 Free Text areas (like notes where user can enter unlimited text) .
    how to achive this.
    as of now i have created 2 more Z-fields in ORDERADM_I with 255 characters length and increased the line numbers into 4 in the GET_P method. but by doing this, user can enter only 255 characters and this is not a free text area.
    can any one give me steps to create a new free text area.
    Regards,
    Amshu

    Hi Steve,
    i have already tried this. it works fine
    look at my code below
    method GET_P_ZZAFLD0000AL.
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_textarea.
        WHEN if_bsp_wd_model_setter_getter=>fp_textarea_rows.
          rv_value = 4.
      ENDCASE.
    endmethod.
    this code will make the field as text area with size 4 lines . But the field length will be same as what we declare in the domine.. (max 256) . i cant enter unlimited text in this field though it looks like a text area.
    i guess v need to create a standard text somewhere in configuration and assign the same here...
    if anyone hv worked on this please revert back
    Regards
    Amshu

  • Problem Writing to text area reposted forgot my code

    I have 3 seperate Classes Main, GUI, and FileChange.
    The Main class runs and constructs the GUI class. The GUI class builds my application. Then the program stops until a user action is committed. If the user opens a file the FileChange class gets the selected file and manipulates it. I tokenize the stings in the file and send the info i want back over to the JTextArea in the GUI class but nothing prints out. The program compiles but informaiton is not written to the text area, why?
    The file change makes a call like such:
    g.outputText(genre, composer, artist, albumTitle, trackNum, songTitle, count);
    the the method that is called does this:
    mainText.append(gnr+" ");
    if(count==1){mainText.append(cmp+" ");}
    mainText.append(art+" "+alb+" "+trk +" "+st.substring(3)+".mp3");
    I dont understand why I cant append text to the JTextArea. I can place text in the TextArea during constructor initialization of the GUI class but not when i call the method that appends text from the FileChange class.The Code is posted below
    Thanks in advance for your help
    p
    Main Class//////////////////////////////////////////////////
    package musicmatch_library_test;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.util.*;
    public class Main implements WindowListener
    public Main()
         super();
         public static void main(String args[])
    GUI f = new GUI();
    f.setSize(800,600);
    f.setVisible(true);
    f.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
         public void windowActivated(WindowEvent e)
         public void windowClosed(WindowEvent e)
         public void windowClosing (WindowEvent e)
              GUI f = new GUI();
              f.quitApplication( );
         public void windowDeactivated(WindowEvent e)
         public void windowDeiconified(WindowEvent e)
         public void windowIconified(WindowEvent e)
         public void windowOpened(WindowEvent e)
    GUI Class
    package musicmatch_library_test;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    import java.io.*;
    class GUI extends JFrame implements ActionListener, FilenameFilter
    private JMenuBar menuBar = new JMenuBar(); // Creating The MenuBar
    protected JFileChooser dialogBox = new JFileChooser(); //create load dialog box
    private JMenu fileMenu, editMenu, helpMenu; // Menu Options
    protected JMenuItem fileOpen, fileSaveAs, fileExit; // File Option
    private JMenuItem editDelete; //Edit Options
    private JCheckBoxMenuItem wordWrap;
    private JMenuItem helpQuestions, helpAbout; // Help Options
    private JTextArea mainText = new JTextArea();
    //public FileChange changeFile = new FileChange();
    public GUI()
         super("Library Converter v.001"); //Title bar text
         getContentPane().setLayout(new BorderLayout());
    this.setJMenuBar(menuBar); // Add menu Bar to the screen
    initFileMenu(); // goes to the file menu method
    initEditMenu(); // " " edit menu method
    initHelpMenu(); // " " help menu method
    initTextArea();     // " " text area setup
    System.setProperty("line.separator", "\r\n");
         public boolean accept(File dir, String name)
              System.out.println("accept():");
              if (name.endsWith(".txt")) return true;
              return false;
         public void actionPerformed(ActionEvent e)
    if(e.getSource() == fileExit)     //if statement to close app
    quitApplication();
    }//end if (e.getSource() == fileExit)
    if(e.getSource() == fileSaveAs)
    FileChange changeFile = new FileChange();
    changeFile.fileSaveAs();
    }//end if (e.getSource() == fileSaveAs)
    if(e.getSource() == fileOpen)     //if statement to open a file
    openFile();
    }//end if (e.getSource() == fileOpen)
    if(e.getSource() == wordWrap)     //if statement to turn word wrap on/off
    if(wordWrap.getState() == false)
    mainText.setLineWrap(false);
    mainText.setLineWrap(false);
    }//end if (wordWrap.getState() == false)
    else if(wordWrap.getState() == true)
    mainText.setLineWrap(true);
    mainText.setLineWrap(true);
    }//end else if (wordWrap.getState() == true)
    }//end if (e.getSource() == wordWrap)
         }//end action performed
         private void initEditMenu()
    editMenu = new JMenu("Edit"); //Adding Edit to Menu
    editMenu.setMnemonic('E');
    menuBar.add(editMenu);
    wordWrap = new JCheckBoxMenuItem("Word Wrap", false); //adding a word wrap on/off button
    wordWrap.addActionListener(this);
    wordWrap.setEnabled(true);
    editMenu.add(wordWrap);
    editDelete = new JMenuItem("Delete"); //adding delete inside the "edit" options
    //editDelete.addActionListener(this);
    editDelete.setEnabled(false);
    editMenu.add(editDelete);
         }//intEditMenu
         private void initFileMenu()
    fileMenu = new JMenu("File"); // Adding File to the menu bar
    fileMenu.setMnemonic('F');
    menuBar.add(fileMenu);
    fileOpen = new JMenuItem("Open"); // Adding open to the Menu
    fileOpen.setMnemonic('O');
    fileOpen.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_O, InputEvent.CTRL_MASK));
    fileOpen.addActionListener(this);
    fileOpen.setEnabled(true);
    fileMenu.add(fileOpen);
    fileSaveAs = new JMenuItem("Save File As"); // Save file info
    fileSaveAs.setMnemonic('S');
    fileSaveAs.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S, InputEvent.CTRL_MASK));
    fileSaveAs.addActionListener(this);
    fileSaveAs.setEnabled(false);
    fileMenu.add(fileSaveAs);
    fileExit = new JMenuItem("Exit"); //Exit Item
    fileExit.setMnemonic('X');
    fileExit.addActionListener(this);
    fileMenu.add(fileExit);
         private void initHelpMenu()
    helpMenu = new JMenu("Help"); //adding help menu
    helpMenu.setMnemonic('H');
    menuBar.add(helpMenu);
    helpQuestions = new JMenuItem("Questions"); // Questions Item
    helpQuestions.addActionListener(this);
    helpQuestions.setEnabled(false);
    helpMenu.add(helpQuestions);
    helpMenu.addSeparator();
    helpAbout = new JMenuItem("About"); //addind About stuff
    helpAbout.addActionListener(this);
    helpAbout.setEnabled(false);
    helpMenu.add(helpAbout);
    private void initTextArea()
         mainText.setEditable(false);
         mainText.setVisible(true);
    JScrollPane scrollPane = new JScrollPane(mainText);
    getContentPane().add(scrollPane, "Center");
         public void openFile()
         {//method to start the opening of a file
              FileChange changeFile = new FileChange();
    //fileSaveAs.setEnabled(true);
              mainText.setText("Please Be Patient While Opening The File");
              dialogBox.setCurrentDirectory(new File("C:/Documents and Settings/Administrator/My Documents/Java Stuff/Personal Projects")); //set default path
              dialogBox.showOpenDialog(this);                         //opens the dialog box to select a file
              changeFile.fileManip(dialogBox.getSelectedFile().getPath());//get the directory plus the file and pass it to fname in displayTab1()
         }// end openFile()
    public void outputText(String gnr, String cmp, String art, String alb, String trk, String st, int count)
         mainText.append(gnr+" ");
         if(count==1){mainText.append(cmp+" ");}
         mainText.append(art+" "+alb+" "+trk +" "+st.substring(3)+".mp3");
         public void quitApplication( )
              setVisible(false );
              dispose( );
              System.exit(0);
    FileChange Class
    package musicmatch_library_test;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    class FileChange extends GUI
         JTextArea fcText = new JTextArea();
    public     FileChange()
         super();
         public void fileManip(String fname)
         {//this mehtod will edit and display and save certain info in tab1s display area
         GUI g = new GUI();
         try
    BufferedReader inFile = new BufferedReader(new FileReader(fname));
    PrintWriter outStream = new PrintWriter (new FileWriter(fileSaveAs())); //dialogBox.getSelectedFile()
              String line = inFile.readLine();
              fcText.setText("");
              int count;          
              while(line != null)
                   StringTokenizer cut = new StringTokenizer(line, "\\");
                   count = cut.countTokens();
                   if(count == 6 || count ==7)
                        String drive = cut.nextToken();
                        String folder = cut.nextToken();
                        String genre = cut.nextToken();
                        String composer=null;
                        if(count ==7)
                             composer = cut.nextToken();
                             count = 1;
                             String artist = cut.nextToken();
                             String albumTitle = cut.nextToken();
                             String trackNum = cut.nextToken("\\ -");
                             String songTitle = cut.nextToken(".");
                             g.outputText(genre, composer, artist, albumTitle, trackNum, songTitle, count);
                        outStream.print(genre+" ");
                        if(count==1){outStream.print(composer+" ");}
                        outStream.println(artist+" "+albumTitle+" "+trackNum +" "+songTitle.substring(3)+".mp3");
                        count = 0;
                   }//if(count == 6)
                        line = inFile.readLine();
              }//end while(line != null)
              outStream.close();
              inFile.close();
         }//end try
         catch(FileNotFoundException e)
              g.fileSaveAs.setEnabled(false);
              fcText.setText("NO File will be open, File Not Found");
         }//end catch (FileNotFoundException e)
         catch(IOException e)
    g.fileSaveAs.setEnabled(false);
    fcText.setText("NO File will be open");
    System.exit(1);
         }//end catch (IOException e)
         catch(NoSuchElementException e)
              fcText.setText("No MoreTokens");
    }//end FileManip()     
         public File fileSaveAs()
    {//method for saving a file
         GUI a = new GUI();          
    a.dialogBox.setCurrentDirectory (new File("C:/Documents and Settings/Administrator/My Documents/Java Stuff/Personal Projects"));
    a.dialogBox.showSaveDialog(a.getContentPane());
    //File toSaveAs = a.dialogBox.getSelectedFile();
    return a.dialogBox.getSelectedFile();
    }//end fileSaveAs()

    For instance in your main you can have:
    public class Main implements WindowListener {
      public static GUI f;
      public Main(){
        super();
      public static void main(String args[]) {
        f = new GUI();
        f.setSize(800,600);
        f.setVisible(true);
        f.addWindowListener(new WindowAdapter() {
          //Window Adapter Stuff...By the way if you use the WindowAdapter
          //You don't have to stub out the methods you don't use, just write
          //the ones you do use, that is what makes adapters better then
          //listeners...
      public static GUI getGUIInstance() {
        return f;
    //then in the fileChange methods that need to use the GUI do:
      GUI g = Main.getGUIInstance();Steve

Maybe you are looking for

  • How do I middle click and close tabs in safari? please help!

    I am used to google chrome and  adapted to use middle clicks to interact with tabs. My friend introduced me to safari and as i am using macbook pro I think using safari should be more compatible. The only thing that is holding me back is closing tabs

  • Creative cloud is empty

    I downloaded Creative Cloud as part of the subscription process. But now it's just an empty box that says Creative Cloud on top. Only option is the Tools button to Help, Pin or Quit. What do I do next so I can see all my applications?

  • Exporting DI batch to BAT and set DI parameter/variable at run time

    Hi All, We are looking to call DI batch job externally and pass parameter/variable at run time. We tried exporting DI batch to a bat file and setting substitution parameters during export. In the exported .bat file, it references a .txt file which sh

  • When I open a file in bridge my files are no longer in numeric order and appear to be scrambled in exposure values

    When I open my files in bridge with CC, the images are no longer in numeric order but scrambled in what appears to be exposure values. When I use the CS5 software the files are fine so that should rule out a hard drive problem. It is a consistent pro

  • How to determine Flash Player version?

    I notice Adobe Flash Player in the activity monitor as active when I view a U-tube video.   How can I determine what version of Flash Player is running?    I am using 10.6.8 and Safari 5.1.1.   I appreciate any help.   Thanks.