How to change this code to drag and drop image/icon into it??

Dear Friends:
I have following code is for drag/drop label, But I need to change to drag and drop image/icon into it.
[1]. code 1:
package swing.dnd;
import java.awt.*;
import javax.swing.*;
public class TestDragComponent extends JFrame {
     public TestDragComponent() {
          super("Test");
          Container c = getContentPane();
          c.setLayout(new GridLayout(1,2));
          c.add(new MoveableComponentsContainer());
          c.add(new MoveableComponentsContainer());
          pack();
          setVisible(true);
     public static void main(String[] args) {
          try {
               UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          catch (Exception ex) {
               System.out.println(ex);
          new TestDragComponent();
}[2]. Code 2:
package swing.dnd;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.*;
import java.awt.dnd.*;
import java.awt.datatransfer.*;
import java.awt.image.*;
import java.awt.dnd.DragSource;
import java.awt.dnd.DropTarget;
public class MoveableComponentsContainer extends JPanel {     
     public DragSource dragSource;
     public DropTarget dropTarget;
     private static BufferedImage buffImage = null; //buff image
     private static Point cursorPoint = new Point();
     public MoveableComponentsContainer() {
          setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED, Color.white, Color.gray));
          setLayout(null);
          dragSource = new DragSource();
          ComponentDragSourceListener tdsl = new ComponentDragSourceListener();
          dragSource.createDefaultDragGestureRecognizer(this, DnDConstants.ACTION_COPY_OR_MOVE, new ComponentDragGestureListener(tdsl));
          ComponentDropTargetListener tdtl = new ComponentDropTargetListener();
          dropTarget = new DropTarget(this, DnDConstants.ACTION_MOVE, tdtl);
          setPreferredSize(new Dimension(400,400));
          addMoveableComponents();
     private void addMoveableComponents() {
          MoveableLabel lab = new MoveableLabel("label 1");
          add(lab);
          lab.setLocation(10,10);
          lab = new MoveableLabel("label 2");
          add(lab);
          lab.setLocation(40,40);
          lab = new MoveableLabel("label 3");
          add(lab);
          lab.setLocation(70,70);
          lab = new MoveableLabel("label 4");
          add(lab);
          lab.setLocation(100,100);
     final class ComponentDragSourceListener implements DragSourceListener {
          public void dragDropEnd(DragSourceDropEvent dsde) {
          public void dragEnter(DragSourceDragEvent dsde)  {
               int action = dsde.getDropAction();
               if (action == DnDConstants.ACTION_MOVE) {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
               else {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
          public void dragOver(DragSourceDragEvent dsde) {
               int action = dsde.getDropAction();
               if (action == DnDConstants.ACTION_MOVE) {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
               else {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
          public void dropActionChanged(DragSourceDragEvent dsde)  {
               int action = dsde.getDropAction();
               if (action == DnDConstants.ACTION_MOVE) {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
               else {
                    dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
          public void dragExit(DragSourceEvent dse) {
             dse.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
     final class ComponentDragGestureListener implements DragGestureListener {
          ComponentDragSourceListener tdsl;
          public ComponentDragGestureListener(ComponentDragSourceListener tdsl) {
               this.tdsl = tdsl;
          public void dragGestureRecognized(DragGestureEvent dge) {
               Component comp = getComponentAt(dge.getDragOrigin());
               if (comp != null && comp != MoveableComponentsContainer.this) {
                    cursorPoint.setLocation(SwingUtilities.convertPoint(MoveableComponentsContainer.this, dge.getDragOrigin(), comp));
                    buffImage = new BufferedImage(comp.getWidth(), comp.getHeight(), java.awt.image.BufferedImage.TYPE_INT_ARGB_PRE);//buffered image reference passing the label's ht and width
                    Graphics2D graphics = buffImage.createGraphics();//creating the graphics for buffered image
                    graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.5f));     //Sets the Composite for the Graphics2D context
                    boolean opacity = ((JComponent)comp).isOpaque();
                    if (opacity) {
                         ((JComponent)comp).setOpaque(false);                         
                    comp.paint(graphics); //painting the graphics to label
                    if (opacity) {
                         ((JComponent)comp).setOpaque(true);                         
                    graphics.dispose();
                    remove(comp);
                    dragSource.startDrag(dge, DragSource.DefaultMoveDrop , buffImage, cursorPoint, new TransferableComponent(comp), tdsl);     
                    revalidate();
                    repaint();
     final class ComponentDropTargetListener implements DropTargetListener {
          private Rectangle rect2D = new Rectangle();
          Insets insets;
          public void dragEnter(DropTargetDragEvent dtde) {
               Point pt = dtde.getLocation();
               paintImmediately(rect2D.getBounds());
               rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
               ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
               dtde.acceptDrag(dtde.getDropAction());
          public void dragExit(DropTargetEvent dte) {
               paintImmediately(rect2D.getBounds());
          public void dragOver(DropTargetDragEvent dtde) {
               Point pt = dtde.getLocation();
               paintImmediately(rect2D.getBounds());
               rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
               ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
               dtde.acceptDrag(dtde.getDropAction());
          public void dropActionChanged(DropTargetDragEvent dtde) {
               Point pt = dtde.getLocation();
               paintImmediately(rect2D.getBounds());
               rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
               ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
               dtde.acceptDrag(dtde.getDropAction());
          public void drop(DropTargetDropEvent dtde) {
               try {
                    paintImmediately(rect2D.getBounds());
                    int action = dtde.getDropAction();
                    Transferable transferable = dtde.getTransferable();
                    if (transferable.isDataFlavorSupported(TransferableComponent.COMPONENT_FLAVOR)) {
                         Component comp = (Component) transferable.getTransferData(TransferableComponent.COMPONENT_FLAVOR);
                         Point location = dtde.getLocation();
                         if (comp == null) {
                              dtde.rejectDrop();
                              dtde.dropComplete(false);
                              revalidate();
                              repaint();
                              return;                              
                         else {                         
                              add(comp, 0);
                              comp.setLocation((int)(location.getX()-cursorPoint.getX()),(int)(location.getY()-cursorPoint.getY()));
                              dtde.dropComplete(true);
                              revalidate();
                              repaint();
                              return;
                    else {
                         dtde.rejectDrop();
                         dtde.dropComplete(false);
                         return;               
               catch (Exception e) {     
                    System.out.println(e);
                    dtde.rejectDrop();
                    dtde.dropComplete(false);
}Thanks so much for any help.
Reagrds
sunny

Well, I don't really understand the DnD interface so maybe my chess board example will be easier to understand and modify:
http://forum.java.sun.com/thread.jspa?forumID=57&threadID=518707
Basically what you would need to do is:
a) on a mousePressed you would need to create a new JLabel with the icon from the clicked label and add the label to the glass pane
b) mouseDragged code would be the same you just repaint the label as it is moved
c) on a mouseReleased, you would need to check that the label is now positioned over your "drop panel" and then add the label to the panel using the panels coordinates not the glass pane coordinates.

Similar Messages

  • How come in Pages, i cannot drag and drop images?

    how come in Pages, i cannot drag and drop images?

    Yes you can in all versions.
    It helps if you actually describe what you are doing.
    Where are you dragging it from and where are you dragging it to?
    In what version of Pages?
    I suspect you are trying to drag an image into a Table, Header or Footer in Pages 5, which is no longer possible. Feature removed by Apple.
    Peter

  • How to change the effect of drag and drop from MOVE to COPY in alv tree.

    Hi,
    I am using a tool in which now the behaviour on drag and drop is MOVE. I want to change it to COPY.
    But I do not know which parameter needs to be set and where.
    please help.
    Regards,
    Smita.

    Hi,
    Thanks for quick reply.
    The code goes on like this
    METHOD set_dd_behavior.
      DATA: l_copysrc(1) TYPE c,
            l_movesrc(1) TYPE c,
            l_droptarget(1) TYPE c.
    Set the Drag and Drop Flavors.
      CREATE OBJECT dd_behavior.
      READ TABLE reg_functions WITH KEY name_function = 'COPY'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_copysrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'CUT'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_movesrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'PASTE'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_droptarget = 'X' .
      ENDIF.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'MOVE'
      dragsrc = l_movesrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>move.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'COPY'
      dragsrc = l_copysrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>copy.
      CALL METHOD dd_behavior->get_handle
      IMPORTING handle = dd_behavior_handle.
    ENDMETHOD.
    Here what changes needs to be done.
    As I see once COPY is added and next time MOVE is added.
    I am able to check because I am not able to edit while debugging the value of effect.
    Please suggest.
    Warm regards,
    Smita.

  • How to change mouse cursor during drag and drop

    Hi Guys,
    Iam performing a Drag and drop from Table1(on top of the figure) to Table2(down in the figure).
    see attached figure
    http://www.upload-images.net/imagen/e80060d9d3.jpg
    Have implemented the Drag and drop functionality using "Transferable" and "TransferHandler"using the java tutorial
    http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#ExtendedDndDemo
    Now My problem is that ,I want to make the 1st column in Table2(ie: Column2-0) not to accept any drops so that the cursor appears like a "No-Drop" cursor but with selection on the column cell during a drop action.
    Also when I move my cursor between "column2-0" and "column2-1",want to to have the "No-Drop" and "Drop" cursor to appear depending on the column.
    How can I achieve it using the TransferHandle class.Dont want to go the AWT way of implementing all the source and target listeners on my own.
    Have overridded the "CanImort" as follows:
    public boolean canImport(JComponent c, DataFlavor[] flavors) {
         JTable table = (JTable)c;      
    Point p = table.getMousePosition();
    /* if(p==null)
         return false;
    int selColIndex = table.columnAtPoint(p);
    if(selColIndex==0)
         return false;*/
    If I execute the above commented code,The "No-Drop" Icon appears in "column2-0",but no cell selection.Also If I move to "column2-1",which is the 1st column,Still get the "No-Drop" Icon there,also with no cell selection.
    for (int i = 0; i < flavors.length; i++) {
    if ((DataFlavor.stringFlavor.equals(flavors))) {
    return true;
    return false;
    Thanks in advance.....
    Edited by: Kohinoor on Jan 18, 2008 3:47 PM

    If you found the selection column based on the mouse pointer, then based on the column, you can set the cursor pointer as any one as below :
    setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
    setCursor(new Cursor(Cursor.HAND_CURSOR));

  • Drag and drop images using tilelist in flex

    i just want the working code for drag and drop images using
    tilelist in flex

    Try JDK 1.4 and call setDragEnabled(true)
    I will also post updated version of MediaChest soon using custom TransferHandler for DnD different types of Objects.

  • How can I drag and drop an icon/image into a panel??

    Dear Friends:
    How can I drag and drop an icon/image from one panel into another target panel at any position in target panel at my will??
    any good example code available??
    I search for quite a while, cannot find a very good one.
    please help
    Thanks
    Sunny

    [url http://java.sun.com/developer/JDCTechTips/2003/tt0318.html#1]DRAGGING TEXT AND IMAGES WITH SWING

  • How do I set up my drag and drop questionaire to export to a XML file?

    How do I set up my drag and drop questionaire to export to a
    XML file?
    I have a 70 seperate SWF files that pose a question and
    contain a drag and drop rank order response of 1,2,3,4.How do I set
    up a XML file that receives the responses.I don't understand how to
    do the Actionscript
    and get my responses to connect to the XML.Please
    Help!Thanks!
    Here's an example of my XML.
    <assessment>
    <sessionid>ffae926ea290ee93c3f26669c6c04a92</sessionid>
    <request>save_progress</request>
    <question>
    <number>1</number>
    <slot_a>2</slot_a>
    <slot_b>1</slot_b>
    <slot_c>4</slot_c>
    <slot_d>3</slot_d>
    </question>
    <question>
    <number>2</number>
    <slot_a>4</slot_a>
    <slot_b>3</slot_b>
    <slot_c>2</slot_c>
    <slot_d>1</slot_d>
    </question>
    <question>
    <number>3</number>
    <slot_a>1</slot_a>
    <slot_b>2</slot_b>
    <slot_c>3</slot_c>
    <slot_d>4</slot_d>
    </question>
    </assessment>

    Use XML.sendAndLoad.
    http://livedocs.macromedia.com/flash/8/main/00002879.html
    You will need a server script to receive the XML structure
    and it depends on
    the server scripting language how you obtain that data. Then
    you can either
    populate a database or write to a static file or even email
    the XML data
    received from Flash.
    For a basic example, I have two links I use for students in
    my Flash
    courses:
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/XMLASP/Ex01/XMLASPEchoEx01_D oc.php
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/XMLPHP/EX01/XMLPHPEchoEx01_D oc.php
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "kenpoian" <[email protected]> wrote in
    message
    news:e5i9hp$cs6$[email protected]..
    How do I set up my drag and drop questionaire to export to a
    XML file?
    I have a 70 seperate SWF files that pose a question and
    contain a drag and
    drop rank order response of 1,2,3,4.How do I set up a XML
    file that receives
    the responses.I don't understand how to do the Actionscript
    and get my responses to connect to the XML.Please
    Help!Thanks!
    Here's an example of my XML.
    <assessment>
    <sessionid>ffae926ea290ee93c3f26669c6c04a92</sessionid>
    <request>save_progress</request>
    <question>
    <number>1</number>
    <slot_a>2</slot_a>
    <slot_b>1</slot_b>
    <slot_c>4</slot_c>
    <slot_d>3</slot_d>
    </question>
    <question>
    <number>2</number>
    <slot_a>4</slot_a>
    <slot_b>3</slot_b>
    <slot_c>2</slot_c>
    <slot_d>1</slot_d>
    </question>
    <question>
    <number>3</number>
    <slot_a>1</slot_a>
    <slot_b>2</slot_b>
    <slot_c>3</slot_c>
    <slot_d>4</slot_d>
    </question>
    </assessment>

  • How Do I Drag and Drop Images From Windows Explorer to Applet?

    I'm not able to Drag and Drop Images and other files (like audio and video files) from Windows Explorer to Applet. Is that Possible to do so?. Can SomeOne help me out regarding this? Thanx in Advance.

    No problem here. Can you say any more about the situation?
    Jerry

  • How come I cant drag and drop images onto my imove

    I can't drag and drop images from my desktop or folder into imovie.

    Simply because you are not posting to the iMovie forum. Post there and find out.

  • Drag and drop from Lightroom into Premiere doesn't work in Windows

    I recently switched from OSX to Windows and noticed that in Windows, I'm unable to drag and drop from LIghtroom into Premiere. In OSX, it worked fine.
    I do this a lot because it's a time saver. I basically use lightroom to find the photo or video clip I need for my editing project and then just drag in right on to the Premiere timeline. Now I have to do the extra step in Lightroom of "show in explorer", then drag the file from explorer to Premiere. Not really a big deal but just curious why it works in OSX and not Windows.
    I'm running latest Windows 8.1, Lightroom 5.4, Camera Raw 8.4, and Premiere Pro CC 7.2.2 (33)
    -Pete

    Hi Pete,
    You can obtain scripts here:
    http://www.robcole.com/Rob/ProductsAndServices/MiscLrPlugins#MiscScripts
    You'll have to edit lua code to adapt for Premiere. Not that hard really (e.g. clone, then change the script name and path to executable..), but may be too intimidating for some folks. If you are one of those folks, go for the plugin instead - it's usable via GUI - no lua code - can probably accomplish the same thing.
    http://www.robcole.com/Rob/ProductsAndServices/OpenInWhateverLrPlugin
    Let me know (outside the forum please) if problems - thanks,
    Rob

  • What's up when you drag and drop a table into a jsp page?

    Hi All,
    I was wondering what's happen in dragging and drop a table into a jsp page. This question because untill yesterday i had an application up and running, with a table displaying a number of rows of the database, and an action associated with an update into a database.
    The action is managed trough JNDI, defined from Preference-Embedded.......
    It was working.
    Then the machine hosting the db changed IP addres. I went into Webcenter Administration console, I've changed the connection string into the jdbc parameters, by updating the new IP address... but it's not working anymore! The log comes out with a big error, but basically it can't connect at the db!
    So, I think there is somewhere some reference to the old db.....where???
    Thanks
    Claudio

    Yes Shay,
    I got this error:
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.DMLException, msg=JBO-26061: Error while opening JDBC connection.
    in few hours I'll be able to give you the full stack.
    Thanks
    Clauido
    Message was edited by:
    user637862
    Hi Shay,
    Thanks a lot..you were right.
    I've located the ba4j on the webcenter server...and I've noticed that it was with the old address.
    I think it's a bug, cause on the local machine (before to deploy) this file comes with the right address.
    So next time, before to redeploy a new application, I think I'm going to fiscally delete the folder from j2ee folder.
    Thanks again for the help!
    Claudio

  • Can I drag and drop single photos into Events?

    Hi guys. I've very recently ordered a new Mac that will have iLife 08 on it. Before I get started with it I've got a question about Events. I've been using iPhoto for the last several years, organizing my photos into albums. I've cleaned up my images to around 1,000 photos, and I plan to only use events for organization. (I don't want to use Events AND albums, don't see the point, I'm going to try using ONLY Events.) But I've got a few scenerios that I'd like to throw by you all, to see if they would work, as I'm hoping that they will...
    I don't shoot photos into pre-defined "Events", I shoot photos by what I feel like shooting. "Hey, my dog is doing something funny" - There's 3 pictures, or "Wow that's a big spider!" - 1 picture, or "My little neice is doing something cute" - There's 4 pictures. I do not want 450 events, each containing 1 - 5 pictures.
    Can I drag and drop single pictures into different events? For example, have an Event called "Friends" with pictures of my friends in it, that I put there? Or an event called "Concerts" with photos taken throughout the years?
    I hope I've made it clear what I'm looking to get out of Events!
    Thanks in advance for any help.

    Exactly - I think he will want to matain his existing structure -- people are making too much of the name change from rolls to events.
    I have events with one photo and events with as many as 2000 photos -- I like this better than rolls but albums, folders and keywords are still the key to granular organization - events are ust the library to hold my photos
    To me it is a small step forward that makes organization much easier (and it was not that hard before)
    Larry Nebel
    PS - now if I could just get all of my edits to save - where are TD and OT to solve that one for me?

  • Drag and drop FLAC audio into iPod to convert and add?

    I manually sort my music as albums in folder directories. I have never liked how iTunes wanted to sort my music back in 2005 and I don't like it any more today.
    I recently got a 6th gen iPod Nano via the 1st gen iPod Nano replacement program and I am disappointed in how I cannot use Winamp to manage my playlists anymore. Winamp would automatically transcode incompatible FLAC audio into MP3 before transferring onto my 1st gen Nano.
    I have my iPod options under iTunes set to automatically convert higher bitrate audio to 192kbps AAC, but dragging and dropping FLAC audio into my iPod gives an error message that prevents me from adding anything.
    I thought maybe I had to import my audio into iTunes' library first, but scanning for media adds every audio file including system and program audio files to my library, which really clutters things up. It treats each artist as an album, so compilation albums of 30 audio tracks from 30 artists appear as 30 individual albums in my iTunes library. Most cumbersome.
    I am also appauled in how it did not detect or support playback of FLAC audio. I am not willing to convert my entire library into a proprietary lossless audio format just because iTunes wants me to when other programs and I were getting along so well without iTunes and my 1st gen Nano.
    Anyway, what I am hoping to achieve is to find a streamlined way to convert FLAC audio files into MP3 or AAC while I am transferring them to my iPod without having to involve another program to manually convert before adding. This is a huge convenience factor for which I am regretting having my 1st gen Nano replaced. I will admit that I am perhaps being overly stubborn here. Maybe I'll just sell this 6th gen Nano while it's still pristine and get a Sansa Clip or something. Apple products have become too stifling and I won't be surprised if there was no way to achieve what I am asking to do here, so maybe this ends up a being more of a rant than a search for answers.

    foobar2000 with the ipod plugin will allow you to drag/drop FLAC files and when it syncs the ipod, it converts the FLAC files on the fly. MUCH better than dealing with the crappy iTunes interface and having to pre-convert the files. I absolutely loathe iTunes and it just gets worse and worse!

  • Drag and drop images from the OS or select images over filebrowser

    Hello,
    I want to create an image upload tool in JavaFX with similar functionality like Jumploader (http://jumploader.com/). The users should be able to select images from the filesystem that will be resized and uploaded to their website, similar as in Facebook. The difference is that I want users to be able to crop images directly in my application. This is something, other upload tools do not offer.
    I was searching weeks on the web trying to find a sample on how to drag and drop images in to a JavaFX 1.3.1 app or also to create a file browser. I have found many examples but they seem to be outdated. Is it to early yet to try and start projects like these with JavaFX as JavaFX is still under development? Or can anybody lead me in to the right direction?
    Thanks,
    Chris

    To be more precise, you can setup a JComponent or JPanel on top of your JavaFX nodes that has a TransferHandler that can convert the (AWT/Swing) images dragged to the app to JavaFX image and then insert it into the underlying node.
    As for the file chooser itselft: ListView and the JavaFX composer can allow you to create one quite easily. TreeView can aslso be used to a lesser extend (still a big buggy). For both of these, there are small bugs in the Cell API that may (or may not) prevent from displaying a proper thumbnail in the cells.
    You can also use a regular JFileChooser if you do not mind the dialog box having a different LnF from the rest of your application.

  • Set default import format when drag and drop sound file into multitrack view?

    I've looked around the preference panels but cannot find where to set the import settings for dragging and dropping sound files into multitrack view. Some of our computers have correct settings and others do not. Thanks for your help!
    G

    I should have been more specific, sorry... I mean bit depth and bit rate... On some machines this defaults correctly and on other machines it is wrong. Not sure how to set these to downconvert properly by default. Unless it automatically takes the format of the source file, in which case it's just been luck.
    Thanks,
    G

Maybe you are looking for

  • Query Builder in Oracle 9i

    We use the tool Query Builder in our Oracle BD version 8.0.5.1. We have a development version of Oracle 9i and I don't see anything like Query Builder. What product is replacing Query Builer in Oracle 9i ?? THANKS

  • How to reply in HTML

    I'm checking my email for work remotely, but when I open an HTML email and forward it or reply to it, it turns into 'text only', and will not forward in in HTML. How do I change that?

  • How to achieve romate-monitoring in Labview5.0?

    I want to monitor one system through internet ,but I don't know how to do it in Labview5.0,and wether should I build one net-station? should use what function of the Labview? in fact ,that is How to achieve the monitoring through internet? please exp

  • No stationery templates

    I have Leopard and I've installed all updates but I don't seem to have the mail templates. I've looked through the preferences and the help file but can't seem to find the answer.

  • All photos & videos from a shared stream don't appear to be uploading to my windows PC

    I have over 400 photos on a shared stream but it's only showing around 200 when I upload it to my computer & the videos don't appear to be uploaded either. Can anyone help? Thanks