JCheckBox used in a JTree Displaying Wrong

I have a class that creates a JTree and sets the node to a JCheckBox. The checkboxes appear fine except for the fact that instead of the JCheckBoX name appearing next to the actual checkbox the JCheckBox values appear instead. I found a topic in the the forum that touches this problem but gives no solution.
If someone could tell me what i am doing wrong that would be great! Any help would be appreciated. My class is posted below......
package rateformapplet;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.event.*;
import java.util.ArrayList;
import java.util.EventObject;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.*;
public class TreeSections extends JPanel implements TreeSelectionListener
  DefaultMutableTreeNode mainSection = null;
  private JTree jt;
  public TreeSections(Object[][] ro)
    DefaultMutableTreeNode top = new DefaultMutableTreeNode("Select The Main Section then Applicable Sub Section(s)");
    createNodes(top,ro); //setup the tree nodes
    //setup Tree values
    jt = new JTree(top);
    jt.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    jt.setSize(300,200);
    jt.setShowsRootHandles(true);
    JScrollPane treeView = new JScrollPane(jt);
    this.add(treeView);
    this.setVisible(true);
    TreeCR cr = new TreeCR();
    jt.setEditable(true);
    jt.setCellRenderer(cr);
  }//end constructor
  //below is a method of the TreeCellRenderClass
  class TreeCR implements TreeCellRenderer
  public Component getTreeCellRendererComponent(JTree tree,Object obj1,
                                                boolean isSelected, boolean expanded,
                                                boolean leaf, int row, boolean hasFocus)
    DefaultMutableTreeNode temp = (DefaultMutableTreeNode) obj1;
    //JCheckBox temp2=(JCheckBox)temp.getUserObject();
    JCheckBox x = new JCheckBox(temp.getUserObject().toString());
    return x;
  }//public Component getTreeCellRendererComponent(JTree...........
  private void createNodes(DefaultMutableTreeNode top, Object[][] sections)
    //DefaultMutableTreeNode mainSection = null;
    DefaultMutableTreeNode subSection = null;
    for (int c = 0; c < sections.length; c++)
      mainSection = new DefaultMutableTreeNode(new JCheckBox(sections[c][0].toString()),true);
      top.add(mainSection);
      for (int p = 0; p < sections[c].length; p++)
        subSection = new DefaultMutableTreeNode(new JCheckBox(sections[c][p].toString()),true);
        mainSection.add(subSection);
  }//end create node
}//end class TreeSectionsThanks in advance
Chris

Perhaps this will help somebody.
When you fill in the nodes (in createNodes), it is not necessary to provide a JCheckBox for each one; just an object whose toString() method will provide the text to the nodes.
When rendering each cell, set the corresponding text to the JCheckBox.
I rewrite the TreeCR class and createNode method of the above example, taking this into account:
  class TreeCR implements TreeCellRenderer
    private checkBox = new JCheckBox();
    public Component getTreeCellRendererComponent(JTree tree, Object value,
                                                  boolean isSelected, boolean expanded,
                                                  boolean leaf, int row, boolean hasFocus)
      DefaultMutableTreeNode node = (DefaultMutableTreeNode)value;
      checkBox.setText(node.getUserObject().toString());
      checkBox.setSelected(isSelected);
      return checkBox;
  private void createNodes(DefaultMutableTreeNode top, Object[][] sections)
    DefaultMutableTreeNode mainSection = null;
    DefaultMutableTreeNode subSection = null;
    for (int c = 0; c < sections.length; c++)
      mainSection = new DefaultMutableTreeNode(sections[c][0]);  // without JCheckBox
      top.add(mainSection);
      for (int p = 0; p < sections[c].length; p++)
        subSection = new DefaultMutableTreeNode(sections[c][p]); // without JCheckBox
        mainSection.add(subSection);
  }//end create node

Similar Messages

  • Best way to configure Photoshop workflow settings when source photos are shot in AdobeRGB, edited using a wide gamut display, and output to sRGB?

    Being able to quickly produce finished photos is of importance with the majority of my photography work. Therefore I shoot, process, and deliver JPEG files. For this time sensitive workflow there is no benefit to my clients by my shooting RAW. I do want to be able to accommodate any possible future uses of the photos, so I shoot using the Adobe RGB color space. The output for my clients are JPEG images for use on the Web, therefore sRGB. I currently used a wide gamut display (NEC PA302W) with a 24-bit graphics card. (I plan on upgrading to a 30-bit card sometime in the future.)
    I've noticed that in Internet Explorer the reds in my finished photos are overly intense on my display. My photos look fine in other web browsers on my display. This situation has me concerned as I do not know exactly why it is happening since my photos have the sRBG color profile embedded and IE supports embedded color profiles. If anything, I would think the reds would be overly intense in other applications that do not support embedded color profiles.
    Please let me know if my workflow can be improved, outside of shooting RAW and using a 30-bit display:
    Shoot JPEG photos in Adobe RBG color space
    Edit photos in Photoshop using wide gamut display, 24-bit
    Color Settings: Monitor Color (Monitor RGB -  PA302W, calibrated)
    Save for Web, JPEG, Embed Color Profile, Convert to sRGB
    While working in Photoshop the reds appear fine. When saving for the Web and previewing 'Monitor Color' the reds are intense, when previewing 'Internet Standard RGB (No Color Management)' the reds appear fine. The final saved images look fine with the exception of when displayed in IE, which supports embedded color profiles- Color Management.

    You're rapidly making a mess out of this. Stop, sit back, and stop thinking there's a "problem" to "fix". There isn't - you just need to use software that is color managed. That disqualifies IE right off. Stop using it, throw it away. It's useless with wide gamut displays. Use Firefox, which has proper color management.
    OK. Save For Web in sRGB, embed profile. So far so good. But:
    Don't ! set your working space to Monitor Color!. That turns off display color management which is the very last thing you want with a wide gamut monitor. You could sort of get away with that with a standard gamut monitor, because it's not all that different from sRGB anyway. So you wouldn't notice the difference (but it's there). The fact that your Adobe RGB files look right in Photoshop is purely coincidental. Any other profile will look wrong.
    With a wide gamut display you absolutely and unconditionally need a fully color managed pipeline. That means 1. an embedded document profile, 2. a valid display profile (Spectraview or other calibrator), and 3. an application that reads both profiles and does the conversion from one to the other as the image is sent to the display.
    See, it's not just the document profile. That's half of it. The other half is the display profile. IE doesn't use the display profile, instead substituting sRGB. And that's very wrong with that monitor. Firefox is fully color managed if there is an embedded document profile. But it can be configured to color manage even if the image is untagged (and a lot of material on the web is untagged). It does this by assigning sRGB to the image.
    To configure this - and you really need that with a wide gamut monitor - type "about:config" without the quotes in the address bar and hit reload. Scroll down to gfx.color_management.mode, and change it from 2 to 1. Relaunch. All web material will now appear correctly regardless.

  • Images are displayed wrong in firefox

    Hello!
    I am a photographer, uploading images in png to my gallery at deviantart.com. I noticed that the images are displayed wrongly in firefox - but in IE9 and Opera they are shown correctly. I have tried with different color management settings in about:config but none of that has solved the problem. I would like to know why it is that firefox can't show the colours correctly, like opera and IE?
    If it's impossible to fix I will just simply have to stop using firefox which would be a shame when I have been using the browser for many years. The problem has not existed earlier.
    Best regards

    http://kasperarts.deviantart.com/gallery/#/d2to4iq
    That image for instance. And I save them using Adobe RGB since thtat's the colour space I work in, but this has never been a problem before.

  • Fonts display wrong in Final Cut Pro

    One of the other editors in the office put together this piece and now I am making some changes to it on my machine. We're using the font "Baskerville" a common font that comes on the computer, and it is showing up correctly in the Font Book, but it is not showing up correctly in Final Cut Pro.
    There should be other options like regular, bold, semiBold etc, but there's only bold, italic, and bold italic.
    The other strange part is that when I first opened it on my computer it displayed wrong, and I tried reinstalling the fonts, and then it worked fine. I tried reinstalling the font again but it didn't help. I also tried restarting and that didn't help either. I checked in the Library > Fonts folder as well as the fonts folder under my user and the fonts match.
    Any suggestions as to what I could do?

    As far as I remember, Final Cut has always had this issue....
    I believe it has something to do with Final Cut only reading True Type (not Post script) fonts.
    That's why I only use Text for simple things like legals. For all other text uses, I use Photoshop...

  • Bug report : Navigator display wrong messages in package body

    Just run some code , you can see the Navigator display wrong messages in the package body,but the package work fine in sqlplus / toad or other tools.
    create or replace package SIMPLE AS
    Procedure simple_proc ;
    END;
    create or replace package body SIMPLE AS
    Procedure simple_proc
    IS
    v_tname varchar2(100);
    begin
    SELECT PERCENTILE_disc(0.5) WITHIN GROUP (ORDER BY tabtype DESC)
              INTO v_tname
              FROM tab;
    END simple_proc;
    END;
    Then open the package body in the Navigator (Connection Pane==> Connection Name ==> Packages ==> Simple Body ) , and show the error message:
    Unexpected token
    Missing Expression
    But if I just create the procedure out of the package , it work fine.
    CREATE OR REPLACE
    Procedure simple_proc
    IS
    v_tname varchar2(100);
    begin
    SELECT PERCENTILE_disc(0.5) WITHIN GROUP (ORDER BY tabtype DESC)
              INTO v_tname
              FROM tab;
    END simple_proc;
    /

    This has already been discussed a number of times (see http://forums.oracle.com/forums/search.jspa?objID=f260&q=Unexpected+token).
    As I understand it, it is related to the parser that SQL Developer is using to display the package decomposition in the navigator not coping with the full PL/SQL and SQL syntax (largely analytical functions from memory).

  • CMFCToolbar and CMFCMenubar displaying wrong tooltips

    Quastion asked also on
    http://stackoverflow.com/questions/29800791/cmfctoolbar-and-cmfcmenubar-displaying-wrong-tooltips
    Hello.
    I am using Visual Studio 2010, but I suspect the bug is still present on the 2013 version, as I compared the winfrm.cpp file and the OnToolTipText are exactly equal on the two files.
    The bug is happening always at the 7th, 8th or 16th element.
    Although separators count as elements for this counting, the tooltips do not appear over them.
    Element can be a textual MENUITEM, a POPUP menu or toolbar button.
    The string table defines are:
        #define IDS_SEVEN            7
        #define IDS_EIGHT            8
        #define IDS_NINE             9
        #define IDS_TEN             10
        #define IDS_ELEVEN          11
        #define IDS_TWELVE          12
        #define IDS_THIRTEEN        13
        #define IDS_FOURTEEN        14
        #define IDS_FIFTEEN         15
        #define IDS_SIXTEEN         16
    and the STRINGTABLE contents are:
        IDS_SEVEN           "Seven"
        IDS_EIGHT           "Eight"
        IDS_NINE            "Nine"
        IDS_TEN             "Ten"
        IDS_ELEVEN          "Eleven"
        IDS_TWELVE          "Twelve"
        IDS_THIRTEEN        "Thirteen"
        IDS_FOURTEEN        "Fourteen"
        IDS_FIFTEEN         "Fifteen"
        IDS_SIXTEEN         "Sixteen"
    So, when I hover with the mouse pointer the 7th, 8th or 16th element I get WRONGLY a tooltip displaying the string with that ID (Example:7th element displays "Seven").
    It happens with all my toolbars and all my menus with a sufficient number of items, including in the toplevel horizontal menubar.
    I discovered that the guilty function is:
    BOOL CFrameWnd::OnToolTipText(UINT, NMHDR* pNMHDR, LRESULT* pResult)
    as the nID local variable does not get the ABSOLUTE ID of the Command, but the POSITIONAL order of the button, starting with 1 instead of 0.
    If I would move the strings IDs out of that range, whenever a user wants to add new strings, the Visual Studio Resource Editor would see that space free and use it, filling it again. And the problem would happen again. So, it is not a valid solution.
    I could also define strings for all commands. But as we are maintaining four TFS branches at the same time and the change needs to go to all branches, this change would be potentially very dangerous when doing merges after.
    So, please what solution do you recommend to not display those stupid tooltips?
    UPDATE: I didn't copy the string table exactly as it was. It was like this:
        IDS_SEVEN           "Seven\nSeven"
        IDS_EIGHT           "Eight\nEight"
        IDS_NINE            "Nine"
        IDS_TEN             "Ten"
        IDS_ELEVEN          "Eleven"
        IDS_TWELVE          "Twelve"
        IDS_THIRTEEN        "Thirteen"
        IDS_FOURTEEN        "Fourteen"
        IDS_FIFTEEN         "Fifteen"
        IDS_SIXTEEN         "Sixteen\nSixteen"

    In the update I put a stringtable more similar to the one I had. I had not noticed before a common feature of 7, 8 and 16 th strings: they all had '\n' characters in their contents.
    I think nobody will create a menu with more than 512 menuitems nor toolbars with more than 512 buttons, so my solution was to change all strings containing '\n' characters with an ID below 512 to numbers above 512.
    And it works.

  • When using facetime it only displays a picture and cannot view myself talking

    when using facetime it only displays a picture and cannot view myself talking. i can call out but the other person cannot view me. what am i doing wrong? how can i fix this?

    See:
    * [[Images or animations do not show]]
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Using Two Minotors with Display Spanning Monitors

    I'm interested exploring the option of using two monitors to display apps such as: Aperture, CS2 Photoshop (used as the external editor to Aperture), FinalCut Express and iMovie. My G5's video card will handle two monitors so that shouldn't be a problem. But was wondering how the spanning of the video display between two monitors works for these apps and if this is an efficient workflow?
    I have an Apple 20" Cinema Display and wish I had purchased a bigger monitor. However a Windows friend insists two monitors that span the application display accross both monitors is more efficient than a larger monitor. Two 20" monitors certainly would have more screen "real estate" than a single 23" monitor but I don't know how well a dual monitor set up would actually work!
    Interested in your experience here!
    Thanks!

    Hello Sven
    The only issue with dual monitors is not having them once you've had them!!! It is very addictive and very very productive..
    Having used monitors of odd sizes and now have two the same size, I would strongly suggest having two the same size!!
    Steps in the use of
    1. Level the two tops of the monitors slightly above eye height
    2. Put the monitors in a very slight arc
    3. Now sit slightly in front of one (just off centre), this is your main monitor. Your work window with the menu at the top.
    4. Now move all the junk to the second window, toolbars, palettes email RSS newsgroups and so on..
    You now can glance at the second monitor WITHOUT moving your head and this is where time is saved. As you get used to the same items being in the same place I can seem to change things from my peripheral vision.. Now your flying !!
    So to run two applications dependently eg a picture in photoshop from Aperture. Aperture in the main window and Photoshop in the other with all the junk!!
    I have also sat for long periods at a friends 32" and get terrible neck ache, your always sat/looking in wrong the place
    Good luck, any more questions fire away..
    Miles

  • When combine multiple PDFs into one, some letters are missing and display wrong letter

    Hi all. I get a problem with combine multiple PDFs into a single PDF document. There are some PDF documents and they are working fine to open each document separately. But after I use Adobe Acrobat 8 Standard to combine them into one, some letters are missing and some display wrong letter (e.g. "forums" display "fo ums"). Our company has Adobe Acrobat 8 Standard, Adobe Acrobat 7 Professional and Standard. But all of them have some problem. Does anyone have idea for that? Please help me! Thanks very much!

    I have a similar situation, but my PDFs look fine in Acrobat Pro 8,Acrobat Reader 8, and Apple preview, but are missing letters in Acrobat Pro 7. I think it stems from the files being combined all having the same font, but each having a unique subset stored in the respective files, but with the same name (and ID?), and when they are combined, the character sets are getting hosed somehow.

  • [SOLVED] Arch displays wrong time - 2 hours forward

    Hi.
    After package upgrade today and reboot, my clock displays wrong time - it's going 2 hours too fast.
    I didn't changed anything in rc.conf. BIOS clock is fine.
    I us localtime, timezone: Europe/Warsaw.
    How can I repair it?
    EDIT: I just used date to re-adjust my clock.
    Last edited by weakhead (2009-08-26 13:37:59)

    Same Problem, solved by setting "localtime" instead of "local" in rc.conf.
    I don't know what changed because it worked before. Maybe an update in scripts that did recognize "local" but doesn't anymore ?
    ++ B.
    EDIT : [2009-08-24 13:37] upgraded initscripts (2009.07-3 -> 2009.08-1) that may be caused by that initscripts update !
    EDIT 2 : It is the initscripts, I did not see I had a pacnew rc.conf
    Last edited by maxi_jac (2009-08-28 09:59:56)

  • Lyrics display wrong code

    When I use the software 'Tag&Rename3.2" or iTunes to edit lyrics(use ANSI or Unicode Code),the lyrics can display correctly in iTunes,but on the nano it display wrong code.I think the reason maybe the lyrics code is ansi code,but when I change it into unicode to paste into iTunes,and it can't display correcly on nano either.How can I do?
    iPod nano 4GB Black   Windows XP Pro   OS and iTunes 6 are Simflied Chinese(PRC)
      Windows XP Pro  

    this is an easy way for lyrics,
    first, find the lyrics on google.
    second copy and paste them into the lyics tab
    third click done.
    you dont really need a program for it and its much easier this way,
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • Lookout displays wrong graphics

    Lookout 4.5.1 (18 & 19) sometimes
    displays wrong graphics upon
    opening a process.
    For example it can display 'knifeup'
    instead of cumstom .bmp or standard
    switches pictures instead of custom
    ones, etc.
    At the same time .lks is OK.
    I have Win98 system running on HP Omnibook XE3
    Notebook.
    Did anyone experienced the same
    unpredictable Lookout behavior?
    Sergei

    Tommy,
    Obviously you got the NI advise on
    not using nested aggregates at the
    time they were investigating the problem.
    Meantime I got a couple of similar replies
    from NI as well.
    Finally when I asked them to tell me if I can
    expect the fix in near future (my project was
    at high risk because I noticed the bug too late),
    they sent me lkworks.dll for testing.
    It all works fine now. I must admit that
    NI 'saved' our project (we successfully launched it
    at our plant last week).
    I can send you the fix so you could test
    it with your project. It would be interesting
    to compare our results.
    Please let me have your email so I could
    send you the file.
    Best regards,
    Sergei
    tommy_scharmann wrote:
    > Sergi,
    >
    > I would like to know who you spoke with at
    NI. It was very clearly
    > told to me via the NI help line that nested aggregates are not to be
    > used with Lookout and that if you use nested aggregates you will get
    > unexpected behaviors. Unexpected behaviors included the graphics
    > issues, amongst other things, that were not made clear to me. I was
    > explicitly told that the help file mention of nested aggregates is
    > erroneous!
    >
    > Please help me to get to the bottom of this issue.
    >
    > Regards,
    > Tommy Scharmann
    >

  • Websites Display Wrong

    Not all but some websites are displaying wrong. This happens with other browsers also and it is also happening to me on the itunes store. Instead of seeing the webpage content on the page like it is normally seen, I see text running down the left side of the screen on the page. Most images are not there, but some are. Here is a little portion of what I see from MSN's website:
    Bing: Track Storm Alex | Bing: US obesity rates still rising
    News
    Health News
    Local News
    MSNBC TV
    Politics
    Tech & Science
    Today Show
    US News
    Video
    Weather
    World News
    Entertainment
    Celebrities
    Comedy
    Entertainment News
    Games
    Movies
    Music
    New on DVD
    TV
    Video
    Sports
    Golf
    MLB
    What do I need to do to fix this? I can't figure it out! I have tried changing the viewing setting and it doesn't work. Please help!

    HI and welcome to Apple Discussions...
    First, make sure Safari isn't running in Rosetta. Right or control click the Safari icon in your Applications folder then click Get Info. In the Get Info window click the black disclosure triangle so it faces down. Where you see Open using Rosetta... make sure that is NOT selected.
    Relaunch Safari. See if that made a difference, if not...
    From the Safari Menu Bar, click Safari / Reset Safari. Select the top 5 buttons and click Reset. Relaunch Safari. if that didn't help, try troubleshooting the Safari .plist file.
    Go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop.
    Relaunch Safari and see if that makes a difference. If not, move the .plist file back to the Preferences folder. If Safari functions as it should, move that .plist file to the Trash.
    And repair disk permissions...
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    If nothing above has helped, go to ~/LIbrary/Caches/com.apple.Safari and move the "cache.db" file to the Trash. Relaunch Safari. ~ (Tilde) represents your Home Folder.
    Carolyn

  • Keyboard displays wrong character

    Hi,
             my notebook keyboard displays wrong character . MY keyboard language setting is correct .I have tried many solution but none of them works for me. also when i press some key it automatically goes to vairous section of my window.  what is the solution of it.??  thanks.

    @sraban 
    Have you tried a system restore to a point before the problem occured? That can help if there has since been a driver , update or other software installed, either by you, automatically, or by accident, that is the source of the problem.
    Using Microsoft System Restore (Windows 7)
    Here is the driver page for your notebook:  HP Pavilion 15-e034tx Notebook PC Drivers
    Did you try the things in that keyboard troubleshooting page I posted, and if so did you see any change or notice any errors?
    Also, for your convenience, see the: HP Pavilion 15 Notebook PC Maintenance and Service Guide
    With that you can find the part numbers and see instructions on how to remove or replace the keyboard if it is defective. Those same instructions can also help with cleaning.
    Let me know if that helps at all.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • I can no longer read my bank statements. I believe they are using a PDF to display this information.

    I can no longer read my bank statements. I believe they are using a PDF to display this information. If I go to chrome it will open the bank statements but Firefox no longer open these flies. Why??????

    It's very unusual to get no results for PDF in the Application preferences list. It's possible that the file which stores those preferences might have become corrupted. Perhaps it would be best to rename or delete the file and let Firefox re-create it.
    Here's how:
    Open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > "Show Folder" button
    Switch back to Firefox and Exit
    Pause while Firefox finishes its cleanup, then rename '''mimeTypes.rdf''' to something like mimeTypes.old
    Restart Firefox. After things setting down, check the Application preferences again to see whether PDF is listed and then set the drop-down on the right side to the desired action.
    orange Firefox button or classic Tools menu > Options > Applications
    Does that work any better?

Maybe you are looking for

  • How do I download Photoshop to a Surface Pro 3?

    I have purchased Photoshop Elements 13, how do I install it on my Surface Pro 3 with no CD ROM

  • Java Plug-in 1.4 not working with IE5.5

    Hi All, I got problem loading a simple java class to IE5 using java plug-in JRE 1.4.0 beta 2. The error message is following: However, it works fine when I open the html page directly in the browser( i.e. use file:// instead of http://) I'm using IE

  • 'The font 'Arial-BoldMT' contains bad /Widths' message

    I have created a rather extensive form using Acrobat 5.0. After creating the form, I was reading online about the new feature in Acrobat 9 that offers the ability to allow Adobe Reader users to save a copy of a filled-in form. This was very appealing

  • Photoshop cs3 and setting grid off - to never come on, unless I want it on.. How?

    HI .. I am so annoyed with CS3 I cant figure out how to keep the grid off.. for good.. every time i restart photoshop and open images the grid is on! yes i know how to hide it once it is open, and i know that once it is hidden on the first image all

  • Temporary Internet Files Folder

    Ok, here's the problem... It appears that Oracle Portal's SSO framework generates HTML that posts the user id and password for an External Application from the client machine. The problem is the HTML is cached in the Temporary Internet Files folder.