Problem in Painting in JDesktopPane

Hi
Here is the code for my class:
public class DiagramPane extends JDesktopPane{
public DiagramPane() {
setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
public void paint(Graphics g){
super.paint(g);
int cmpCount=getComponentCount();
if(cmpCount>1){
for(int i=0;i<cmpCount-1;i++){
Component cmp1=getComponent(i);
Component cmp2=getComponent(i+1);
g.drawLine(cmp1.getX(),cmp1.getY(),cmp2.getX(),cmp2.getY());
public static void main(String[] s){
JFrame f=new JFrame();
DiagramPane dgrPane= new DiagramPane();
JScrollPane scr=new JScrollPane(dgrPane);
JInternalFrame lst1=new JInternalFrame("Frame1");
JInternalFrame lst2=new JInternalFrame("Frame2");
lst1.setBounds(150,150,100,100);
lst2.setBounds(300,300,100,100);
lst1.show();
lst2.show();
f.getContentPane().add(scr);
dgrPane.add(lst1);
dgrPane.add(lst2);
f.setSize(400,400);
f.show();
Run this code and try to move any of the two InternalFrames. The lines need to be repainted accurately but this doesn't happen. This happens due to background filling of dirty region in JLayeredPane paint method. Can anyone tell me, what I should do so as to make these lines repaint properly. Lines are not in dirty region.
Thanks in advance.
Anil.

You need your own DesktopManager that triggers a repaint after dragging ends, like:
class MyDesktopManager extends DefaultDesktopManager {
public void endDraggingFrame(JComponent comp) {
     super.endDraggingFrame(comp);
     repaint();
then use it in your custom DesktopPane
public DiagramPane() {
setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
setDesktopManager(new MyDesktopManager());
Greetings
Jeanette

Similar Messages

  • SwingUtilities.paintComponent - problems with painting childs of components

    Maybe this question was mention already but i cant find any answer...
    Thats what could be found in API about method paintComponent in SwingUtilities:
    Paints a component c on an arbitrary graphics g in the specified rectangle, specifying the rectangle's upper left corner and size. The component is reparented to a private container (whose parent becomes p) which prevents c.validate() and c.repaint() calls from propagating up the tree. The intermediate container has no other effect.
    The component should either descend from JComponent or be another kind of lightweight component. A lightweight component is one whose "lightweight" property (returned by the Component isLightweight method) is true. If the Component is not lightweight, bad things map happen: crashes, exceptions, painting problems...
    So this method perfectly works for simple Java components like JButton / JCheckbox e.t.c.
    But there are problems with painting JScrollBar / JScrollPane (only background of this component appears).
    I tried to understand why this happens and i think the answer is that it has child components that does not draw at all using SwingUtilities.paintComponent()
    (JScrollBar got at least 2 childs - 2 buttons on its both sides for scroll)
    Only parent component appears on graphics - and thats why i see only gray background of scrollbar
    So is there any way to draw something like panel with a few components on it if i have some Graphics2D to paint on and component itself?
    Simple example with JScrollPane:
    JScrollPane pane = new JScrollPane(new JLabel("TEST"));
    pane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    pane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    SwingUtilities.paintComponent(g2d, pane, new JPanel(), 0, 0, 200, 200);Edited by: mgarin on Aug 11, 2008 7:48 AM

    Well the thing you advised could work... but this wont be effective, because i call repaint of the area, where Components painted, very often..
    So it will lag like hell when i make 10-20 repaints in a second... (for e.g. when i drag anything i need mass repainting of the area)
    Isnt there any more optimal way to do painting of the sub-components?
    As i understand when any component (even complicated with childs) paints in swing - its paint method calls its child components paint() to show them... can this thing be reproduced to paint such components as JScrollPane?

  • Problem with JPanel and JDesktopPane

    Hi,
    I am having a problem with my app and I wonder if someone can see what I am doing wrong. I have a class that extends JFrame that holds a centered JPanel to draw on. There are also 3-4 other JInternalFrames that are in use.
    From what I have read to use JDesktopPane to organize the JInternalFrames, all you do is add the JInternalFrames to the JDesktopPane and setContentPane to be the JdesktopPane:
            Jpanel panel = new JPanel();
            JDesktopPane dm = new JDesktopPane();
            setContentPane(dm);
            dm.add(panel, BorderLayout.CENTER);
            dm.add(internalFrame1);
            dm.add(internalFrame2);
            dm.add(internalFrame3);But as soon as I add the panel to the JDesktopPane then my JPanel doesnt show up. As I had it before I was adding the panel to the content pane of the Jframe, and adding the JinternalFrames to the layeredPane like this:
            getContentPane().add(panel, BorderLayout.CENTER);
            lp = getLayeredPane();
            lp.add(internalFrame1);
            lp.add(internalFrame2);
            lp.add(internalFrame3);and this worked but the JInternalFrames behaved badly, not getting focus or moving to the top frame when clicked, which I guess is what JDesktopPane is supposed to do. But how do I get my original JPanel in my JFrame to show up when added to the JDesktopPanel?
    Am I missing something here?
    Thanks,
    Paul

    Thanks for your response. I will try that when I get home, although I will be surprised if that works because I am already using setPreferredSize() . It seemed to me that once a Jframe's content pane gets assigned to a JDesktopPane, then the JPanel no longer has anywhere to draw itself, as according to the Sun documentation, you can only add a JInternalFrame to a JDesktopPane.
    So I am thinking its not possible to have a JPanel as the content pane of a JFrame while having a JDesktopPane containing my JInternalFrames. Is this indeed the case?
    Thanks,
    Paul

  • Problem with painting/threads/ProgressMonitor

    Hello,
    I'll try to be clear, ask me anything if it isn't. I have two threads, one that downloads some selected webpages, and the other that reads them. In the thread that reads, there is a ProgressMonitor object, which indicate how many webpages have been read.
    I created a JUnit test which works as expected. One thread downloads, the other reads and a nice little progress monitor appears and everything works.
    I transfered the code (the part of the code starting the thread that reads, which starts the thread that downloads) into the main application. The threads are working and the ProgressMonitor appears, but it does not draw the components (there is no label, progress bar, button etc...). I can't seem to find the problem. I think it is caused by the threads or synchronized methods, I am not sure as I am no expert with threads. Once the threads have finished running, the components of the ProgressMonitor appears. So I guess that the threads are blocking the (re)painting of the application, but I can't figure why. Im using Thread.yield() quite often. Priorities problem ? Here some parts of the code :
    JUnit Test code :
         public synchronized void testHarvest() {
              JFrame frame = new JFrame("Super");
              frame.setVisible(true);
              Harvester harvester = new Harvester(
                        frame,
                        new Rule());
              Thread harvest = new Thread(harvester);
              harvest.start();
              try {
                   harvest.join();
              } catch (InterruptedException ie) {}
    ...Main application :
    Code:
    public class Gui extends JFrame implements ComponentListener {
       private static JFrame mMotherFrame = null;
        public Gui() {
            mMotherFrame = this;
        private class GuiActionRealize {
              public synchronized void getFromWeb() {
                   Harvester harvester = new Harvester(
                             mMotherFrame,
                             new Rule());
                   Thread harvest = new Thread(harvester);
                   harvest.start();               
                   try {                    
                        harvest.join();
                   } catch (InterruptedException ie) {}
    }Harvester :
    Code:
    public class Harvester implements Runnable {
      private JFrame mMotherFrame;
      private ProgressMonitor mMonitor;
    public Harvester(JFrame owner, IRule subjectRule) {
       mMotherFrame = owner;
        public void find() {
        mMonitor = new ProgressMonitor(mMotherFrame, "Downloading from the Internet.", "", 1, mAcceptedURLs.size());
         mMonitor.setMillisToDecideToPopup(0);
         mMonitor.setMillisToPopup(0);
    public void run() {
      find();
      mHarvested = harvest();
      mFinished = true;
      Thread.yield();
    public List harvest() {
      download = new DownloadThread(this, mAcceptedURLs);
      Thread downthread = new Thread(download);
      downthread.start(); int i = 0;
      while (!mMonitor.isCanceled()) {
          while (download.getDownloadedDocuments().isEmpty()) {
               try {
                       Thread.yield();
                       Thread.sleep(300);
                } catch (InterruptedException ie) {}
           mMonitor.setNote("Downloading decision " + i);
           mMonitor.setProgress(mMonitor.getMinimum()+ ++i);
           } // end while(!cancel)
           download.kill();
           return mHarvested;
    }I'm very puzzled by the fact that it worked in the JUnit Case and not in the application.
    I can see that the thread that is responsible for drawing components is not doing his job, since that the mother frame (Gui class) is not being repainted while the harvest/download threads are working. That's not the case in the JUnit case, where the frame is being repainted and everything is fine. This is the only place in the application that I'm using threads/runnable objects.
    I also tried making the Gui class a thread by implementing the Runnable interface, and creating the run method with only a repaint() statement.
    And I tried setting the priority of the harvest thread to the minimum. No luck.
    If you need more info/code, let me know, Ill try to give as much info as I can.
    Thank you

    Why are you painting the values yourself? Why don't you just add the selected values to a JList, or create a container with a GridLayout and add a JLabel with the new text to the container.
    Every time you call the paintComponent() method the painting gets done from scratch so you would need to keep a List of selected items and repaint each item every time. Maybe this [url http://forum.java.sun.com/thread.jsp?forum=57&thread=304939]example will give you ideas.

  • Problem relating painting swing component

    Hi All,
    I am making a swing application in which there is one central Panel on which i am showing some dynamic contents from database
    but the problem is that data is comming from database but it is not painted automatically on screen and when i move mouse to central panel the contents are printed.
    plz help me
    how i do this painting imidiately .
    Thanx

    Hi All,
    i am using repaint() after each update but the panel is not painted automatically the panel appears when i thake mouse over that panel.
    in my screen there is on treePanel which contains tree now
    i want my centerpanel of screen to be dynamic that is of click on any
    node of the tree it display its summry this summry is comming fron database.
    for this on each mouse click of tree node i first clear the centralPanel
    then add another panel in this centralPanel.
    but the only problem is that it is not reflected imidiately.
    if i move mouse to centralPanel the updates are reflected very quickly.
    help me Plz
    Thanx

  • Problem in paint() method

    i have defined a new class which extends JPanel. In that I have defined a paintComponent() method. i dont know how to use the repaint() method.
    can anyone help?

    i have defined a new class which extends JPanel. In
    that I have defined a paintComponent() method. i dont
    know how to use the repaint() method.I do not fully understand your problem, sorry. Could you please clarify a bit?
    The repaint()-method is there to draw an image to the screen once again, to make changes visible. As far as I know, it calls the update()- and paint()-methods whenever you call it.

  • Serious problems with paint method, need major help

    I've got a mjor problem with displaying a BufferedImage Object. My program takes in an image, i call a method on it which creates an ImageObject, imgObj, which contains the following values:
    Image width, called width
    Image height, called height,
    array of 8 bit integers for the ARGB value of each pixel, called int [] imgCol
    I've managed to create a Buffered Image of the form:
    //make a buffered image ready to take the array of pixels
    bufferedImage = new BufferedImage( imgObj.width, imgObj.height, BufferedImage.TYPE_INT_ARGB);
    Then I set the ARGB values in the BufferedImage, by specifying the integer array of pixels, imgCol:
    //set the values in the buffered image using buffered image method
    bufferedImage.setRGB( 0, 0, imgObj.width, imgObj.height, imgObj.imgCol, 0, imgObj.width);
    Then I try to paint it, callling repaint() in the same method as the code above.
    Now when I try the following stuff I get a Null Pointer Exception:
    public void paint(Graphics g){
         paintImage(g);
    public void paintImage(Graphics g){
         Graphics2D ImageGraphic2 = (Graphics2D)g;
         // Draws the buffered image to the screen.
         ImageGraphic2.drawImage(bufferedImage, 0, 0, this);
    Can anyone help me in fixing this problem?

    Here's the full stack trace, can't make heads or tails of what it's about though
    Full thread dump Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode):
    "AWT-EventQueue-0" prio=7 tid=0x0ADAB440 nid=0xb38 in Object.wait() [ef5f000..e
    5fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <02F78010> (a java.awt.EventQueue)
    at java.lang.Object.wait(Object.java:426)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:333)
    - locked <02F78010> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchT
    read.java:161)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThr
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "DestroyJavaVM" prio=5 tid=0x00034DB8 nid=0x5dc waiting on condition [0..7fadc]
    "Java2D Disposer" daemon prio=10 tid=0x0AD4D1F0 nid=0x218 in Object.wait() [ef9
    000..ef9fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <02FE9938> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <02FE9938> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at sun.java2d.Disposer.run(Disposer.java:97)
    at java.lang.Thread.run(Thread.java:536)
    "AWT-Windows" daemon prio=7 tid=0x0ACB1528 nid=0x63c runnable [aeff000..aeffd8c
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:253)
    at java.lang.Thread.run(Thread.java:536)
    "AWT-Shutdown" prio=5 tid=0x0ACB1158 nid=0x480 in Object.wait() [aebf000..aebfd
    c]
    at java.lang.Object.wait(Native Method)
    - waiting on <02FA4990> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:426)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <02FA4990> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:536)
    "Signal Dispatcher" daemon prio=10 tid=0x009E8350 nid=0x788 waiting on conditio
    [0..0]
    "Finalizer" daemon prio=9 tid=0x0003E978 nid=0x3f0 in Object.wait() [ab1f000..a
    1fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <02F699B0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <02F699B0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x0003D548 nid=0x7a4 in Object.wait() [a
    df000..aadfd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <02F69A18> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:426)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:113)
    - locked <02F69A18> (a java.lang.ref.Reference$Lock)
    "VM Thread" prio=5 tid=0x009E52C0 nid=0x974 runnable
    "VM Periodic Task Thread" prio=10 tid=0x009E7040 nid=0x4e4 waiting on condition

  • Big problem, Live Paint Bucket changing strokes

    Hi all, so in the first picture you can see the finished line work. When I fill the face with a color in Live Paint, it changes the strokes and makes them appear jagged in varying widths, it's especially obvious on the eyes, ears, and hair - it looks like it is applying Pathfinder>Divide. I have the stroke set to nothing when I apply the fill, please help!

    how about this?
    1. duplicate the lineart and put it underneath the layer and lock the original
    2. convert the lineart into an outline stroke by going to Effect>Outline Stroke then Object>Expand Appearance
    3. Open Pathfinder Pallete and then select all and Unite/Add it.
    4. change everything to no stroke and no fill
    5. select all then convert it to live paint
    6. deselect the converted path and start using live paint bucket.
    7. after that expand it and ungroup so you can move the fill path. also you'll notice that it will remove all path you have been converted.
    reply if it works,

  • A small problem with painter when i try to use color selector

    in paint brush there is this color selector that things that takes drops a dropper i think it's called if i choose it and use it on some part of the pictuer i get this color on paint 1 but i can't use it to change color 2 why is that and what can i do about this?
    thanks in advance.

    in paint brush there is this color selector that things that takes drops a dropper i think it's called if i choose it and use it on some part of the pictuer i get this color on paint 1 but i can't use it to change color 2 why is that and what can i do about this?
    thanks in advance.
    Hi
    1. Select the Color Picker (Eye Dropper).
    2. Click Color 1.
    3. Select a color from the Pallette.
    4. Select Color 2.
    5. Select the second color from the Pallette.
    6. Select a Brush from the Brushes drop down.
    7. When you use the left Mouse Button, you will get Color 1.
    8. When you use the Right Mouse Button, you will get Color 2.
    While you are painting, you can select the Color Picker at any time to change either color 1 or 2.
    Windows 7 features - Paint - Microsoft Windows
    Getting started with Paint
    Using Paint
    Hope this helps.
    Thank You for using Windows 7
    Ronnie Vernon MVP

  • Problems with painting

    I am trying to put jlabel(with a picture ) on another jlabel (with a picture) how i could do this... oh i am using ide interface, when i put one on another it always goes near by it but not on it! pls help me! ;)
    tryed many things as painting background then moving on it label but there comes grey color(bakcground color) after moving to another place.
    repaint overloads system or smth like this. well i a can say i am going to panic now :(
    sorry for spaming in many forums but i really need help:(

    audryste wrote:
    sorry for spaming in many forums but i really need help:(Choose one thread and state in the other that it is closed or you will severely limit the help folks will offer you.

  • Repaint problem. Paint two components at different times.

    I have two labels on a panel. I want to paint them one by one after some action. However, I found that even I call the repaint method of the first label and after some time call the repaint method of the second label, stilll they change at the same time. The first label will wait until the second label repaints.
    Below is my code:
    import java.awt.event.*;
    import javax.swing.*;
    public class PaintTest extends JPanel {
         JButton paintButton = new JButton("paint");
         JLabel labelOne = new JLabel("Paint first");
         JLabel labelTwo = new JLabel("Paint second");
         public PaintTest() {
              add (paintButton);
              add (labelOne);
              add (labelTwo);
              paintButton.addActionListener(new ActionListener() {
                   public void actionPerformed (ActionEvent evt) {
                        paintButton_actionPerformed (evt);               
         void paintButton_actionPerformed(ActionEvent evt) {
              labelOne.setText("first");
              labelOne.repaint();
              labelOne.revalidate();
              this.repaint();
              this.revalidate();          
              // wait for some time.
              for (long i = 0; i < 99999999; i++) {
              labelTwo.setText("second");
              labelTwo.repaint();
         public static void main(String[] args) {
              JFrame f = new JFrame();
              f.setContentPane(new PaintTest());
              f.pack();
              f.show();
    }

    The reason its not being updated is because ur not realeasing ur current thread, ur making it work - the time it waits is actually working, so ur not allowing the painting thread to cut in and do the painting. Try this instead:
    Implement runnable with:
    public void run() {
    for (long i = 0; i < 99999999; i++) {}
         labelTwo.setText("second");
         labelTwo.repaint();
         repaint();
         revalidate();
    }and in ur actionPerformed:
    labelOne.setText("first");
    labelOne.repaint();
    labelOne.revalidate();
    repaint();
    revalidate();
    SwingUtilities.invokeLater(this);This will give the paiting thread time to repaint before u do u waiting-work....
    Stig.

  • Problems with paint

    Hallo, I'm trying to create a application with 1 button. When I click the button a oval should be drawn on the screen. But I can't paint from the button handler, so I use Graphics g=getGraphics();
    But when I put an other window in front the oval is gone...
    Should I use something else instead of getGraphics?

    Or you could have the button control a boolean value:
    public class programma extends Frame {
    boolean drawOval = false;
    public void actionPerformed(ActionEvent e) {
      drawOval != drawOval; //I think this works, maybe not
      repaint();
    }Then you would override the paint method adding an if(drawOval):
    public void paintComponent(g) {
      if (drawOval)
        g.drawOval(500,500,200,100);
    Steve                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Paint an image in the background of the JDesktopPane?

    I need to show an image in the background of an multidocument Java application (Swing based). It's not possible overwritting the method "paint" of the class "JDesktopPane" (appear some problems). Can anybody help me, please? Thanks a lot.

    You have to override the painComponent method not paint.
    JDesktopPane desktop = new JDesktopPane(){
        Image im = (new ImageIcon("background.jpg")).getImage();
        public void paintComponent(Graphics g){
            g.drawImage(im,0,0,this);
    };I hope this helps,
    Denis

  • Java 2d - Painting problem

    hi, I have problem with painting. Every time, when I minimize and then maximize application, the whole screen starts to "repaint" it's content (everything what was drawed). Normally it's not so big problem you don't register it, but I'm using some delay when drawing (Thread.sleep (x) ), and
    then it's BIG problem, because always when minimized/maximized it starts to paint again and it's clearly visible...Also when I cover window of my application with another window, and then hide it, it do same thing. It's possible to avoid this? It's very unpleasant. thanx a lot
    PS: Do not tell me not to use delay :) It's absolutely necessary in my application, because I must use some animations...

    It does make logical sense if you were for instance calling the sleep method within a different thread, such as the EventQueue thread.
    Rather than use the sleep method to create your delays, use a javax.swing.Timer thread set to a specific delay.
    This way the animation is painted to the panel on a seperate thread.

  • A problem about paining within Swing

    Now I have developed a project aiming to drawing line between two component,here is two internalframe. Problem here is that it could work well with JDK1.4,but it could not work well with JDK1.3. The detailed is that there is something wrong between dragging and drawing line. Below is the override paint method in JPanel.
    super.paint(g);
    if(choosedline>=0 && choosedline<vAssociate.size()){
    Associate ass=(Associate)vAssociate.elementAt(choosedline);
    g.setColor(Color.gray);
    if(ass.getPolygon()!=null)
    g.fillPolygon(ass.getPolygon());
    int i=0;
    while(i<vAssociate.size()){
    drawLine((Associate)vAssociate.elementAt(i),g);
    i++;
    if((this.CurrentDIC!=null) && this.CurrentDIC.isReady){
    Rectangle rect=CurrentDIC.getBounds();
    DICTable temp=CurrentDIC;
    if(Not_In(rect,x,y)){
    if(rect.x>x){
    g.setColor(Color.black);
    g.drawLine(rect.x,temp.getLocaleHeight()+rect.y,x,y);
    if((rect.x+rect.width)<this.x){
    g.setColor(Color.black);
    g.drawLine(rect.x+rect.width,rect.y+temp.getLocaleHeight(),x,y);
    here CurrentDIC is an instance of JInternalFrame,and there are some some labels in. When I'm dragging from one of the labels, a line from the label is expected to drawing. Please look at the code between *******.
    I'm confused by the difference between jdk. So could anybody help me to figure the problem? Thank you.

    Maybe I have not described the problem clearly, but I think it's not related with paintComponent.
    So here I try to clear it in detail.
    Suggest you have know the program's aim, and the problem occured in JDK1.3.1
    When mouse is at one of the labels in the Jinternalframe, the related label is choosed and its' information, including its place ,and name, is sure for me. Then mouse pressed and moved(a mouseDragging action is responsed both by the label and outside JPanel, a eventdispatch involved), a line from the label is expected to draw in the outside JPanel. Here the probelm is the line could not been drawn in JDK1.3, and I'm sure it's not the problem of paint itself. Maybe there is some difference, such as componentdragging and mousedragging, existed between the two JDK version. But I'm not sure. So could you give me some hints based on the above description? Thank you.

Maybe you are looking for

  • Cannot display square root symbol in cvi

    I don't understand why this would be an issue, but if I'm writing in the source window (with the default font of NIEditor), I cannot display a square root symbol "√" - every time I type alt+251, I get "v". Ok, not a huge deal in the source window, bu

  • Stop and start a photos slideshow

    Hi .. So I want to use the photos slide show to execute a presentation .. But this means I need to start the slideshow and then stop, present the slide (a photo of the slide in fact), and then continue to the next photo .. I.e. I want manual control

  • Photo Transfer Between Decktop and Tungsten E

    Having problems viewing photos on Palm.  Palm Info shows 9+Mb of photos on device.  When I touch the Photo icon to view photos, there is no resulting photo.  I have removed all photos from the desktop, and resynced to take photos off the device.  The

  • Cannot open raw photos from Canon 7DMK2 ?

    Cannot open raw photos from my Canon7DMK2?

  • Test movie won't work anymore!!

    When I test movie on all my .fla files, the script "seems" not to work (many things missing, problems with my arrays...) BUT if I run the SWF produced...it works like a charm??!! What should it be please? I've re-install everything on a new system wi