JList selection error

Hi!
I haveing great problems with getting the JList to function properly and dont understand why.
The problem is that no selection of the JList can be performed at all, etc no highligting at all.
Anyone who sees the error? This is my first time buliding this kind of object, so any suggestions to improvements is also welcome!
Best regards Wargrammer
code:
public class GUI2 implements ListSelectionListener{
private MyListModel JposListModel = new MyListModel();
private JList JposAdapterList     = new JList(JposListModel);
      public GUI2(){
                     JposAdapterList.setCellRenderer(render);
     JposAdapterList.setBackground(Color.BLACK);
     JposAdapterList.setFocusable(true);
     JposAdapterList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
     JposAdapterList.setSelectedIndex(0);
     JposAdapterList.addListSelectionListener(this);
    public void update(){
          JposListModel.updateList();
class MyListModel extends DefaultListModel{
       void updateList(){
     Vector results = testResultModel.getTestResults();
     this.removeAllElements();
     for (int i = 0; i < results.size(); i++){                    
                    this.addElement(results.get(i));
     this.setSize(results.size());                              
public class CellRenderer extends DefaultListCellRenderer {
            public Component getListCellRendererComponent(JList list,
     Object value,
     int index,                                        boolean isSelected,
     boolean hasFocus) {
                    JLabel label = new JLabel();
     if (value instanceof ObjectImpl) {
                  ObjectImpl temp = (ObjectImpl)value;
                  label.setText(temp.getTypeId() + " : " + temp.getLogicalName());
                   if(temp.getStatus()< 0){
          label.setForeground(Color.RED);
       return label;
}

The basic problem is that you are not setting the fg/bg colours according to whether the cell is selected in your ListCellRenderer. If you look at the source code for DefaultListCellRenderer then you will see that it does this.
More serious, though, is that you are extending DefaultListCellRenderer, which is itself a label and a suitable object to return but creating a new JLabel every time the renderer is called and returning that instead. This is not only pointless but wasteful.
Try changing your code to either call the super class method and then do your own stuff on this or get the necessary highlight code ideas from the JDK source and extend JLabel yourself. In both cases, realise that the label is reused by swing whenever it wants to paint a cell, and you don't want to create a new one.

Similar Messages

  • Field Selection error for movement type and G/L account

    I am currently experiencing a field selection error between movement type 601 and G/L account 7140000.  The problem field is 'Segment'.  This field is set to required for the G/L account, but it is hidden for the movement type 601. This inconsistency causes an error when posting the goods movement. According to business requirement the field must be required for the G/L account, therefore we must make this field optional for the movement type.
    However, in configuration the field segment does not appear for the movement type 601. Therefore it can not be changed to optional.
    Does anyone know a workaround other than making this field optional for the G/L account because the business requirement is to have this field as required?????
    Many Thanks

    Hi,
    On the Error message detail, system will guide you to the Configuration details for Field settings for Movement type & Account, please get in touch with your FI consultant, to make the Field selection for the account similr to that of your movement type, this is a very common issue.
    Regards
    Chandra Shekhar

  • JList selection problems

    I'm having problems with JList selection - it's really wierd.
    I have a Jlist and on different selections I want to do stuff - well, I do see the GUI line get highlighted but everytime my ListSelectionListener is called the selected index stays 0.
    also, it always calls the ListSelectionListener twice for every selection I make.
    here's how my code looks:
    (typesList is my JList)
    typesList.setSelectedIndex(0);
    typesList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    typesList.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
          public void valueChanged(ListSelectionEvent e) {       
            int newSelection = typesList.getSelectedIndex(); //this returns always 0!        ...
          }

    Look at the line getValueIsAdjusting... (only one selection is processed. And, this code works and provides proper index.
        * Method to load all Tables from Database user
        public void loadTables() {
            // run Database request
            tableListModel = getListModelData("select object_name from user_objects where object_type = 'TABLE'");
            // now plug List with Model
            tableList = new JList(tableListModel);
            tableList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            tableList.setSelectedIndex(0);
            //tableList.addListSelectionListener(this);
            tableList.addListSelectionListener(
                new ListSelectionListener() {
                    public void valueChanged( ListSelectionEvent e )
                        if(e.getValueIsAdjusting()) return;
                        String tablename = tableList.getSelectedValue().toString();
                        showColumnData(tablename);
                        displayAllTableData(tablename); //intensive (reworking)
            jScrollPane1.add(tableList);
            jScrollPane1.setViewportView(tableList);
            showColumnData(tableList.getSelectedValue().toString());
        }PiratePete
    http://www.piratepetesoftware.com

  • JList selection is listened twice

    Hi
    How to make JList selection listener to catch selection events for only one mouse click (mouse pressed or mouse released)

    Hi,
    you are right!
    first time e.getValueIsAdjusting() is true second time
    it is false. It does not corrspond to mousePressed or mouseReleased. I think the first is an item loosing selection and the second is another item getting selection (just a guess).
    Phil

  • How to 'veto' a jList selection change

    Hi All,
    I have a JList which I'm using as a record selector - so whenever my user selects an item on the list, the associated record is loaded up into the other controls on this form for editing. If the user edits any of the data items, I want to ask whether to save changes or not if another item is selected from the JList. So, I've added code in my 'selection changed' function to check for changes and show a 'yes/no/cancel' JOptionPane. The code for my 'yes' and 'no' respones work fine - either save the changes or not, then show the next record. My problem is handling if a user clicks cancel...
    If the user selects 'Cancel', I dont want any of my "show new record" code to execute (this is easy, I can just 'return' out of the function) but also I don't want the JList selection to change. I've tried calling setSelectedIndex() back to the originally selected item, but this in turn triggers my 'selection changed' function to be called again, which causes the user to be asked twice whether they want to save changes!
    So, what I'm after is a kind of beforeSelectionChanged event, which allows the possibility of denying the selection change - but it doesn't look like this exists! I vaguely remember another language (possibly C++/MFC) having this - the user's action could be ignored depending on the return value of the function. Can anyone offer a way of achieving this in Java?
    (It's been a while since I last touched Java, and I'm a complete n00b with Swing. Using NetBeans as my IDE.)
    Thanks in advance for any suggestions!
    Andy

    The way I do it, is to implement a VetoableSelectionModel similar to a bean with a vetoable property: on selection change it queries registered VetoableChangeListeners if they don't object and backs out if one of them barks.
    HTH
    Jeanette

  • "no content selected" error on nokia 5310

    So i bought a pretty little 5310, and am loving it so far. have hit a few speed bumps when trying to upload with my mac, but have got alomst all of them fixed. almost.
    the last time i updated my music library, i noticed my dedicated shortcut keys on the left of the phone no longer work on their own.
    when i go through the menu, or use the shortcut key to initially access the music player, the dedicated keys will work for pausing, and skipping tacks. but, say i'm at the 'home' screen of the phone , and just hit the keys on the side. .. they show a 'no content selected' error.
    when, in the past, after my first library update, if i hit those keys at ANY time, wether the music player was open or not, it would automatically play my library.
    there is probably a ridiculously easy solution to this, but to hell if i can figure it out!
    i've read every post on every board i could find, and read the manual six times.
    any suggestions?

    i've fixed the error!
    apparently, the phones have TWO music players.
    one in the menu shortcut key, and one buried in the 'media' section on the phone.
    apparently, to play a playlist from the dedicated keys on the side, you have to use the BURIED music player in the media section.
    once in there, select playlist, and choose your playlist. for me, i had to create a new playlist and manually open AND add EVERY song in my library to that new playlist, so that it would play nonstop with the keys.
    try that - it may be the same issue for you, as my problem happened after i reformatted the memory card and re-added new music.

  • UPPER Indexes cause select ERROR!

    I downloaded Oracle 10g and installed it on a windows 2003 server. When I created UPPER indexes on a table, and the table has many rows, SELECT statement failed.
    for example:
    DROP TABLE TestTab;
    CREATE     TABLE     TestTab(
         id          NUMBER(9)     DEFAULT 1 NULL,
         name          VARCHAR2(32)     NULL,
         address          VARCHAR2(64)     NULL,
         PRIMARY     KEY     (id)
    DROP INDEX TestTab_01;
    CREATE     INDEX     TestTab_01 ON TestTab(UPPER(name));
    DROP INDEX TestTab_02;
    CREATE     INDEX     TestTab_02 ON TestTab(UPPER(address));
    create or replace procedure ADDDATA
    IS
    lCount     NUMBER;
    BEGIN
    lCount := 1;
    LOOP
    INSERT INTO TESTTAB VALUES(lCount, TO_CHAR(lCount, '00000'), TO_CHAR(lCount, '00000'));
    lCount := lCount + 1;
    IF lCount >= 80000 THEN
    EXIT;
    END IF;
    END LOOP;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    ROLLBACK;
    RAISE;
    END;
    EXEC ADDDATA;
    SELECT COUNT(*) FROM TestTab;
    SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
    OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;
    ID
    100
    101
    102
    SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
    ID
    105
    106
    It looks like that the first index could be used and the second index couldn't be used and indexes caused select errors.

    indexes caused select errors. Which errors ? I did exactly what you posted, and these are the results :
    TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
    OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;  2
                 ID
                100
                101
                102
                105
                106
    TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100'
    OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
                 ID
                100
                101
                102
                105
                106
    TEST@db102 SQL> select count(*) from testtab;
           COUNT(*)
              79999
    TEST@db102 SQL>                                                                                    

  • JList to JList Selection Exchange

    I'm trying to build a GUI for a project where
    Selectable Values can be transfered from one list to
    another. I cant explaine what I mean to well so an ASCII picture may come in handy:
    From: --> To:
    JList <-- JList
    Note: --> and <-- are Buttons to do the swaping.
    I cant seem to Lay this out I've tried GridBag Grid, Box,
    Border as type of ways of laying it out Can someone please help.

    Ok new Quandry!
    How do I transfere JList Data to annother JList and remember avery & gt; is supposed to be > and any <x> are really [x];
    Here is my code I've tried but it doesn't work.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    class LtoL extends JFrame implements ActionListener
         public LtoL()
              String listtest[] = {"one","two","three","four","five","Six"};
              JList rightList = new JList();
              JLabel rightLabel = new JLabel("Selected Processes");
              JList leftList = new JList(listtest);
              JLabel leftLabel =  new JLabel("Available Processes");
              JPanel buttonPanel = new JPanel();
              JPanel buttonPanelNorth =  new JPanel();
              JPanel buttonPanelSouth =  new JPanel();
              JPanel rightSide = new JPanel();
              JPanel leftSide = new JPanel();
              JButton toRight = new JButton("Add Process");
              JButton froRight =  new JButton("Remove Process");
              JButton nextPage =  new JButton("Continue");
              toRight.addActionListener(this);
              froRight.addActionListener(this);
              rightSide.setLayout(new BorderLayout());
              leftSide.setLayout(new BorderLayout());
              rightSide.add(rightLabel,BorderLayout.NORTH);
              rightSide.add(rightList,BorderLayout.CENTER);
              leftSide.add(leftLabel,BorderLayout.NORTH);
              leftSide.add(leftList,BorderLayout.CENTER);
              buttonPanelNorth.setLayout(new BorderLayout());
              buttonPanelSouth.setLayout(new BorderLayout());
              buttonPanel.setLayout(new GridLayout(2,0));
              buttonPanelSouth.add(toRight,BorderLayout.NORTH);
              buttonPanelSouth.add(nextPage,BorderLayout.SOUTH);
              buttonPanelNorth.add(froRight,BorderLayout.SOUTH);
              buttonPanel.add(buttonPanelNorth);
              buttonPanel.add(buttonPanelSouth);
              JPanel mainPanel =  new JPanel();
              mainPanel.setBorder(new EmptyBorder(new Insets(5,5,5,5)));
              mainPanel.setLayout(new GridLayout(0,3));
              mainPanel.add(leftSide);
              mainPanel.add(buttonPanel);
              mainPanel.add(rightSide);
              this.getContentPane().add(mainPanel);
              //Placement 
              Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
              setLocation(dim.width/4-this.getWidth()/2, dim.height/4-this.getHeight()/2);
              //Actions
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              //Show it
              setSize(640,480);
              setResizable(true);
              setVisible(true);
         public void actionPerformed(ActionEvent e)
              if( e.getActionCommand().equals("Add Process"))
                   //on button Add :
              rightList.setSelectedIndices(leftList.getSelectedIndices());
              else
                   //on button remove
              leftList.setSelectedIndices(rightList.getSelectedIndices());
         public static void main(String args[])
              LtoL l = new LtoL();
    }I here are the errors i get as well when i try to compile it.
    cannot resolve symbol leftList or rightList why?

  • JList selection focus problem

    Hi,
    I'm trying to write a help viewer similar to a MS one. I would like to be able to type characters into a textfield,and as they are typed, the matching JList item is selected.
    This works, but the selected item in the JList is only painted as selected when it gains focus. Is there any way to make a JList item paint as if it is selected and has focus, even though another component actually has the focus?
    Thanks.

    Make a custom cellrenderer extending the DefaulListCellRenderer and let it do smething like the code below. The borders on cellHasFocus are my custom variants, but I guess it's easy to find the default ones if you like.
    Have a look in the tutorial about custom renderers and in the performande book at :
    http://java.sun.com/docs/books/performance/
    or more precisly at:
    http://java.sun.com/docs/books/performance/1st_edition/html/JPSwingModels.fm.html#1001816
    It's easy to make some errors in renderers... Never create any new objects and other things and you're halfway there.
      public Component getListCellRendererComponent(JList list, Object value,
           int index, boolean isSelected, boolean cellHasFocus)
              if (isSelected)
                 this.setBackground(list.getSelectionBackground());
                 this.setForeground(list.getSelectionForeground());
              else
                 this.setBackground(list.getBackground());
                 this.setForeground(list.getForeground());
              if (cellHasFocus)
                 this.setBorder(hasFocusBorder);
              else
                 this.setBorder(hasNotFocusBorder);
              return this;
       }

  • Getting the MDX query select error when running a webi report on BI query

    Getting the following error when running a webi report on BI query :
    A database error occured. The database error text is: The MDX query SELECT  { [Measures].[D8JBFK099LLUVNLO7JY49FJKU] }  ON COLUMNS , NON EMPTY [ZCOMPCODE].[LEVEL01].MEMBERS ON ROWS FROM [ZTEST_CUB/REP_20100723200521]  failed to execute with the error Unknown error. (WIS 10901).
    I have gone through many threads related to this error. But not able find the steps to follow for resoultion.
    Please help in this regard.
    Thanks,
    Jeethender

    The Fix Pack is also for Client Tools--it is a separate download.  Please see the text below for ADAPT01255422
    ADAPT01255422
    Description:
    Web Intelligence generates an incorrect MDX statement when a characteristic and a prompt are used.
    The following database error happens: "The MDX query ... failed to execute with the error
    Unknown error (WIS 10901)."
    New Behavior:
    This problem is resolved.
    This information is also available in the Fixed Issues document for any Fix Pack greater than 2.2.

  • "Function code cannot be selected" error while uploading a document.

    Hi,
    When we try to upload a document into SAP the user is getting the error "Function code cannot be selected". Detailed error is given below. Only one user is facing this error in PRD. For all other users it is working fine. We replicated the same issue in testing systems and it is working fine there with the same user's id.
    The detailed error is,
    No batch input data for screen SAPLF040 0300
    Message no. 00344
    Diagnosis
    The transaction sent a screen that was not expected in the batch input session and which therefore could not be supplied with data.
    Possible reasons:
    1. The batch input session was created incorrectly. The sequence of screens was recordly incorrectly.
    2. The transaction behaves differently in background processing in a batch work process than when running in dialog (SY-BATCH is queried and changes the screen sequence).
    3. The transaction has undergone user-specific Customizing and therefore certain screens may be skipped or processed differently, according to the current user. If the person who created a batch input session is not the same as the person now processing it, this problem may occur frequently.
    System Response
    None.
    Procedure
    For 1: Either re-create the session or process it in expert mode. Correct the batch input program.
    For 2. It is very difficult to analyze this problem, particularly in the case that the screen sequence or the display-only options of fields differ according to whether the transaction is being processed in the background or as an online dialog. It could also be that this kind of transaction cannot run with batch input.
    For 3: Have the creator of the session process it. If no error occurs now, then this is a program with user-specific Customizing.

    Hi Amar,
    I am facing the same issue while processing Vendor master inbound idocs, Few Idocs gone in error with error message "Function code cannot be selected".
    Could you please suggest any solution found for the same.
    Thanks in advance
    Shivam

  • Open Items Selection  - Error Message 5593

    Hi Freinds,
    While clearing the open items using the T Code F-03, the items are initially selected. However, when the users try to deselect the items using the 'Deselect' option, the system gives the error message "Check Marks were removed" Message No. F5593.
    Could you please advise as to what could be the reason and why the user is not able to deselect.
    Thanks!
    Regards,

    HI Murli,
    Thanks for the prompt response, I have checked in OB09, this refers to the Account Determination for OI Exchange Rate Differences and the entries maintained appear to be ok. What else could be the issue?
    Regards

  • You must make at least one selection. error prompting from af:table

    hi jdev 11.1.1.5.0. groups.
    i have some problem with af:table row selection property and display row property.
    Is it framework had any rule using these two property with an certain dedicated combination.
    if i hit insert button, and i make scroll means i get this error.
    <af:table value="#{bindings.Prospects1.collectionModel}" var="row"
                        rows="#{bindings.Prospects1.rangeSize}"
                        emptyText="#{bindings.Prospects1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.Prospects1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.Prospects1Query.queryDescriptor}"
                        queryListener="#{bindings.Prospects1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.Prospects1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.Prospects1.collectionModel.makeCurrent}" id="t1"
                        partialTriggers="::ctb1 ::ctb2 ::ctb3 ::ctb4 :::ctb5 :::ctb7 :::ctb6 :::ctb40"
                        editingMode="clickToEdit" styleClass="AFStretchWidth" first="1"
                        immediate="true" displayRow="selected"
                        rowSelection="single">
    insert button code
    <af:commandToolbarButton
                                           text="Insert"
                                           disabled="#{!bindings.CreateInsert.enabled}"
                                           id="ctb5" icon="/Images/add.png"
                                           disabledIcon="/Images/add-disable.png"
                                           action="#{backingBeanScope.MKG1010A.InsertOnProspects}"
                                           partialSubmit="true"/>sometimes it make fires. sometimes may not.
    why am doing like this i want perform insertion at very very first row
    Important thing: dnt want any scroll see that first row what i means is:
    if i use display row as first. while hitting insertion insertion perform first row. but i want to scroll up towards to see that.
    see the pics.
    http://imageshack.us/photo/my-images/100/oneselection.png/
    I inserted an row. but it is top, when i able to scroll see that means. the error throwing.

    additional info.
    i had doubt with my select one choice
    i had two select choice in my af:table. you can see one of the selectonechoice in my picture which is named rating column.
    by defualt
    In vo i give some literal value two of the selectone choice. at while inserting defualt values will be supplied.
    so where problem is hindering behind?
    Edited by: ADF7 on Apr 17, 2012 7:23 AM

  • SQL select error

    Hi,
    I tried the following..
    statement.executeQuery("select pathloss from PathLossTable where srcx =" + x_coordinate + "AND (srcy = " + y_coordinate + ") AND (destx = " + bsPosX + ") AND (desty = " + bsPosY+")");
    x_coordinate, y_coordinate, bsPoxX and bsPosY are variables, while srcx, srcy, destx and desty are column names in SQL table.
    This gives me an error like
    [Microsoft][ODBC Driver Manager] Invalid cursor state
    Can anyone tell me what the error is??
    Thanks,
    Shashi

    Where exactly is the exception thrown?
    Like shashilv said:
    Obviously not by executeQuery.
    Post your code, what you are doing with the resultset.
    Typical mistake with JDBC-ODBC:
    It doesn't support more than 1 statement at the same time for the same connection.
    Have you done this?

  • How do I get my JList selection to Display after changing

    Granted there are probably 1,000,000,000 ways to write this code. The intent is to have a list of items that are assigned into catagories and when an item is selected the catagories that the item are in are highlighted in the list. This part works OK, as I change items the catagories change to reflect the current item catagories. I have two buttons to add catagories to items and remove catagories from items. The catagory to add is selected from a JCombo drop down list and then the user clicks the addcat button to add the catagory to the item.
    My problem is that the catagories in the JList (that also reside in a JScrollPane) do not show as selected after the list is updated. If I click the addcat button twice then the new catagory is highlighted. I thought that the suggestion in other forum messages to add revalidate and repaint would work so I tried that both at the list and the scrollpane level with no effect.
    -------------- Button Listener code --------------------
    addcat.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    // get the curent catagory from the JCombo..
         String selectedcat = (String) fullcatlist.getSelectedItem();
    // get the curent Item from the JCombo..
         String selecteditem = (String) itemlist.getSelectedItem();
    // add item to catagory
         items.addItemCatagory(selecteditem,selectedcat);
    // debug
         product.setText(selectedcat +"::"+selecteditem);          
         int cnt = 0;
    // get a list of all catagories for this item
         String[] tgtList = catagories.getItemCatagories(selecteditem);
         // debug
         product.setText(selectedcat);          
    // get the JList list
         final ListModel lm = catlist.getModel();
    // get the list size
         int lsize = lm.getSize();
         String st ="";
         for (int j = 0; j < lsize;j++) {
    // get jth element of the list
         st = (String)lm.getElementAt(j);
    // compare it to the selected catagories list in if a match
    // set the index into the selected index array
         for (int k=0;k<tgtList.length;k++) {
         if ( st.compareTo(tgtList[k]) == 0 )
         lst[cnt++]=j;          
    //set up the selections
         int[] ilst = new int[cnt];
         for (int k = 0; k<cnt;k++)
         ilst[k] = lst[k];
    // enable teh selected indice
         catlist.setSelectedIndices(ilst);
    // paint the frame
         scrollPane.revalidate();
         scrollPane.repaint();
    --------------------- end code -----------------

    This might sound sarcastic, but it's not:
    I have no clue how to fix your code, but if your bored and want to try something, try copy-and-pasting that section right afterwards. You'd probably need to change some variables, but, again, I have no clue. This is all just a wild guess. Sorry I couldn't help you any more.

Maybe you are looking for

  • Slow and episodic downloads, frequent timeouts

    Here's my setup: I have a 8Mb/s broadband service from TalkTalk (in the UK) which I access over wireless. Speedtest shows an upload speed of 4.8Mb/s. My Netgear modem reports that it is connected at 5.5Mb/s. Leopard 10.5.4 iMac G5 Airport Extreme Air

  • How do I remove the links underneath the main toolbar (most visited, latest headlines, news, Apple, etc.)?

    I have no idea how to remove the links that are underneath the main toolbar (where the back and forward buttons are, refresh, etc.). I know they got there by either Apple default, or by me accidentally dragging something there. I have tried dragging

  • Read XML data from file

    Hello! I have data in an xml file which i want to read into my program. The problem is i do not want to parse the whole file at once, but in sequece, maybe in to or three sequences. In other words i want to parse the frist part of the file, and then

  • IMovie '08 - Video fade in

    How can I get a fade in overlayed on my video clip? I tried the 'fade through black' transition, but the fading occurs prior to the video clip, and I want to fade in over the video clip. Thanks.

  • File named "core",  :| ???

    Hello there, We have an enterprise application wich has been developed using AJAX, JSF, EJB's and others WebLogic technologies like WTC. When server is requested, directories with name _tld are created at domain directory, these directories contain j