Multiline text in a jtree node

i'm not able to add the multiline text in a jtree node. i've checked the data in both the cases before adding into the tree and after adding into the tree. itz getting the data in the proper format. but while displaying inside the tree itz taking into the single line.
kindly help me to get the data in a multi line format in the jtree.
thanks in advance.
import java.awt.*;
import java.awt.event.*;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.tree.*;
import javax.swing.text.*;
public class DynamicTreeDemo extends JPanel {
public static String transactionName=null;
String p1Name=null;
   public static String duration=null;
    public static final String NEWLINE = System.getProperty("line.separator");
static String[] arrCorrelatorId={"110","122","129","132","130","136","111","109","131","124","127",null};
static String[] arrParcorrelatorId={"108","110","122","129","122","130","108","108","109","121","121"};
static String[] arrtransactionName={"FINT3","FINT17","FINT20","FINT52","FINT21","FINT18","FINT4","FINT3"," FINT31","FINT19","FINT51"};
public static MutableTreeNode node;
public static DefaultTreeModel model;
public static TreePath path;
public static JTree tree;
static String[] nodeName={"FINT3_108","FINT17_110","FINT20_122","FINT52_129","FINT21_122","FINT18_110","FINT4_108","FINT3_108"," FINT31_109","FINT19_121","FINT51_121",null};
public DynamicTreeDemo(JFrame frame) {
final DynamicTree treePanel = new DynamicTree(transactionName);
populateTree(treePanel);
JTextField name = new JTextField(20);
setLayout(new BorderLayout());
treePanel.setPreferredSize(new Dimension(300, 150));
add(treePanel, BorderLayout.CENTER);
JPanel panel = new JPanel();
panel.setLayout(new GridLayout(10,50));
add(panel, BorderLayout.EAST);
public DefaultMutableTreeNode newObj(String parent){
DefaultMutableTreeNode pname= new DefaultMutableTreeNode(parent);
return pname;
public void populateTree(DynamicTree treePanel)
     String p3;
     DefaultMutableTreeNode p2,nNode, p1;
     int ind=0, i=0,k=0, len=0, m=0;
     boolean flag= false;
     String desc;
     while(nodeName[m]!=null)
     p3 = nodeName[m];
     ind = p3.indexOf("_");
     p3 = p3.substring(0, ind);
       desc=NEWLINE +"hi"+NEWLINE+"how r u";
     if(arrParcorrelatorId[m].equals(arrParcorrelatorId[0]))
               treePanel.addObject(null, p3,desc);
     else{
          int loopcount=0;
          for(int j=0;nodeName[j]!=null;j++)
                    if(arrParcorrelatorId[m].equals(arrParcorrelatorId[j]))
                         for(int p=0;nodeName[p]!=null;p++)
                                   if(arrCorrelatorId[p].equals(arrParcorrelatorId[j]))
                                        p1=newObj(arrtransactionName[p]);
                                        System.out.println("parent:"+p1);
                                        System.out.println("child:"+p3);
                                        treePanel.addObject(p1, p3,desc);
                                        break;
                    break;
          m++;
public static void showNodes(String corrId)
     transactionName="FINT3";
public void DynamicDisplayNode(String corrId){
JFrame frame = new JFrame("DynamicTreeDemo");
showNodes(corrId);
Container contentPane = frame.getContentPane();
contentPane.setLayout(new GridLayout(1,1));
contentPane.add(new DynamicTreeDemo(frame));
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
frame.pack();
frame.setVisible(true);
public static void main(String[] args)
JFrame frame1=null;
DynamicTreeDemo demo= new DynamicTreeDemo(frame1);
demo.DynamicDisplayNode("108");
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.util.Enumeration;
import java.util.StringTokenizer;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
import javax.swing.event.TreeModelEvent;
import javax.swing.event.TreeModelListener;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeCellRenderer;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.*;
public class DynamicTree extends JPanel  {
    protected DefaultMutableTreeNode rootNode;
    protected DefaultTreeModel treeModel;
    protected JTree tree;
    protected DefaultTreeCellRenderer linksRenderer;
    public static final String NEWLINE = System.getProperty("line.separator");
    public DynamicTree(String appName) {
         rootNode = new DefaultMutableTreeNode(appName);
        treeModel = new DefaultTreeModel(rootNode);
        tree = new JTree(treeModel);
        tree.setEditable(false);
        tree.setShowsRootHandles(true);
        tree.setBackground(Color.white);
        tree.setCellRenderer(new DefaultTreeCellRenderer()
             public Component getTreeCellRendererComponent(JTree pTree,
                 Object pValue, boolean pIsSelected, boolean pIsExpanded,
                 boolean pIsLeaf, int pRow, boolean pHasFocus)
                   DefaultMutableTreeNode node = (DefaultMutableTreeNode)pValue;
                   JLabel lbl = (JLabel)super.getTreeCellRendererComponent(pTree, pValue, pIsSelected,pIsExpanded, pIsLeaf, pRow, pHasFocus);
                  lbl.setBorder(new LineBorder(Color.RED,1));
             /* Component c =  super.getTreeCellRendererComponent(pTree, pValue, pIsSelected,
                     pIsExpanded, pIsLeaf, pRow, pHasFocus);
                       if (node.isRoot())
                                      c.setForeground(Color.red);
                      else if (node.getChildCount() > 0)
                                c.setForeground(Color.blue);
                       else if (pIsLeaf)
                                c.setForeground(Color.black);//new Color(0x736AFF));*/
                       setBackgroundNonSelectionColor(Color.white);
                       JPanel p = new JPanel();
                       p.setBackground(tree.getBackground());
                       Dimension d = lbl.getPreferredSize();
                       p.setPreferredSize(new Dimension(d.width, d.height));
                       p.add(lbl);
                       tree.setRowHeight(30);
              return (p);
        JScrollPane scrollPane = new JScrollPane(tree);
        setLayout(new GridLayout(1,0));
        add(scrollPane);
    public void addObject(DefaultMutableTreeNode parent,Object child,String desc)
        child=child+desc;
        //System.out.println("child"+child);
            DefaultMutableTreeNode     parent1;
        DefaultMutableTreeNode childNode =
                new DefaultMutableTreeNode(child);
          if (parent == null)
                      parent = rootNode;
          else
               String parentName = (String)parent.getUserObject();
               String tok;
               Enumeration e=null;
               e=(Enumeration) rootNode.breadthFirstEnumeration();
               int breakloop=0;
               parent = rootNode.getLastLeaf();
                while (e.hasMoreElements() ) {
                    if(parent!= null)
                         //System.out.println("parent.toString():"+parent.toString());
                         tok=parent.toString();
                         StringTokenizer st = new StringTokenizer(tok);
                         parent1=newObj(st.nextToken());
                         if(parent1.getUserObject().equals(parentName))
                                   breakloop=1;
                                   break;
                         parent= parent.getPreviousNode();
               if(breakloop==0)
                    parent = rootNode.getLastLeaf();
          System.out.println("parent.toString():"+parent.toString());
          System.out.println("childNode"+childNode.toString());
          parent.add(childNode);
public DefaultMutableTreeNode newObj(String parent){
      DefaultMutableTreeNode pname= new DefaultMutableTreeNode(parent);
          return pname;
class MyTreeModelListener implements TreeModelListener {
        public void treeNodesChanged(TreeModelEvent e) {
            DefaultMutableTreeNode node;
            node = (DefaultMutableTreeNode)
                     (e.getTreePath().getLastPathComponent());
            try {
                int index = e.getChildIndices()[0];
                node = (DefaultMutableTreeNode)
                       (node.getChildAt(index));
            } catch (NullPointerException exc) {}
        public void treeNodesInserted(TreeModelEvent e) {
        public void treeNodesRemoved(TreeModelEvent e) {
        public void treeStructureChanged(TreeModelEvent e) {
}

Here is a simple example.
import java.awt.BorderLayout;
import javax.swing.*;
import javax.swing.tree.DefaultMutableTreeNode;
public class MultiLineTreeDemo extends JFrame {
     private JTree tree;
     public static void main( String[] args ) throws Exception {
          SwingUtilities.invokeLater( new Runnable() {
               public void run() { new MultiLineTreeDemo(); }
     public MultiLineTreeDemo() {
          super( "MultiLineTreeDemo" );
          setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
          DefaultMutableTreeNode root = new DefaultMutableTreeNode( "<html>This is<p>the root node.</html>" );
          DefaultMutableTreeNode node = new DefaultMutableTreeNode( "<html>This is<p>a child node.<html>" );
          root.add( node );
          tree = new JTree( root );
          setLayout( new BorderLayout() );
          JScrollPane scrollPane = new JScrollPane( tree );
          add( scrollPane, BorderLayout.CENTER );
          setSize( 200, 200 );
          setVisible( true );
}

Similar Messages

  • Changing JTree node text results in "..."

    I'm working with a JTree, and I have a problem if I change the text displayed on a node. After changing the node, I call nodeChanged( node ) on the tree model.
    What happens is that if the new text on the node is longer than the previous one, the text is cut short and the end replaced by "...". E.g. if the old text was "foo" and the new is "foobar", it turns out as "foo...". This happens even if there is more than enough space in the tree to hold the complete new name, e.g other nodes in the same column with longer names.
    I guess somehow, the tree doesn't properly correct the layout of the cell to accomodate the longer text. I feel it is a bug, since I use the proper calls on the tree model to notify of the change.

    nodeStructureChanged() will give the exact same behavior.
    A solution is to use SwingUtilities.invokeLater().
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){model.nodeChanged(node);}
        });

  • Xml to JTree, and JTree node to html file.

    I have been trying to figure out a way to do this and I think I have a solution, but I am not sure how to structure the application and methods.
    working with BorderLayout Panel p, JSplitPane split, JTree tree, and JEditorPane rpane
    1st. My JSplitpane is divided with the tree, and rpane. The tree is on the left, and the rpane is on the right. both of these are then added to the Panel p
    2. I will create a method that will read through a modules.xml file, and create a JTree - tree. When you click on the node element it's information is displayed in the right pane - rpane.
    The Problem. I think it would take to long to create the html file on the fly each when I click on each individual node.
    So my idea is to create the html files from many xml files when I run the program. I can then just load the html file when I click on each individual node.
    This means alot of heavy processing in the front end, and everything will be static, but it will be faster when the user is in the program.
    Problem. How do I associate each node element with the correct html file?
    The Tree elements are always the same, but I can have 1 or many modules.
    Here is an example:
    <device>  // - root
       <module1>
          <Status>
             <Network></Network>
             <Device></Device>
             <Chassis></Chassis>
             <Resources></Resources>
          </Status>
          <ProjMngt></ProjMngt>
          <ProjEdit></ProjEdit>
          <Admin>
             <admNetwork></admNetwork>
             <admUsers></admUsers>
          </Admin>
          <Logging></Logging>
       </Module1>
       ...  Now I can have 1 or many Modules depending on what the xml file  has in it.
       <Module*n>
    </device>Other problems. Some of the information I want to store as a sortable Table, but I cannot seem to get any of the sort methods to work. They work if I just open a browser, and run the html file, but if I stick the html file into the JEditorPane it does not work? - any suggestions?
    Also, can I pass a JTabbebPane to the JEditorPane, or can I create a tabbed pane in html that will do the same thing.
    I am working with a very small device. It does not have a web application container like Tomcat on it. Just Apache, and Java. That is why I am using Swing.

    Using 'productAttribute/text()' gets you all three productAttribute nodes and then grabs all the text under that node. It simply concatenates together all the text under the desired node, hence the results you are seeing. If you want to get the text for each child node separately, then you need to do something like (assumes 10.2.x.x or greater)
    WITH your_table AS (SELECT
    '<root><productAttribute>
    <name>Baiying_attr_03</name>
    <required>false</required>
    </productAttribute>
    <productAttribute>
    <name>Baiying_attr_04</name>
    <required>false</required>
    </productAttribute>
    <productAttribute>
    <name>Baiying_attr_05</name>
    <required>false</required>
    </productAttribute></root>' xmldata
    FROM DUAL)
    -- Above simulates your DB table as I don't have it
    -- You only care about the following
    SELECT xt.*
      FROM your_table yt,
           XMLTable('/root/productAttribute'
                    PASSING XMLTYPE(yt.xmldata)
                    COLUMNS
                    prd_nm   VARCHAR2(30)  PATH 'name',
                    prod_rqd VARCHAR2(5)   PATH 'required') xt;Note: I added a <root> node as you had just provided a XML fragment. You will need to adjust accordingly.
    The above produces
    PRD_NM                         PROD_RQD
    Baiying_attr_03                false
    Baiying_attr_04                false
    Baiying_attr_05                false

  • How to do SelectAll() when during JTree node edit?

    This question's been asked a few times but the answers haven't been very clear ( or the code that was posted was broken, etc. )
    I have a JTree -- when the user edits a node, I want to initially select all the text in the .that node.
    Does anyone have a SIMPLE, COMPLETE extension of a DefaultTreeCellEditor which does this? If so, please post. -- No fancy bells or whistles.
    Thanks much.

    ...well, there is a very easy, but not clean way to do it:
             * Configures the editor.  Passed onto the <code>realEditor</code>.
            public Component getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) {
                DefaultTreeCellEditor.EditorContainer comp= (EditorContainer) super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
                JTextField textField= (JTextField) comp.getComponent(0);
                textField.setSelectionStart(0);
                textField.setSelectionEnd(textField.getText().length());
                return comp;
            }This will work if you click the node twice and wait to call the editor, however most users will start editing a TreeNode by clicking multiplely on the node - as the Editor is a normal TextField, it will lose it's selection when being clicked upon. If this is a problem for you, just overwrite DefaultTreeCellEditor.DefaultTextField's processMouseEvent(MouseEvent) method and decide whether the click should remove the selection or not.
    I guess if you ask for a piece of code which will keep the text selected you have something special in mind to do with the editor, so sample code wouldn't do you much good here. Get back to me if you have trouble intercepting the mouse event.

  • How could i put the text background of each node transparent?

    I am working on JTree. I Assign distinct icons to each node and a background image to the Jtree. I use transparent images to each node but the background text of each node have color. How could i do to put the text background of each node transparent.

    Your tree cell renderer should include the line "setOpaque(false);".

  • Changing the Jtree node value

    hi,
    I have created a JTree node and i want to change the nodes string.
    say for example from "child1" to "newchild1". Only the text displayed on the tree shoud be changed and the new value is got from a text box.
    uma

    You can change the value of a path using valueForPathChanged of the TreeModel:
    tree.getModel().valueForPathChanged(path, str);

  • Integrate html tags in a string and display it in a multiline text area

    Hi ABAPers!!
    First of all let me tell you that I'm working in ACCENTURE Casablanca(Morocco) and this is my first Job in my career.
    I'm working on an ALV OO, the program consists on creating an ALV using OO, In my selection screen there's a parameter of type ddobjname I provide the name of table and it returns the table's fields in another dynpro (screen0100), To do this I used the FM: 'DDIF_FIELDINFO_GET' then I append the internal table returned in another one to add the field CB (CheckBox), and I add a button in the toolbar, the function of this button is to generate a MySQL script To create the table provided by the user in my parameter (Screen 1000), but the fields of this table(MySQL) in the generated script are only the selected ones by cheking the checkbox in the ALV.
    I store my script in a string.
    My problem is that I want to show my script in a text area, but I don't know how to create a multiline text area!!
    And I want to use HTML tags in my string.
    I don't want to my string like this :
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] SPFLI ( CONNID CHAR ( 4 ) NOT NULL PRIMARY KEY , FLTIME INT ( 10 ) , DEPTIME DATETIME ( 6 ) , DISTANCE DOUBLE ( 9 ) , FLTYPE VARCHAR ( 1 ));
    But I want it to be shown like  this:
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] SPFLI (
    CONNID CHAR ( 4 ) NOT NULL PRIMARY KEY ,
    FLTIME INT ( 10 ) ,
    DEPTIME DATETIME ( 6 ) ,
    DISTANCE DOUBLE ( 9 ) ,
    FLTYPE VARCHAR ( 1 ));
    Thanks in advance
    Regards
    SMAALI Achraf
    Edited by: SMAALI90 on May 11, 2011 7:12 PM

    Hi again!!
    You know what!! let's forget the HTML and focuse on what I want to show.
    As I told you, I've a string which contains my script.
    I don't want that it will be shown as a simple line like this :
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] SPFLI ( CONNID CHAR ( 4 ) NOT NULL PRIMARY KEY , FLTIME INT ( 10 ) , DEPTIME DATETIME ( 6 ) , DISTANCE DOUBLE ( 9 ) , FLTYPE VARCHAR ( 1 ));
    But I want it to be shown as follows:
    CREATE [TEMPORARY] TABLE [IF NOT EXISTS] SPFLI (
    CONNID CHAR ( 4 ) NOT NULL PRIMARY KEY ,
    FLTIME INT ( 10 ) ,
    DEPTIME DATETIME ( 6 ) ,
    DISTANCE DOUBLE ( 9 ) ,
    FLTYPE VARCHAR ( 1 ));
    and finally I want to show it in a multiline text area.
    Plz what shud I do?!!! If possible I need a piece of code.
    PS : I create a HTML Viewer using this code :
    DATA : go_conteneur          TYPE REF TO cl_gui_docking_container,
                 go_controle_html    TYPE REF TO cl_gui_html_viewer.                 
      CREATE OBJECT go_conteneur                     
        EXPORTING                                    
          repid     = sy-repid                       
          dynnr     = '0100'                         
          side      = go_conteneur->dock_at_bottom   
          extension = 1000                           
          name      = 'CONTENEUR'                    
        EXCEPTIONS                                   
          OTHERS    = 1.                             
      CREATE OBJECT go_controle_html                 
        EXPORTING                                    
          parent = go_conteneur                      
        EXCEPTIONS                                   
          OTHERS = 1.
    But when it's shown my ALV disappears!!!

  • How to set the default text in an input box or a label to be a predefine, multiline text

    how to set the default text in an input box or a label to be a predefine, multiline text. In other words how to break the line in the code of a text box.
    thank you

    There are a couple of ways of doing this:
    If you're editing on the canvas, press Shift + Enter.
    If you're working in Express View (see lower right hand corner of Project Siena), you'll need to copy a hard return from another app such as Notepad.
    I believe a better implementation of hard returns are in the list of requested functionality that you can find here:
    https://social.technet.microsoft.com/Forums/en-US/2e1f9446-56b2-419a-9c17-7037d2cd6146/from-the-community-overview-of-requested-additional-functionality?forum=projectsiena
    Thor

  • Converting multiline text string to single line

    How do I convert a multiline text string into a single line text string

    Hi Bart,
    what's a multiline text string?
    1) You have an array of string: simply use "string concatenate" to convert from array to scalar string.
    2) Your string contains CR and/or NL characters: use "Search/Replace..." for this string, replace all EndOfLine chars by space (or which char you may prefer)...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Xml in JTree: how to not collpase JTree node, when renaming XML Node.

    Hi.
    I'm writing some kind of XML editor. I want to view my XML document in JTree and make user able to edit contents of XML. I made my own TreeModel for JTree, which straight accesses XML DOM, produced by Xerces. Using DOM Events, I made good-looking JTree updates without collapsing JTree on inserting or removing XML nodes.
    But there is a problem. I need to produce to user some method of renaming nodes. As I know, there is no way to rename node in w3c DOM. So I create new one with new name and copy all children and attributes to it. But in this way I got a new object of XML Node instead of renamed one. And I need to initiate rebuilding (treeStructureChanged event) of JTree structure. Renamed node collapses. If I use treeNodesChanged event (no rebuilding, just changes string view of JTree node), then when I try to operate with renamed node again, exception will be throwed.
    Is there some way to rename nodes in my program without collpasing JTree?
    I'am new to Java. Maybe there is a method in Xerces DOM implementation to rename nodes without recreating?
    Thanks in advance.

    I assume that "rename" means to change the element name? Anyway your question seems to be "When I add a node to a JTree, how do I make sure it is expanded?" This is completely concerned with Swing, so it might have been better to post it in the Swing forum, but if it were me I would do this:
    1. Copy the XML document into a JTree.
    2. Allow the user to edit the document. Don't attempt to keep an XML document or DOM synchronized with the contents of the JTree.
    3. On request of the user, copy the JTree back to a new XML document.
    This way you can "rename" things to the user's heart's content without having the problem you described.

  • How to Shift Multiline Text in a Picture ??

    Hi All,
    I have written a MultiLine Text in a Picture using "Draw Text at Point" Function. How can I shift (right and left) my first line of the text in the picture without shifting other text lines in the picture ???
    Please help it is very IMPORTANT.
    I am using LabVIEW 2011.
    Thank you so much.

    You can use the Picture to Pixmap VI followed by the Unflatten Pixmap VI to convert the picture to a 2D array. You can now use the array primitives (Array Subset, Replace Array Subset) to move the pixels to where you want them and then convert back to the picture.
    The other alternative, if the picture is newly created, is to just recreate it with the new values.
    Try to take over the world!

  • SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.

    Hi there,
    Does someone know in SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.
    Thanks,

    Hi,
    Per my knowledge,
    it is by design that the data type multiple lines of text can only use “contains” and “begins with” operators.
    You can also filter the list view using SharePoint Designer,
    Open your list AllItem.aspx page in SPD ->click “Filter” > in “Field Name” select your multipe line of text field, in “Comparison” will displayed four choices.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • PopupMenu on Jtree nodes Please [b]Help me][/b]

    how can I set my JpopupMenu to work on Jtree nodes and not on the tree?

    how can I set my JpopupMenu to work on Jtree nodes
    and not on the tree?Could you elaborate? Are you asking that popup events are ignored if the mouse click is not actually on the rendered area of a node or are you asking something else?

  • Need to read text file content and have to display it in multiline text box

    dear all,
    Need to read text file content and have to display it in multiline text box.
    actually im new to file handling. i have tried up to get_line and put_line.
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    i dont know how to assign this get_line function to text item
    pls help me in this regards,

    Simply write:
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    :block2.t1 := chr(10)||:block2.t1||chr(10)||linebuf;
    chr(10) --> is for new line character

  • How to sort Jtree node?

    Now, I want to sort tree node by increasing.
    for example there are three child node:
    [20 -40][
    10 - 20]
    [30- 60].
    they are added to JTree node by different order.but are shown in increasingorder.
    like this:
    [10 - 20]
    [20 -40][
    [30- 60].
    how to control tree node.

    Implement the Comparable interface in t he userobject class and possibly the toString(0 as well.
    Ex.
    public class UserObject implements java.lang.Comparable{
    public int compareTo(Object obj) throws ClassCastException
    public String toString()

Maybe you are looking for

  • How to have 2 link colors on one page?

    Learning CSS and am unable to make this happen. What am I doing wrong? http://larrysullivandesign.com/sourceprintmedia.com/_contact.html http://larrysullivandesign.com/sourceprintmedia.com/sourceprintmedia.css The text links at page bottom (link-type

  • Index out of bound array : calling bapi

    Hi, I am facing a problem while executing a BAPI using the SAP .net connector. The steps I performed are as follows: Created a web project in Visual Studio .net using VB.net Added the SAP Connector Proxy to the project Dragged a Bapi_Customer_Getcont

  • Why is iTunes repeatedly saying that the comp is not authorized to sync with my iPhone despite having repeated the steps to authorize it??

    iTunes does not sync with my iPhone; saying that the comp has not been authorized to. It suggests that i authorized it by going to Store > Authorize This Computer. I did exactly that, and it still refuses to sync. I'm not able to sync my music, video

  • Error during updating - phone will not update to newer O.S.

        WHile trying to update to newer OS get two messages - First that I have purchased items that are not transfered to ITunes library -  I just chick continue.... Then backup starts but always freezes at two (2) bars then I get the failure message.  

  • Help! - colour profile of screen changes

    Hi all, I'm new to macs - this is my first. I am a keen photographer and will be using it to edit photos Overall I have noticed a 'warm' or yellowy cast to the screen which can be changed by calibrating but the weird thing is... the colour balance an