Major tree and display issue.........

Hi guys! I am having a problem whereby when I click on a tree node(Folder), I want all the images contained in that folder to be displayed on a JPanel which I created. By the way, the tree and panel are added to a splitpane. Tree on the right, and panel on the left. I will really appreciate it if someone can assist. Thanks a lot in advance!!
Cheers,
Bolo

Hi,
You see this demo, it displays all the images of a selected folder in the tree in the right panel. You can customize the layout of the right panel to suit your need.
Regards,
Pratap
import java.awt.*;
import java.io.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.filechooser.*;
import javax.swing.tree.*;
public class Frame1 extends JFrame implements TreeSelectionListener {
     JSplitPane jSplitPane1 = new JSplitPane();
     JScrollPane jScrollPane1 = new JScrollPane();
     JScrollPane jScrollPane2 = new JScrollPane();
     JTree tree = new JTree();
     JPanel panel = new JPanel();
     String dir = "d://images/";
     private static final FileSystemView fsv = FileSystemView.getFileSystemView();
     FlowLayout flowLayout1 = new FlowLayout();
     public Frame1() {
          try {
               jbInit();
               tree.setModel(new FileTreeModel(dir));
               tree.setCellRenderer(new FileCellRenderer());
               tree.addTreeSelectionListener(this);
          catch(Exception e) {
               e.printStackTrace();
     public void valueChanged(TreeSelectionEvent e) {
          panel.removeAll();
          if (e.getNewLeadSelectionPath() == null){
               panel.repaint();
               return;
          File node = (File)e.getNewLeadSelectionPath().getLastPathComponent();
          if (node.isFile()) {
               panel.repaint();
               return;
          File []images = node.listFiles();
          try {
               for (int i = 0; i < images.length; i++) {
                    String name = images.getName();
                    boolean image = name.endsWith(".gif") || name.endsWith(".jpg") || name.endsWith(".png");
                    if (!image) continue;
                    ImageIcon icon = new ImageIcon(images[i].toURL());
                    panel.add(new JLabel(icon));
               panel.revalidate();
          catch (Exception ex) {
               ex.printStackTrace();
     public static void main(String[] args) {
          Frame1 f = new Frame1();
          f.setSize(400,300);
          f.setLocation(200,200);
          f.show();
     private void jbInit() throws Exception {
          panel.setBackground(Color.white);
          panel.setLayout(flowLayout1);
          flowLayout1.setAlignment(FlowLayout.LEFT);
          this.getContentPane().add(jSplitPane1, BorderLayout.CENTER);
          jSplitPane1.add(jScrollPane1, JSplitPane.LEFT);
          jScrollPane1.getViewport().add(tree, null);
          jSplitPane1.add(jScrollPane2, JSplitPane.RIGHT);
          jScrollPane2.getViewport().add(panel, null);
     public class FileTreeModel extends DefaultTreeModel {
          File root;
          FileTreeModel(String dir)     {
               super(null);
               root = new File(dir);
          public Object getChild(Object parent, int index){
               File p = (File)parent;
               return p.listFiles()[index];
          public int getChildCount(Object parent)     {
               File p = (File)parent;
               return p.listFiles().length;
          public int getIndexOfChild(Object parent, Object child)     {
               File f [] = ((File)parent).listFiles();
               for (int i = 0; i < f.length; i++) {
                    if (f[i] == child) return i;
               return 0;
          public Object getRoot()     {
               return root;
          public boolean isLeaf(Object node){
               return ((File)node).isFile();
     public class FileCellRenderer extends DefaultTreeCellRenderer {
          public Component getTreeCellRendererComponent(JTree tree,
                                                       Object value,
                                                       boolean selected,
                                                       boolean expanded,
                                                       boolean leaf,
                                                       int row,
                                                       boolean hasFocus) {
               super.getTreeCellRendererComponent(tree, value,selected, expanded, leaf, row, hasFocus);
               File f = (File)value;
               setIcon(fsv.getSystemIcon(f));
               setText(f.getName());
               return this;

Similar Messages

  • MacBook Pro Startup and Display Issues

    I've been having some random problems with my MacBook Pro (2.16 GHz, 2 GB RAM, 100 GB 7200 rpm hard drive, ATI Radeon X1600 graphics). Specifically:
    1. Lines across the screen and purple boxes sometimes appear.
    2. The graphic effects (e.g. zooming a window) sometimes get "frozen" on the screen. In other words a remnant from the animation will stay until the window is refreshed.
    3. The Mac sometimes freezes during the startup process. Sometimes the login screen will be unresponsive and other times the Mac will almost bootup but fail when loading startup items.
    4. Less frequently the Mac will freeze randomly. I previously had iStat Menus installed and each time the MacBook Pro froze up it indicated both read and write disk activities.
    Yesterday I decided to wipe the machine clean and start from scratch in case there were a software issue or corruption on the hard drive that was causing my woes. I completely erased my hard drive and even zeroed the entire disk to make sure everything was completely wiped out. I also disconnected all peripherals to simplify things as much as possible.
    The first time I tried the reinstall everything completed successfully but the "Welcome" movie froze part way through. I then had problems running the install again. I was able to boot off the Leopard DVD, but the machine froze a couple of clicks into the install procedure. After numerous tries I was able to erase the hard drive once again and install Leopard. This completed successfully and I installed all updates.
    The problems started to show up again almost immediately, however. I installed iLife and iWork and all the updates and had the computer freeze up on me again during a reboot. I also noticed that the display issues started to show up again even before installing any third-party software.
    I've tried running disk tests with Drive Genius 2.1, but no errors have been reported. I've also used the freeware Rember program to run memory tests but have yet to see any errors. Sometimes my Mac powers up without any problems and once it's powered up it often stays running for days. The display issues appear quite frequently. I've using iStat Menus to keep an eye on the temperature sensors and everything appears to be normal - so it doesn't appear to be temperature related.
    Fortunately the computer's still covered under the extended AppleCare warranty, but I would like to have some idea what's going on before I take it in just in case they're not able to reproduce the issues.
    Any suggestions and insights would be GREATLY appreciated. Thanks in advance for reading my rather long-winded message.
    Cheers,
    Tim

    I took my MacBook Pro in for repair and it turned out to be an issue with the logic board. I had the logic board replaced (fortunately it was covered under my extended AppleCare warranty) and these problems are a thing of the past.

  • Dynamic Tree and TreeNode Issue

    I am using JSC2 (060120) on Win2K pro, exporting the WAR and running in JBoss 4.0.3 running under JDK 1.5.0_04.
    I am trying to dynamically build a tree as the user clicks on nodes and am not having success following the example at http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/sitemaptree.html
    When I attempt to add the child nodes directly to nodes via clickedNode.getChildren().add(myNewNode); I get an error as follows:
    10:17:29,260 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
    javax.faces.el.ReferenceSyntaxException: AP-1030Child.id
    at com.sun.faces.application.ApplicationImpl.checkSyntax(ApplicationImpl.java:749)
    at com.sun.faces.application.ApplicationImpl.createValueBinding(ApplicationImpl.java:291)
    The ID shown AP-1030Child.id does not exist, my to be parent node is named AP-1030 and my to be child is named AP-1030-Bottom.
    The only way I can get the Tree to build properly is to add the to be child (AP-1030-Bottom) to the Tree itself and then assign it's parent as the node (AP-1030). But, the problem I run into then is the next time the parent node (AP-1030) is clicked parent.getChildCount() or parent.getChildren().size() both evaluate to zero and I attempt to build the children for the node at which point the code blows up due to duplicate naming.
    Has anyone else experienced this? Am I doing something wrong?
    Here is the code I use to build my tree initially on the SessionBean...
    for(int i = 0; i < count; i++)
    TreeNode newNode = new TreeNode();
    newNode.setId("AP-" + pages.pageId);
    newNode.setText(pages[i].page);
    newNode.setImageURL("/resources/tree_document.gif");
    MethodBinding nodeMethodBinding = this.getApplication().createMethodBinding("#{MainPage.treeNode_action}", null);
    newNode.setAction(nodeMethodBinding);
    this.applicationPagesTree.getChildren().add(newNode);
    Here is the code I am using to add the child nodes to the clicked node...
         for(int l = 0; l < locationsCount; l++) {                               
              TreeNode locationNode = new TreeNode();
    String sectionText = "";
              (populate sectionText with Top|Left|Center|Right|Bottom based on data)
              locationNode.setText(sectionText);
              // making unique name for this object in the tree: parentname + section
    locationNode.setId(searchID + "-" + sectionText);
    locationNode.setImageURL("/resources/tree_document.gif");
              // bind to method for the page sections click
    MethodBinding nodeMethodBinding = this.getApplication().createMethodBinding("#{MainPage.locationNode_action}", null);           locationNode.setAction(nodeMethodBinding);
              // adding to the base tree object after the parent (why can I just not add to the node?)
              this.treeList.getChildren().add(insertIndex + l, locationNode);
              // this nudges the node over one, otherwise it is peer to the parent (again, why not just add to the parent?)
    locationNode.setParent(node);
    Why is it I can get the String ID from the tree and not the object? Wouldn't it make sense to give me the TreeNode instead of it's ID when calling getCookieSelectedTreeNode()? This would seem a more proper object orientated approach.
    Any help appreciated, thanks.

    Thanks,
    I have tried pretty much that exact same code and it does not work for some reason. That code is the same as the example I showed that I followed originally.
    The only way I can get it to work is as I showed. When I do the node creation and then add to the node in the tree it blows up while rendering with the message from the original post.

  • Major CalDav and Syncing Issues with Ical and Address Book

    As a CEO and business owner - I loved the move over to Mac after the intel chip as installed.  Yet, the issue of working on a Mac for business comes down to the operating system.  Up to Snow Leopard I was very pleased.... since Lion it has gone downhill.   I upgraded to Mountain Lion and many of the issues with speed and problems with mail were addressed.  Yet, it appears Apple has made a bad decision with regard to synciing to other programs.
    I was told it has cut out syncing capablities for Address book and Ical (I assume other programs).  This has caused great issues for The Omni Group, File Maker and Market Cirlce (creators of Daylite) and a lot of angst for me as a business owner!
    To top this off - it appears CalDav is not bi-directional and has issues.  In other words, it does not work as it should. 
    I am not sure what Apple was thining when it stopped allowing internal sync between programs. Yet, CalDav and CardDav are not always the answers!
    I hope the CalDav issues are being cleaned up and if anyone from Apple wishes to comment on this I would appreciate it.  I have tried to talk to support but the powers to be are the ones calling the shots on software design.  Support can't fix what is broken the program.
    Again, I hope Apple revisits syncing.  Maybe the concern is security but it is MY DATA not yours.  I just want the programs to work so I can make sales and support my customers efficiently.   You have made it hard to do this with changes.
    David

    As an IT consultant,  i'm in agreement with Mr Utts.    The promise of "it just works" died with Steve Jobs.   Mac OS has been in freefall since 10.5 .    I need a fully functional OS,  not an iPad on my desk.  ( this means YOU Forstall !! )
    Why break Samba ( a standard ),  why break WebDAV ( a standard ), why break CalDAV ( a standard )??    Apple has done ALL of these things and they seem to be doing it on purpose.
    The Apple "ecosystem" is just fine,  but removing functionality as fast as you can, and removing interoperablity as fast as you can...  if Apple products ONLY work within the ecosystem... people can and will leave Apple.    You've already run off the business users by refusing to make a real Server or real Server software.   You ran off the video user with Final Cut Pro X.   Dumbing down (and breaking) the OS is running off the IT User.
    Mac OS used to easily walk the line of "hard core enough for a Unix Guru,  easy enough for your Mom".  Now they just want the Moms.
    And i disagree,  we are ALL "qualified to say what Apple might do about this...",  they will do nothing.   They don't beleive they have made a mistake.  They beleive WE are the problem by stubbornly insisting that things that used to work should continue to work.

  • Official RDP client for all major platforms and certificate issue only on windows

    We have been fully embracing RDS and remote apps(working great internally). On the four major platforms OSX iOS Android and Windows we are using the official Microsoft application to connect to "Remote Resources" through VPN. Every platform besides
    windows just popped up a certificate error you could accept. The windows client from the windows store was a miserable experience by going to the webpage and installing the certificate into the Trusted Root Certification Authorities. Something no end user
    will be able to achieve.
    Why is the windows experience worse then the other 3 platforms. I am by no means certificate expert. Is this where we purchase an offical certificate and not have this issue? Still doesn't explain the lack of user friendliness on windows compared to the
    other OS'es 

    Hi,
    I understand what you mean.  One thing to keep in mind is that making it as easy as it is on the non-windows clients for end users to simply choose to trust the certificate and proceed is a security risk.  If the end users would contact their admin
    via phone and verify that the thumbprint shown matches the cert thumbprint on the server then it would be okay, but people generally will not do that.
    -TP

  • CCP 2.6 Javascript error and display issues

    Hello ,
    I am atttempting to run CCP2.6 and have tried clearing cache on IE (temp internet/website files, cookies, history) and removed all Java files including trace/log files, chaced apps and applets , and installed apps and applets.Also ran CCP as admin. Essentially followed all guidelines to solution to discussion "CCP 2.5 Javascript Error" but has not resolved issue.
    I still get the error below and the bottom 2/3 of the CCP screen is not displayed/rendered. Content is only rendered within a sliver of entire window size , at top part of the window. It appears as if Java should be rendering content at mid/bottom section of window but never does, although a tempory splash screen does appear as if it is "attempting".
    netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
    at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
    at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:310)
    at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    I am using
    System:
    Windows 7 SP1
    IE10
    java version "1.7.0_21"
    Flash 11.7.700.169
    Looking forward to using the application.
    Please Help!
    Thanks
    Pablo

    Hello ,
    I am atttempting to run CCP2.6 and have tried clearing cache on IE (temp internet/website files, cookies, history) and removed all Java files including trace/log files, chaced apps and applets , and installed apps and applets.Also ran CCP as admin.
    But I still get the error below and the bottom 2/3 of the CCP screen is not displayed/rendered. Content is only rendered within a sliver of entire window size , at top part of the window. It appears as if Java should be rendering content at mid/bottom section of window but never does, although a tempory splash screen does appear as if it is "attempting".
    netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
    at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
    at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:310)
    at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    I am using
    System:
    Windows 7 SP1
    IE10
    java version "1.7.0_21"
    Flash 11.7.700.169
    Looking forward to using the application.
    Please Help!
    Thanks
    Pablo

  • Has the new Early 2013 Retina Macbook Pro still lag and display issues?

    Hello. I've never had a Mac before and I'm thinking of buying the new "early 2013" 15-inch (2.7 Ghz, 16Gb Ram, $2799) Retina Macbook Pro. I live in Argentina but I'm going to NYC in a couple of weeks and I want to get one there. The thing is, that I can not be returning it 2 or 3 times like I read a lot of peple had to, because I'll be coming back home after 2 weeks and here they will only fix it, not replace it for a new one, and that could take months.
    So, I want to know if you guys can help me decide if I should go for it or not, if these image retention and burn in and ui lag issues appear to be fixed with this new model or if it is still the same. If I don't buy this one I'll be getting the new Samsung Series 7 Chronos they showed in CES 2013, still not available in the market. Thanks a lot!

    huevo_gnr wrote:
    I just checked and I have the LG SJA2, too. I didn't notice any Image retention at first, I tested it with the chessboard test for 5 or 6 minutes, it showed no IR. But with 10 minutes I can see a bit of IR. Nothing that can affect the normal use of the computer, I mean I have to put the chessboard for 10 minutes and then change to grey to notice it, but it does exist and is the SJA2 from LG. If it doesn't get worst, I think it doesn't even matter. I just hope it doesn't get worst.
    FWIW, I noticed that until I stopped looking at the chessboard before it switched; my eyes had image retention. But  in that awfully long thread on the subject, some have insisted that if it's an LG, it's trouble so I guess there's no guarantee. (BTW, I was writing this when you tried the test again - ocular image retention?)
    Not to hijack the thread, but shortly after I posted that "good news" about SJA2, my rMBP simply refused to start at all; it was totally inert. Charging, not charging, SMC reset, nothing helped. Tech support's only solution was bring it in to be fixed.
    On a hunch, and remembering something about magnets in the top of the display activating a reed switch in the base, probably near the trackpad, I lifted the front of the Mac about 1/4" inch and let it drop. Bingo! The Mac has operated properly so far. I suspect the reed switch was stuck in the wrong position, and some evidence suggests it was that way out of the box and my fix corrected it.

  • Freezing and display issue

    Dear All,
    I had this imac from 2010. Now it's creating some issues. Daily when i start this Imac, its freeze on gray screen and its also show scrambled display. But after 5 or 6 time immediate power down and on. I am able to use the operating system. It’s a very strange problem after getting heat or something it able for use. I also reset the smc and Pram reset. I don’t think its  operating system problem. Kindly suggest solution which work

    This sounds possibly graphics related and sounds as though you are experiencing kernel panics.
    Please post a copy of your latest kernel panic in your reply. To find the log, open Console application and look under System Diagnostic Reports. The log will start with "kernel_" and end in ".panic". Post the whole panic report in your reply.

  • GPMC Crashing and Display issues.

    Today I went to open the GPMC on my Windows 8 Desktop and after going to edit a policy we have created all the menu items were blank. I could see the icons for them, but they had no name. After trying to navigate for a few moments MMC Crashes and gives me
    this error in event viewer:
    Faulting application name: mmc.exe, version: 6.2.9200.16384, time stamp: 0x5010a074
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505aaa82
    Exception code: 0xc0150010
    Fault offset: 0x0007df5e
    Faulting process id: 0xfc8
    Faulting application start time: 0x01cdb7783eb3c748
    Faulting application path: C:\WINDOWS\SysWOW64\mmc.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Faulting package full name:
    Faulting package-relative application ID:
    with this information afterwords:
    Fault bucket -1088739078, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: mmc.exe
    P2: 6.2.9200.16384
    P3: 5010a074
    P4: ntdll.dll
    P5: 6.2.9200.16420
    P6: 505aaa82
    P7: c0150010
    P8: 0007df5e
    P9:
    P10:
    Attached files:
    C:\Users\pomeroyt\AppData\Local\Temp\WER66CC.tmp.WERInternalMetadata.xml
    C:\Users\pomeroyt\AppData\Local\Temp\WER6C3B.tmp.appcompat.txt
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_mmc.exe_636e6b2f6e27a9c7f7e820f7a0adb57213626294_05c36ce6
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Report Status: 1
    Hashed bucket: 098ebb650f3c851a055c696107776b03
    I'm not really sure where to go from here. Has anyone else had this issue? 
    Were running a 2008 domain. 

    I'm also having this problem. Error text from my system below.  It's a fresh install of Windows 8, joined to our domain and updated. VMWare Tools was installed automaticaly, but not even antivirus aside from that. It seems I can use most of the
    features of the console, I've even succesfully modified a GPO. If I select the comain in the left pane though, guarenteed crash.  I've tried rebooting.
    Anyone make any progress?
    Problem signature:
    Problem Event Name:                       
    APPCRASH
    Application Name:                            
    mmc.exe
    Application Version:                          
    6.2.9200.16496
    Application Timestamp:                    
    50ece2e8
    Fault Module Name:                         
    gpmgmt.dll
    Fault Module Version:                       
    6.2.9200.16518
    Fault Module Timestamp:                 
    510ca9a6
    Exception Code:                                 
    c0000005
    Exception Offset:                               
    0000000000154f4b
    OS Version:                                         
    6.2.9200.2.0.0.256.4
    Locale ID:                                            
    1033
    Additional Information 1:                 
    f5d5
    Additional Information 2:                 
    f5d5f2edea5447000260123656b930b4
    Additional Information 3:                 
    f883
    Additional Information 4:  f883ee6437fb5cbaf147d7c9ea29db21

  • Java and Display Issues in Plus

    Hi everyone
    Please reply whether you have or have not seen any of the following:
    I'm working on a client site where we have some machines working just fine and others are giving corbaserver errors. Copying data from a worksheet into Excel using CTRL-C | CTRL-V does not seem to work for some machines and so they have to use the Copy and Paste buttons. Curiously, when they do this they get an additional empty column whereas on the machines where CTRL-C | CTRL-V works they don't get the blank column.
    The other issue we are seeing is that after a short period of time, Plus stops running the queries automatically. Any change the user makes, such as adding a new item, adding a sort, moving a column position does not take effect until the Refresh button is clicked.
    There is a combination of IE6 and IE7, with all machines being XP with most on SP2 and many on SP3.
    I am suspicious of the XP SP3 when combined with IE7 but would like to know whether anyone else has experienced issues. We are running 10.1.2.3 with CP4 and our Java is Sun 1.6.0_15
    Please reply with either a we are having no problems with this combination or whether you have noticed similar issues. If you have seen issues and got a fix or workaround please let me know. I'm also interested in knowing which combination of Java, Discoverer, operating system and IE works for you.
    Best wishes
    Michael

    Michael,
    Our production server was recently upgraded to 10.1.2.3, CP5 with Java 1.4.2_06. Prior to this upgrade we recommended that users function with I.E. 6.0 and Firefox 2.0. We experienced issues with later browser versions. On my personal workstation I have Windows XP, SP2, I.E. 6.0, Firefox 2.0 and now Java 1.6.0_16. We are now testing the later version of Java on our test OAS. And we are testing out the later browser versions as we speak. The first thing that I would recommend is to add the Java Runtime parameter of -Xmx256M, in the Java Control Panel. I had some session locks prior to my adding this parameter. I am testing access to both servers with Java 6 installed on my workstation. Access to Java 6 performed better after I added the runtime parameters. Access to Java 4 with I.E. gives a warning message and performs very slowly. Mozilla Firefox does to seem to care, no warning and similar performance as Java 6 on the server side. I have not done very much testing with I.E. 7.0 and Firefox 3.0 as of yet with the newer Java version. I am now accessing that environment and it is running very slowly. Part of the issue may be my PC performance but I do not like what I see. Way too slow. This is the browser functionality not the workbook execution time. I added the Java Runtime parameter of
    -Xmx256M and it now performs better.
    I did the Ctrl-C|Ctrl-V with both I.E. and Firefox and did not experience the problem you discribed. I aslo did not encounter the other problems that you reported. We the corbaserver errors in a Discoverer pop-up window, Java Console or OEM session log?
    You may be correct with the SP3 as being at least one of the culprits. I do not have that patch on either workstation so I cannot test for you.
    Jerre

  • PDF preview and display issue : NWDS CE 7.1 SP05+ALD 7.1

    Hi All
    I am creating a webdynpro java application in NWDS 7.1 SP 05. This application has an interactive form ui element. The livecycle designer version is 7.1 and reader versions tried are 8 and 9.
    The issue is that the pdf preview in NWDS is blank and also I am getting blank white space instead of the form when i deploy the application on a browser.
    I have used NWDS 7.1, SP05 + ALD 7.1 combination on another system and there i can see the form in NWDS pdf preview.
    I am completely stuck, please let me know of any way out.
    Thanks
    Lisha

    Hi,
    Try to uninstall adobe life cycle designer and install it onceagain..
    Even we faced some times this problem, but better to use higher version of adobe life cycle designer like 8.0 whiuch will be compatible to your NWDS version...
    Hope this helps you in resolving the problem...
    Regards,
    Saleem

  • PDF preview and display issue : NWDS 7.1 SP05 + ALD 7.1

    Hi All
    I am creating a webdynpro java application in NWDS 7.1 SP 05. This application has an interactive form ui element. The livecycle designer version is 7.1 and reader versions tried are 8 and 9.
    The issue is that the pdf preview in NWDS is blank and also I am getting blank white space instead of the form when i deploy the application on a browser.
    I have used NWDS 7.1, SP05 + ALD 7.1 combination on another system and there i can see the form in NWDS pdf preview.
    I am completely stuck, please let me know of any way out.
    Thanks
    Lisha

    I can't give a specific response, but if possible, upgrade to LCD 8.0 - it is much smoother to use than 7.1.
    I almost pulled out all my hair working with 7.1

  • Linux installation and display issues

    PROBLEM:
    During installation, the following error occurs:
    No Java virtual machine could be found from your PATH
    environment variable. You must install a VM prior to
    running this program.
    RESOLUTION:
    Install Java 1.5 and make sure that it's in your PATH environment. To
    doublecheck that Java 1.5, simply
    type 'java -version'.
    PROBLEM:
    When opening any display view, the following error occurs and nothing shows
    up:
    ERROR GuardianApplication [main] : Registry does not exist, creating
    default registry
    Unhandled event loop exception
    Reason:
    No more handles (java.lang.UnsatisfiedLinkError:
    /<GUARDIAN_INSTALL_DIR>/configuration/
    org.eclipse.osgi/bundles/72/1/.cp/libswt-mozilla-gtk-3139.so: libstdc++.so.5:
    cannot open shared
    object file: No such file or directory)
    RESOLUTION:
    Add your browser's library dependencies by editing the /etc/ld.so.conf and
    add /<PATH>/firefox or /
    <PATH>/mozilla directory.
    Example: /usr/lib/firefox-1.5.0.7
    Make sure that the path to firefox or mozilla contains the
    /usr/lib/firefox-1.5.0.7/libxpcom.so. After
    that, run ldconfig command to update your library.
    Install compat-libstdc++-33 library. For Fedora users, simply type: "yum
    install compat-libstdc+
    +-33.i386" as root. Relaunch Guardian.

    I am really interested on comments. Anyway check also those sites about Linux on Toshiba notebooks:
    http://linux.toshiba-dme.co.jp/linux/index.htm
    http://newsletter.toshiba-tro.de/main/index.html

  • CK 15 W Contacts and Display issues (Lousy Product...

    Why does the CK 15w only read the Last Name of contacts, yet the N73 searches on both
    Even thought the contacts are stored as Firstname lastname is "File As" field.
    And..
    Why does it not display SSI, Battwery and Operator name when it apparently should (really useful out here in Australia - mind you though the N73 display the Location data from more than 3 weeks ago.... when it displays irt, whcih is very very rare. and when it does, it disappears in a microsecond when bluetooth is activated
    And....
    Why does the CK 15W - Professionally installed, (and checked by myself a certified avionics engineer who knows ground, 12v and ignition sense from day 1 of electronics 101) contanstly lose memory overnight, but can retain memory for half an hour when unplugged for long enough when trying to clear the memory by power off.
    And ....... the car kits frequenjtly re-sets when on a call
    And ...........the phone frequently locks up when doing almost anything
    And ............... the bookmarks don't sync to anywhere that can be seen on the PC or the phone, apart from the nokia ones
    Whatever happened to QA process for software?
    I thyink that stopped back in the days of the 7110 slide phone. every phone since then has needed updates.

    gone
    Message Edited by AGoodSolution on 08-11-2009 12:45 PM
    Don't just sit there, take a second and use the Kudo's button to compliment the people who help you.

  • Icon info doesn't update, and display issues

    On my desktop I have my icons set to show information such as drivespace under them. When I empty the trashcan the information doesn't update on the icon, but it does in the finder (finder shows 12gigs, but icon still says 3.4gigs). Is this a common bug or is does it not do this on anyone elses computer?
    Also I'm running an external display and sometimes I notice that my primary display looks really bright, when I try to change the color profile it says something about not being able to find the primary display or something like that. This only happens once in a while when I have my external display plugged in. I was running the ATI drivers, but I think the last apple update replaced them with the Apple drivers.
    Any help or comments are appreciated

    you specified the delay for timer"1000" but not the repeat amount.
    your if statement will only run once unless you put it inside the onTimer function.
    the new Date() statement sould be outside the onTimer function

Maybe you are looking for

  • Audiobook bookmarks no longer work?

    My iPod classic (2014 model) won't remember my place in audiobooks.  Always did before on my old (2009) iPod.  What happened?

  • What causes areas to be grayed out when viewing in Acrobat 9?

    What causes text to be grayed out when viewing in Acrobat 9? Douments which were fine in Acrobat 9 suddenly have areas blacked or grayed out.  The same thing happens if opened in Acrobet Reader.  Is there a setting that causes this.

  • Maximize.... Frustration

    Ok, I have been a Mac user for a long time, and I know that the green + button resizes the window... but... here is what really grinds my gears... Why doesn't it, when toggled, force the window to fit the screen. People say, size the window first the

  • Limiting the hit list

    Hi all, I’m writing a pricing report which has a field condition type on the selection screen. I want to limit the hit list of this field to merely display the condition types with usage A, application M when user clicks F4. What should I do? Should

  • GetXMLString java.lang.OutOfMemoryError

    Hello, I am trying to get data from tables and save this information in XML files. I am using XML SQL utility into a Java program. The problem is that I have a big table with a LONG data type and when the program try to get the data it shows an error