Adding simple shapes and lines to a JPanel()

If anybody out there knows how to add simple filled circles and then lines woth arrowheads connecting the 2 circles into a JPanel then please help me out???
I have included my code below so you have an indication of what im doing:
import java.awt.*;
import java.awt.Graphics;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.Vector;
import java.io.*;
import java.util.Collections;
public class rightSplitPane {
private JSplitPane splitPane;
private JPanel p1, p2;
     private String tran, res, type;
     private Graphics gr;
public rightSplitPane() {         
p2 = new JPanel();
p2.setLayout(new BorderLayout());
//gr = p2.getGraphics();
//Graphics2D g2d = (Graphics2D) gr;
//gr.drawLine(30, 40, 100, 100);
     //gr.drawRect(24, 10, 60, 60);
//p2.repaint();
JScrollPane topPane = new JScrollPane();
topPane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
topPane.getBorder();
          JScrollPane bottomPane = new JScrollPane(p2);
          bottomPane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
bottomPane.getBorder();
//Provide minimum sizes for the two components in the split pane
Dimension size = new Dimension(625, 350);
topPane.setMinimumSize(size);
bottomPane.setMinimumSize(size);
//Create a split pane with the two scroll panes in it
splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPane, bottomPane);
splitPane.setOneTouchExpandable(true);
splitPane.setDividerLocation(350);
topPane.getViewport().add(trTable, BorderLayout.CENTER);
public JSplitPane getSplitPane() {
return splitPane;
     public static void main(String args[]) {
          rightSplitPane test = new rightSplitPane();
//HOW DO I GET THE SPLITPANE TO BE DISPLAYED TOO??
} // end class

I took out few lines:
import java.awt.*;
import java.awt.Graphics;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.Vector;
import java.io.*;
import java.util.Collections;
public class rightSplitPane
     private JSplitPane splitPane;
     private JPanel     p1, p2;
     private String     tran, res, type;
     private Graphics   gr;
public rightSplitPane()
     JScrollPane topPane = new JScrollPane();
     topPane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
//     topPane.getBorder();
     p2 = new JPanel();
     p2.setLayout(new BorderLayout());
     JScrollPane bottomPane = new JScrollPane(p2);
     bottomPane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
//     bottomPane.getBorder();
//Provide minimum sizes for the two components in the split pane
     Dimension size = new Dimension(625, 350);
//     topPane.setMinimumSize(size);
//     bottomPane.setMinimumSize(size);
//Create a split pane with the two scroll panes in it
     splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPane, bottomPane);
     splitPane.setOneTouchExpandable(true);
     splitPane.setDividerLocation(350);
//     topPane.getViewport().add(trTable, BorderLayout.CENTER);
public JSplitPane getSplitPane()
     return splitPane;
public static void main(String args[])
     rightSplitPane test = new rightSplitPane();
     JFrame frame = new JFrame();
     frame.setSize(700,500);
     frame.setContentPane(test.getSplitPane());
     frame.setVisible(true);
/code]
Noah                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • How to draw a graph of tree structure (using shapes and lines)?

    Hello,
    I tried to search this solution in the forum, and I see people asking and replying with solutions to similar situation, but I don't get what I am looking for. Also because I have never tried with graphs before.
    So, my problem is, I need a function that takes a string with tree structure, as in automata or tree graph, and displays the nodes in tree form. "Tree" is not important, but important is that each object should be displayed as a node and lines connecting them. Please see the image below (with three possible options):
    So, basically, the tree structure could be like X(a, X(a,b), c) where X(a,b) is a sub-tree of higher level X. The program knows the parent-child relationship, so this function only needs to display those elements in a graphical fashion.
    I pass the string in the form of a 2D array showing the hierarchy (to simplify).
    In the image, I am showing three possible options for showing the tree. The third option eliminates those circles and rectangles, if that simplifies.
    I hope I explained clearly.
    Thanks ahead!
    Vaibhav

    I would start drawing from the top. The nodes will be the easy part.
    Begin with the root node centered in the drawing area horizontally and against the top of the drawing area. The second row of nodes would be located vertically (as in my example) 1.5x pixels below the first one, and either distributed horizontally across the available drawing area or at a fixed distance - like 1.5x again, or someother distance you define.
    The tricky part will be drawing the lines since they need run between the edges of nodes. This is where the high-school geometry might come in.
    Keep us posted on what you come up with. Extra points for coming up with a solution that will automatically resize itself to fit the available drawing area! (I've already given you all the clues for how to do that too.)
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Simple Annotations and Lines on Photo

    Is there a way to add simple lines and captions to photos using iPhoto or any other standard program on the Mac? Something as simple as Windows Paint would be fine.
    There must be something that comes standard with the Mac that can do it.
    Thanks,
    John

    No = nothing on the Mac
    there are many third party programs that will
    search MacUpdate - or try clickhere for some that you can use starting with a free one.
    LN

  • How do I join together arcs and lines in a single Shape???

    I am out of my depth, I am probably missing something spectacular .... I need to construct a shape from arcs and lines to get something like this, only closed:
    Like a winding river sort of thing... I do not need to draw this I need to have this shape and its area available to me.... How do I join these two arcs and two lines into a shape from which I can find - area.contains(xy.getX(), xy.getY()); , preatty please?
    here is the code that causes numerous errors:
    import java.awt.*;
    import java.awt.Graphics.*;
    import java.awt.Graphics2D.*;
    import java.awt.geom.RectangularShape.*;
    import java.awt.geom.Arc2D;
    import java.awt.geom.Line2D;
    import java.awt.geom.Rectangle2D;
    import java.awt.geom.Area;
    import java.awt.geom.GeneralPath;
    class MyShapes //extends Arc2D
    public static Arc2D outerOne;
    public static Arc2D innerOne;
    public static Line2D upLine, bottomLine;
    public static Area area = new Area();
    public MyShapes(double[] upper, double [] lower)
    outerOne.setArc(upper[0], upper[1], upper[2], upper[3], upper[4], upper[5], (int)upper[6]);
    //                         x,          y,               w,          h,               OA,      AA, int OPEN =1
    innerOne.setArc(lower[0], lower[1], lower[2], lower[3], lower[4], lower[5], (int)lower[6]);
    //outerTR=this.makeClosedShape(outerTopRightArc,middleTopRightArc);
    upLine     = new Line2D.Double(outerOne.getX(),outerOne.getY(),innerOne.getX(),innerOne.getY());
    bottomLine = new Line2D.Double(outerOne.getX()+outerOne.getWidth(),outerOne.getY()+outerOne.getHeight(),innerOne.getX()+innerOne.getWidth(),innerOne.getY()+innerOne.getHeight());
    area = this.joinAll(outerOne,innerOne, upLine, bottomLine);     
    private Area joinAll(Arc2D out, Arc2D in, Line2D one, Line2D two)
    GeneralPath joiner = new GeneralPath(out);
    joiner.append(in, true);
    joiner.append(one, true);
    joiner.append(two, true);      
    Area temp = new Area(joiner);
    return temp;     
    public boolean isInArea(Point xy)
    return area.contains(xy.getX(), xy.getY());     
    public boolean isItClosed()
    return area.isSingular();     
    Thanks

    Glad to hear you find what was wrong. Still, it doesn't the main problem : why is that method crashing?
    Here is what I've done in the mean time. See if it fits your purpose.import javax.swing.*;
    import java.awt.*;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.geom.*;
    public class MyShapes {
         private Arc2D outerOne;
         private Arc2D innerOne;
         private Shape line1;
         private Shape line2;
         public MyShapes(double[] upper, double[] lower) {
              outerOne = new Arc2D.Double(upper[0],
                                                 upper[1],
                                                 upper[2],
                                                 upper[3],
                                                 upper[4],
                                                 upper[5],
                                                 0);
              innerOne = new Arc2D.Double(lower[0],
                                                 lower[1],
                                                 lower[2],
                                                 lower[3],
                                                 lower[4],
                                                 lower[5],
                                                 0);
              line1 = new Line2D.Double(outerOne.getStartPoint().getX(),
                                              outerOne.getStartPoint().getY(),
                                              innerOne.getStartPoint().getX(),
                                              innerOne.getStartPoint().getY());
              line2 = new Line2D.Double(outerOne.getEndPoint().getX(),
                                              outerOne.getEndPoint().getY(),
                                              innerOne.getEndPoint().getX(),
                                              innerOne.getEndPoint().getY());
         public void paint(Graphics2D aGraphics2D) {
              aGraphics2D.draw(outerOne);
              aGraphics2D.draw(innerOne);
              aGraphics2D.draw(line1);
              aGraphics2D.draw(line2);
         public static void main(String[] args) {
              double [] XO= {56, 58, 400, 280, 90, 90};// outter arc
              double [] XI={114, 105, 300, 200, 90, 90}; // inner arc
              final MyShapes myShapes = new MyShapes(XO, XI);
              JPanel panel = new JPanel() {
                   protected void paintComponent(Graphics g) {
                        super.paintComponent(g);
                        Graphics2D g2 = (Graphics2D)g;
                        myShapes.paint(g2);
              final JFrame frame = new JFrame("Test shape");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              frame.setContentPane(panel);
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        frame.show();
    }

  • Create shape and motion tween of a line

    I am trying to create a line graph in which the line is
    following a certain path over time like in a simulation. The line
    starts with a point in frame 1 and ends with a smooth not straight
    line in e.g. frame 50. The line has to "run" like in an
    electrocardiogram.
    Is it possible to create this in flash?
    If so, how? I tried to combine shape and motion tweening, but
    that didn't work.
    Thanks for your help

    This is doable
    If it is a fixed set of lines you would create the lines in a
    MovieClip symbol and then slide the MovieClip symbol under a mask
    by changing the _x property with either onEnterFrame or
    setInterval.
    If you have to draw the lines from dynamic data at run time,
    you use the
    MovieClip.lineStyle
    and the
    MovieClip.lineTo
    properties on a MovieClip that you then would scroll under a mask
    if you are looking for the electrocardiogram rolling paper effect.

  • I would like to find a program to draw lines, shapes and words for my iMac.

    If anyone can help me find a program or App for my iMac that lets me draw lines, shapes and letters.
         Thank You
         Sandy

    http://www.sketchup.com/
    Try this it is a free download and it is a great program. I almost feel guilty not paying anything:)

  • Adding PO (ACGL_ITEM-EBELN) and line item (ACGL_ITEM-EBELP) to MIRO GL tab

    I'm trying to add PO and line item (as input fields) to the GL tab of MIRO.  I see them in SHD0 but I cannot get them to appear in the t-code.  I've tried expanding the fields while in MIRO and still can't find the two fields.... thanks

    Thanks for the reply... however if you look at t-code SHD0 the purchase order and line item fields are there.. Also if you look at screen SAPLFSKB - 0100 the fields are there..... I just thoght that through screen variant (SHD0) I'd be able to add it to the GL tab....
    To be honest I don't know why my client asked me this... considering these two fields will be for reference....
    Edited by: Ron Clarkin on May 4, 2011 9:49 PM

  • How to get at Colour drop down box for simple shape ?

    Hi,
    If I go new file, Insert Symbol, Movie Clip, then draw a
    circle and a line using those two tools, I am unable to get the
    colour drop down box to show so that I can select Alpha. I have
    managed to do this many times for an imported to library graphic
    from Freehand, one simply clicks on the graphics line after the
    graphic has been drag/dropped to stage, go properties and the
    Colour drop down list from where you select the word Alpha appears.
    I have tried a single click, a double click, a treble click,
    just cant see that dropdown box for simple shapes !
    Help
    Envirographics

    Hi,
    If I go new file, Insert Symbol, Movie Clip, then draw a
    circle and a line using those two tools, I am unable to get the
    colour drop down box to show so that I can select Alpha. I have
    managed to do this many times for an imported to library graphic
    from Freehand, one simply clicks on the graphics line after the
    graphic has been drag/dropped to stage, go properties and the
    Colour drop down list from where you select the word Alpha appears.
    I have tried a single click, a double click, a treble click,
    just cant see that dropdown box for simple shapes !
    Help
    Envirographics

  • [svn] 3787: Added FxTextArea, FxTextInput, and TextView class-level examples to the Component Explorer.

    Revision: 3787
    Author: [email protected]
    Date: 2008-10-21 12:16:28 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Added FxTextArea, FxTextInput, and TextView class-level examples to the Component Explorer.
    Modified Paths:
    flex/sdk/trunk/samples/explorer/explorer.xml

    One workaround is to turn off automation:
    File-->Options, Advanced tab, General Section, uncheck "Enable Automation Events"
    However, you will loose the ability to configure callouts, and all of the commands in the Process Engineering tab.
    Another workaround is to change the loop number of the shape you are editing before changing its type. Then change the loop number back to the correct loop number.
    This is another example of the pernicious philosophy of trying to help the user do what the programmers think the user is trying to do that started in Excel 2000 (where you can no longer tell excel that you want a scatter plot - it will force the plot
    to be a line plot under certain circumstances).
    I suppose another option would be to modify the master and swap the text and subtype shapes in the indicator to use the subtype property for the loop number and then use the text for the instrument type. I guess this is what MS was trying to implement, but
    didn't explain it well enough to their programmers.

  • [Beginner] Moving a simple Shape

    Hi all !
    I need to write a simple application which draws basic shapes and let the user drag this shapes.
    I have found a sample code which does this with gif images rendered inside JLabels and adapted to use shapes (in this case a Ellipse2D) but nothing is drawn on the screen.
    Why ?
    Can anybody give me a help to fix it ?
    Thanks
    Francesco
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.Ellipse2D;
    import java.awt.image.BufferedImage;
    public class Main implements MouseMotionListener {
         JFrame frame;
         JLabel img;
         private final Graphics2D offscreen;
         public Main() {
              frame = new JFrame("test");
              frame.getContentPane().setLayout(null);
              frame.setBounds(0, 0, 500, 400);
              BufferedImage offscreenImage = new BufferedImage(200, 200,
                        BufferedImage.TYPE_INT_RGB);
              offscreen = offscreenImage.createGraphics();
              offscreen.setColor(Color.BLACK);
              offscreen.draw(new Ellipse2D.Double(10, 10, 120, 120));
              ImageIcon icon = new ImageIcon(offscreenImage);
              JLabel draw = new JLabel(icon);
              draw.addMouseMotionListener(this);
              frame.getContentPane().add(draw);
              frame.setVisible(true);
         public void mouseMoved(MouseEvent e) {
         public void mouseDragged(MouseEvent e) {
              img.setBounds(img.getX() + e.getX() - 10, img.getY() + e.getY() - 10,
                        36, 39);
         public static void main(String args[]) {
              new Main();
    }

    (1) When you use null layout you need to setBounds for each component, since there is no LayoutManager to take care of sizing and placement.
    (2) A newly constructed BufferedImage is filled with black pixels and drawing in black wouldn't show anyhow.
    Considering these two points, I've reworked your code... I renamed the reference variables as I find it inconvenient to have to remember that offscreen is in fact a Graphics2D object, and img is a JLabel. For future postings here, I strongly suggest that you name your variables after the class they represent... doing this will surely get you faster and better responses.import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.Ellipse2D;
    import java.awt.image.BufferedImage;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class Main implements MouseMotionListener {
        JFrame frame;
        JLabel label;
        private final Graphics2D graphics2D;
        public Main () {
            frame = new JFrame ("test");
            frame.getContentPane ().setLayout (null);
            frame.setBounds (0, 0, 500, 400);
            frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            BufferedImage bufferedImage =
                    new BufferedImage (200, 200, BufferedImage.TYPE_INT_RGB);
            graphics2D = bufferedImage.createGraphics ();
            graphics2D.setColor (Color.RED); // changed
            graphics2D.draw (new Ellipse2D.Double (50, 50, 100, 100));
            ImageIcon imageIcon = new ImageIcon (bufferedImage);
            label = new JLabel (imageIcon);
            label.setBounds (0, 0, 104, 104); // added
            label.addMouseMotionListener (this);
            frame.getContentPane ().add (label);
            frame.setVisible (true);
        public void mouseMoved (MouseEvent e) { }
        public void mouseDragged (MouseEvent e) {
            label.setBounds (label.getX () + e.getX () - 10,
                    label.getY () + e.getY () - 10,
                    label.getWidth (), label.getHeight ());
        public static void main (String args[]) {
            new Main ();
    }You might want to use a MouseAdapter or add a MouseListener to capture the coordinates of mousePressed and use them as an offset for a more intuitive drag effect.
    Cheers, Darryl
    PS -- I'm not really into Graphics work, just trying to learn something new -- could you or somebody tell me why the Ellipse2D constructor doesn't seem to behave as per the documentation?
    public Ellipse2D.Double(double x, double y, double w, double h)
    Constructs and initializes an Ellipse2D from the specified coordinates.
    Parameters:
    x - the X coordinate of the upper-left corner of the framing rectangle
    y - the Y coordinate of the upper-left corner of the framing rectangle
    w - the width of the framing rectangle
    h - the height of the framing rectangle
    From this program, I found that x and y appear to be at the center, and not the upper-left corner, of the framing rectangle -- or is my understanding flawed?
    db

  • Association between Jcheckboxes and lines of JTable

    Hello everybody,
    I would like to add a JChekBox to each line of my JTable knowing that the number of lines is given only at the time of the execution. The problem is that the contructor of JscrollPane can take only one JComponent in parameters:
    JScrollPane scrollpane=new JScrollPane(MyJTable);
    How can I make association line-JChekBox dynamically.
    I m waiting for your answers impatiently.
    Thank you for being attentive

    I don't understand your question. You where given a link to the JTable tutorial, that showed you how to add check boxes to the table.
    This is done by adding Boolean values to the TableModel. So once you know the number of rows in the table you create a simple loop and do:
    table.setValueAt(row, new Boolean(true) );

  • How to make the values of a combination graph (bar and line) visible always

    Hi ,
    I am using jdev 11.1.1.6
    i have created a combination graph which has a bar and line.
    The data with respect to bar and graph were only visible when i keep the mouse pointer on it.
    i need to set the values visible always.
    kindly let me know how to make it.
    In pie graph its by default showing the data always.
    regards
    Siva

    Hi Sameh Nassar,
    Thanks for the input, am using the combination graph and i dont have this property added till now.
    i tried adding them manually in source but it didn't work. so I assume that this property is good with pie chart alone.
    please correct me if am wrong.
    This is my combination graph structure.
        <dvt:comboGraph id="comboGraph1"
                          value="#{bindings.testVO1.graphModel}"
                          subType="COMBINATION_VERT_ABS_2Y" shortDesc="Graph 1">
            <dvt:background>
              <dvt:specialEffects/>
            </dvt:background>
            <dvt:graphPlotArea/>
            <dvt:seriesSet markerDisplayed="true">
              <dvt:series lineWidth="0"/>
            </dvt:seriesSet>
            <dvt:o1Axis/>
            <dvt:y1Axis/>
            <dvt:y2Axis/>
            <dvt:legendArea automaticPlacement="AP_NEVER"/>
            <dvt:graphTitle text="Combination graph"/>
            <dvt:o1Title text="x axis"/>
            <dvt:y1Title text="y1 axis"/>
             <dvt:y2Title text="y2 axis"/>
          </dvt:comboGraph>
    regards
    Siva

  • Howto: Display text in the border line of the JPanel

    I create a JPanel and set it's border, later i add a textField at the border line of the JPanel, but when the words i type in, the line of border still at the center of the textField. Pls Help

    try this:
    import javax.swing.border.*;
    TitledBorder myBorder = new TitledBorder(" my Title ");
    myPanel.setBorder(myBorder);
    null

  • Navigation hidden by shapes and slideshow.

    I created a horizontal navigation bar and pinned it on the master page.
    The site I am creating is one-page and scrollable. As I scroll down, the nav bar remains stationary. The problem I am having, however, is that as I scroll down it disappears behind shapes and a slideshow.
    How can I overcome this?
    note: Some of the pages have different solid backgrounds. For that, I have tried two approaches. One is to use the basic widget and drop a fill into the single image. The other is to create a rectangle with a solid fill. In either case, they are "moved to the back." Anyway, it is not working.

    Hi there..
    The best and simple solution for your problem is to create a new layer for your navigation bar,
    make sure to place it on the top of all layers and select all the elements of navigation bar, pin them to the center of your page.

  • Dreamweaver has added thousands of blank lines to my code

    I installed creative cloud and dreamweaver - I edited a few PHP  / HTML  / javascript  files on my server - now dreamweaver had added thousands of blank lines to my code. It will take days to clean them out and I can't seem to find a "find and replace" or "regular expression" to remove these... first of all... THANKS SO MUCH FOR GIVING ME THIS HEADACHE... and now.... HOW THE FRIG DO I GET RID OF THESE???
    It is dreamweaver that did it...
    I just tested and proved it.
    Took a well formatted html doc....
    Edited it (remotely) with two different software -
    Then connected Dreamweaver Edited it again... and WHAMO!
    11,0000 lines of new blank lines.
    Dreamweaver is for sure confusing something as a new line.
    Undoubted there is a reason for this... but it is for sure Dreamweaver the culprit for actuating it.
    The files are of course downloaded as temp files - edited - and then uploaded at save....
    So my tests are true and consistent.
    Three different editing software all performing the exact same steps.
    Yet - Dreamweaver adds thousands of blank lines.
    It looks to me as though it is adding the line where there was a return. Somehow interpreting it as 2 line returns.
    Whatever is happening - is happening inside dreamweaver, while using its "files connect to remote server" function.
    These are live websites with custom PHP, PHP frameworks, MySQL calls, Javascript and...
    I have been using the "Switch Design View To Live View" to test the PHP changes I make right in DreamWeaver.in Dreamweaver, how to prevent it, or how to get rid of the 10's of thousands of returns once they have been added.
    If anyone has any actual answers as to why this is happening …. Please let me know.
    I am not interested in assumptions from the many here who tend to waste a lot of space and time convoluting these forms.
    This is a real problem and has already been proven to be actuated by Dreamweaver... So please... Only answers that may help sort out why or how this is happening within Dreamweaver.
    Thank you.
    Regards,
    Ken

    Ken, I just posted a potential solution.
    Here is my post:
    For people having issues with DW (or any other ftp app) adding extra blank lines: changing the ftp mode to BINARY probably solves this behaviour. It happened once to me when using Filezilla ftp.
    Dreamweaver automatically uses ASCII to transfer readable text based files (like html and php). To change this transfer mode to BINARY, open FTPExtensionMap.txt (WIndows in AppData\Roaming\Adobe\Dreamweaver CS6\en_US\Configuration) and edit that file in a text editor.
    Then change the appropriate mappings.
    Hope that helps fix the problem.It's a known problem in certain cases, though I haven't experienced it a lot (just once a few years ago in Filezilla, actually). It has to do with how a Windows system and certain Linux systems might interpret CR LF and LF line endings.
    Read more here: https://wiki.filezilla-project.org/Data_Type

Maybe you are looking for

  • The XML page cannot be displayed Cannot view XML input using XSL stylesheet

    Hi Oracle Gurus, I got this error ...once i have submitted request it shows warning ..I opened output it shows the below error...i cant understand how to resolve this error...Please help me...It is PL/SQ L STORED PROCEDURE CODE... The XML page cannot

  • Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format

    We are unable to open pdf reports in Workspace with the following error. It was all working fine and doesn't work now for unknown reasons. Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format We are on 11.1.2.1 en

  • Retrieving technical settings for existing structure

    Hi! how to retrieve technical settings for existing structure? Is it somewhere in SE11? Will reward, Mindaugas.

  • Partner Recommendation?

    Post Author: DavidinMT CA Forum: General Feedback Rather than just pick a name off a list, I would like some recommendations for a Business objects Partner in the Northwest area. I am in Helena, Montana, and just took over support for our Crystal Rep

  • Problem w/ itunes and quiktime

    When I try to install the upgraded version of itunes, I get a message that tell me that quiktime has not completely installed. I have installed quiktime alone, but still the itunes will not install. How do I insall the latest version.   Windows XP