Displaying a matrix using DOM

hi group,
this is satya chowdhury .i am facing some problem in how to parse a matrix using dom.the xml file is as follows:-
<?xml version="1.0" ?>
- <matrix>
<rows>4</rows>
<columns>4</columns>
- <row>
<column>11</column>
<column>12</column>
<column>13</column>
<column>14</column>
</row>
- <row>
<column>21</column>
<column>22</column>
<column>23</column>
<column>24</column>
</row>
- <row>
<column>31</column>
<column>32</column>
<column>33</column>
<column>34</column>
</row>
- <row>
<column>41</column>
<column>42</column>
<column>43</column>
<column>44</column>
</row>
</matrix>
and the program is as follows
import java.io.File;
import java.io.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;
import org.xml.sax.*;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.FactoryConfigurationError;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.ErrorHandler;
public class Matadd
     static Document doc;
static int mat[][]=new int[0][0];
     public static void main(String arg[])
          DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
          try
          DocumentBuilder builder=factory.newDocumentBuilder();
          builder.setErrorHandler(new Terror());
          doc=builder.parse(new File("mat.xml"));
          Element root=doc.getDocumentElement();
          NodeList list=doc.getElementsByTagName("row");
          int i=list.getLength();
          System.out.println("THE NO.OF ROWS IN THE GIVEN MATRIX--->"+i);
          NodeList list1=doc.getElementsByTagName("column");
          int j=list.getLength();
          System.out.println("THE NO.OF COLUMNS IN THE GIVEN MATRIX--->"+j);
for(int row=0;row<i;row++)
for(int col=0;col<j;col++)
     Node node=list1.item(col).getLastChild();
          System.out.println(""+node.getNodeValue());
          catch(SAXException e)
          catch(IOException e)
          catch(ParserConfigurationException e)
          static class Terror implements ErrorHandler
                              public void fatalError(SAXParseException e)
                                   System.out.println("error:"+e);
                         public void error(SAXParseException e)
                                   System.out.println("error:"+e);
                              public void warning(SAXParseException e)
                                        System.out.println("error:"+e);
BUT IS IS NOT ITERATING ALL THE ROWS.PLZ HELP ME.I HAVE TO SUBMIT THE ASSIGNMENT TODAY.
BYE
SATYABRATA
[email protected]

i have modified ur cod e..this is working..i have created on recursive function that will iterate through ur colum values...
any comments please let me knoe
reagards
shanu
[email protected]
import java.io.File;
import java.io.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;
import org.xml.sax.*;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.FactoryConfigurationError;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.ErrorHandler;
* @author sm23772
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
public class SimpleParse {
     static Document doc;
     static int mat[][]=new int[0][0];
     public static void main(String[] args) {
          DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
          try
          DocumentBuilder builder=factory.newDocumentBuilder();
          doc=builder.parse(new File("test.xml"));
          Element root=doc.getDocumentElement();
          NodeList list=doc.getElementsByTagName("row");
          int i=list.getLength();
          System.out.println("THE NO.OF ROWS IN THE GIVEN MATRIX--->"+i);
          NodeList list1=doc.getElementsByTagName("column");
          int j=list.getLength();
          System.out.println("THE NO.OF COLUMNS IN THE GIVEN MATRIX--->"+j);
          for (Node child = root.getFirstChild();
child != null;
child = child.getNextSibling())
if(child.getNodeName().equals("row"))
     getValues(child); //calling my recursive funciton
/************** instead of this i have made small funciton ******************/
          /*for(int row=0;row<i;row++)
          for(int col=0;col<j;col++)
          Node node=list1.item(col).getLastChild();
          System.out.println(""+node.getNodeValue());
System.out.println("");
          catch(Exception e)
               System.out.println(e);
public static void getValues(Node start)
if(start.getNodeName().equals("column"))
System.out.println(start.getFirstChild().getNodeValue());
for (Node child = start.getFirstChild();
child != null;
child = child.getNextSibling())
     getValues(child);
}

Similar Messages

  • Using DOM

    Hi everyone,
    I was wondering if someone could give me a hand with the following.
    I am planning to create a simple search engine to search for products for a computer parts retailer. The list of products is stored in an XML repository , and all queries to this repository are sent as XML documents.
    The search engine web page will display a single text input field, into which a user can enter a keyword to search for
    I am using DOM to convert the Html search query to an XML document.
    Here is my DOM code so far.
    <%@page import="java.io.*"%>
    <%@page import="javax.xml.parsers.*"%>
    <%@page import="org.w3c.dom.*"%>
    <%@page import="org.apache.xml.serialize.*"%>
    <%!
    String 
    search,textfield;
    %>
    <%
    // Retrieve the Search query
    search = request.getParameter("search");
    textfield = request.getParameter("textField");
    // Create a new DOM factory, and from that a new DOM builder object
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();// Note that we are creating a new (empty) document
    Document document = builder.newDocument();
    // The root element of our document wil be <query>
    // It gets stored as the child node of the whole document (it is the root)
    rootElement = document.createElement("query");
    document.appendChild(rootElement);
    // Create an <searchterm> element , place underneath <query>
    Element searchtermElement = document.createElement("searchterm");
    searchtermElement.appendChild(document.createTextNode(searchterm));
    rootElement.appendChild(searchtermElem
    I am just wondering if my DOM code looks correct so far?

    A further cast didn't help either. For a change I have abandonded the JAXP approach and instead have built an example found at
    http://otn.oracle.com/pub/listings/vohra_xmlschema_l4.html
    that shows how to validate against a schema.
    I have changed the method to return the validated document and have then tried to apply some of the D0M validation methods supposed to return a NameList but I still always get null.
    I have posted the example Java program at
    http://home.arcor.de/martin.honnen/java/xml/Test20040308.java.txt
    and run it against the example schema and XML files at http://home.arcor.de/martin.honnen/java/xml/test20040307Xsd.xml http://home.arcor.de/martin.honnen/java/xml/test20040307.xml
    While the parsing works and the XML is judged valid according to the schema attempts to use the DOM validation methods to return a NameList fail to return one.
    Does anyone have an example using any DOM Level 3 validation interfaces/methods successfully?

  • Displaying a matrix in Swing

    Hi all,
    Is there anybody who knows a easy way of displaying a matrix in Swing. It can be done by declaring a lot of buttons (64 buttons in a 8x8 matrix) and than displaying them, but there has to be a better way. Any suggestions
    Greetings.
    Vincent

    You could use AWT or Java2D graphics to display them within a JPanel. Just override the paintComponent(Graphics g) method (don't forget to call super.paintComponent(g) first) and do the drawing in there.
    If you need interaction, you could implement a MouseMotionListener and MouseListener to see over which element the mouse is over and in which a mouse button was clicked (or even double-clicked).
    class MyMatrixPanel extends JPanel implements MouseListener, MouseMotionListener {
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.setColor(Color.white);
    g.fillRect(0,0,this.getWidth(),this.getHeight());
    g.setColor(Color.black);
    for(int i = 0; i < number_of_rows+1; i++) {
    g.drawLine(x1,y1,x2,y2);
    g.drawString("m00",x,y);
    for(int i = 0; i < number_of_columns+1; i++)
    g.drawLine(x1,y1,x2,y2);
    The JPanel will need to be added to a JFrame, JDialog, or similar. You'll have to supply the coordinates, and of course this is skeletal. Let me know if this helps and if you need more info.
    Robert Templeton

  • Writing XML using DOM

    Hi All,
    I am trying to create a XML file using DOM. After creating , when I am trying to display using System.out.print , It prints [getPrice: null ]
    Here is the code.
    import org.w3c.dom.*;
    import org.apache.xerces.parsers.DOMParser;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import java.io.File;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    public class DomParseWrite
         static Document doc = null;
         static Document newdoc = null;
         public DomParseWrite( String uri )
              try
                   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
                   DocumentBuilder db = dbf.newDocumentBuilder();
                   doc = db.parse(new File( uri ) );
                   newdoc = db.newDocument();
                   createDocument();
              catch (Exception e)
                   e.printStackTrace(System.err);
         public void createDocument()
              Element newRoot = newdoc.createElement( "getPrice" );
              NodeList getPrice = doc.getElementsByTagName( "item" );
              int length = getPrice.getLength();
              for( int itemIndex = 0 ; itemIndex < length ; itemIndex++ )
                   Node first = getPrice.item( itemIndex ).getFirstChild();
                   Element item = newdoc.createElement( "item" );
                   String itemName = first.getNodeValue() ;
                   item.appendChild( newdoc.createTextNode( itemName ) );
                   newRoot.appendChild( item );
                   String priceValue = "" ;
                   if( itemName.equals( "apple" ) )
                        priceValue = "10" ;
                   if( itemName.equals( "orange" ) )
                        priceValue = "5" ;
                   Element price = newdoc.createElement( "price" );
                   Node priceVal = newdoc.createTextNode( priceValue );
                   price.appendChild( priceVal );
                   newRoot.appendChild( price );
              System.out.println( " NEw DOcument is" );
              newRoot.normalize();
              System.out.println( newRoot.toString() );
         public static void main( String args[] )
              DomParseWrite dom = new DomParseWrite( args[0] );
    Can any one tell me what is the problem.
    Regards
    Smitha

    Hi,
    I am able to compile and I cross checked if the Document is created by parsing through the nodes.
    It is creating the document properly. But problem in displaying.
    I tried with JDK1.2 and xerces on win2000. But same problem. While displaying
    System.out.println( newRoot.toString() ). it displays
    [getPrice:null].
    Regards
    Smitha

  • Can I stream a movie from my Macbook to my Apple TV on one display, and still use my Macbook for other things?

    I have a Macbook Pro and an Apple TV. What I'd like to do is stream a movie from my CinemaNow Account to my television by using my Apple TV and my Macbook. I know that I can do this my using the mirroring feature, however then I can no longer use my Macbook for anything else because my TV will only display what is on the screen of my Macbook. Now with this is mind, what then is the point of having multiple displays through the use of my Apple TV, if only one display can be used at a time unless they both show the same image? Or is there a way for me to be able to stream the movie to my TV and still use my Macbook for other purposes (multi-tasking)? 

    To enable a second display over AirPlay, you first need to be connected to the same network as your Apple TV. Next, open System Preferences > Displays, and select your Apple TV from the “AirPlay Display” drop-down menu.
    Once you do this, your display may flash as the second display connection is acquired, and the Apple TV takes over as the second display. If the displays are mirrored, then you can correct this by opening the “Arrangement” tab in System Preferences > Displays, and ensuring that the “Mirror Displays” checkbox is unchecked.
    In this same “Arrangement” tab, you can move the displays around in the pane to ensure that they're positioned correctly, relative to your physical space (usually side-by-side, or top-down). The primary display here is denoted here by the Menu bar on the display. The arrangement helps with being able to drag windows from one display to the next: if your secondary display is arranged to be to the right of your primary one, for example, you can drag things to it through the right side of your primarcy screen.

  • Dual Apple Cinema Studio Displays where one uses DVI-to-ADC adapter

    I have an Apple Power Mac G4 MDD dual 1.25 GHz desktop with 2GB RAM running OSX Tiger 10.4.
    It is supporting two Apple Cinema Studio LCD flat panel 17" displays simultaneously.
    Currently, it has three internal hard drives and one SuperDrive.
    I use this computer exclusively for my home recording studio for music production.
    My main computer applications are therefore, Pro Tools LE 7.4, Steinberg Cubase, and Reason 3.0.
    Also, I have the full Microsoft Office Suite, but rarely use Word, Excel, PowerPoint and Access.
    To drive the dual displays, I am using a ATI Radeon 9000 Pro which has one ADC port and one DVI port. Therefore, I am using a DVI-ator adapter to connect one of my ADC displays to the DVI port.
    Yesterday, while recording, one of the two displays developed a broad vertical band (approx 4" of black with thin red, green and blue vertical lines). The other display was fine, however.
    I decided to shut down my PowerMac G4 and disconnect the DVI-adapted display and re-boot with only the display that was connected to the ADC port. The Power Mac G4 booted up fine and ran only its display on this particular monitor.
    However, within 5 minutes, the screen re-developed the broad black vertical band with thin red, green and blue lines running up-and-down as before. Therefore, I shut it down and re-booted again. This time, it never booted back up. Rather, its progress indicator (clock picture moving in clockwise diagram kept on spinning around & around, but never booted-up.
    What does this symptom indicate?
    How can I boot-up from the SuperDrive?
    Is there some special combination of hot keys to get to its setup mode (like in Windows)?
    From these symptoms, is my PowerMac G4 MDD fixable?

    Hi-
    Welcome to Discussions!
    It could be that your graphics card has bit the dust.
    To boot to the OS install disc from the optical drive, hold the C key when powering up. This should bring you to the installer. In the window after selection of your desired language, from the menu bar, you canselect Utilities/Disk Utility. From there, run Repair Disk on the hard drive to insure the integrity of the hard drive.
    My computer won't turn on
    Now, if you are able to boot, but no video is displayed, then your graphics card is probably dust.
    My computer displays no video
    If you have a copy of the Apple Hardware Test, it would be good to run that, to verify the hardware.
    If you don't have the AHT, you can download it, and burn it to CD, and run from that:
    Apple Hardware Test

  • How do I get an XY Chart to display properly while using embedded loop

    s to periodically read multiple channels of similar data? (multi-Y versus specified time) The plot just becomes a point or a single plot of all values taken at one scanning of all channels. I want multiple plots over time updated at the time of scanning.I have also stored my data in a daily text file that is tab delimited. The text files consists of a row of text column headers, a blank row and then rows of data. The data rows are mixed data types. The first column is a date/time such as Mar 1, 2002 12:01 pm. The remaining columns are numeric data. I can't seem to get my data to plot properly in an XY chart from memory and am having problems parsing the data with mixed data types in the data r
    ows. The format I am using works great for viewing the history files in Excel.
    When I plot the data, I either get a single point or a a series of points for a single reading of all channels or I get a line connecting all data for that single scan reading. What am I doing wrong? At this point, I don't care if I read the data from the file to plot it or if I can just get Labview to plot correctly as the data is gathered without going to the history file.
    As noted in the summary question, I have embedded loops in my applicaiton. I have a while-loop that determines the scan rate and keeps the program running until it is turned off. Inside of that, I have a for-loop (in a subVI) which scans all my data channels.
    Thanks for your help.

    s to periodically read multiple channels of similar data? (multi-Y versus specified time) The plot just becomes a point or a single plot of all values taken at one scanning of all channels. I want multiple plots over time updated at the time of scanning.XY plots expect a cluster containing two 1D arrays for the X and Y
    coordinates of the individual points. If you want multiple plots you can
    supply an array of these clusters but you have to resupply the "x" array
    for each of them.
    Hope that helps,
    Rudolf
    Adrien wrote:
    : How do I get an XY Chart to display properly while using embedded
    : loops to periodically read multiple channels of similar data? (multi-Y
    : versus specified time) The plot just becomes a point or a single plot
    : of all values taken at one scanning of all channels. I want multiple
    : plots over time updated at the time of scanning.
    : I have also stored my data in a daily text file that is tab delimited.
    : The text files consists of a row of text column headers, a blan
    k row
    : and then rows of data. The data rows are mixed data types. The first
    : column is a date/time such as Mar 1, 2002 12:01 pm. The remaining
    : columns are numeric data. I can't seem to get my data to plot
    : properly in an XY chart from memory and am having problems parsing the
    : data with mixed data types in the data rows. The format I am using
    : works great for viewing the history files in Excel.
    : When I plot the data, I either get a single point or a a series of
    : points for a single reading of all channels or I get a line connecting
    : all data for that single scan reading. What am I doing wrong? At
    : this point, I don't care if I read the data from the file to plot it
    : or if I can just get Labview to plot correctly as the data is gathered
    : without going to the history file.
    : As noted in the summary question, I have embedded loops in my
    : applicaiton. I have a while-loop that determines the scan rate and
    : keeps the program running until it is turned off. Inside of
    that, I
    : have a for-loop (in a subVI) which scans all my data channels.
    : Thanks for your help.

  • Reg. can we display alv grid using field groups (extracts)

    Hi,
    can we display alv grid using field groups (extracts). is this possible. i have to develop a blocked alv.
    tnks
    Yerukala Setty

    No, you will need the data in an internal table to use ALV.
    Cheers
    Allan

  • Problem while displaying Purchase order using me9f

    Hi All,
    I have copied ME9F as ZME9F, and SAPFM06P as ZSAPFM06P (print program of purchase order). Now when I display the PO using ME23n, there is no problem and PO is getting displayed absolutely fine. But When I display the same PO using ZME9F, the vendor address in the PO is getting printed at the item level instead of header level.
    The vendor address should be displayed at the top and not at the item level.
    When I analysed the code, I found in case of ZME9F AND ME23N, the values of NAST structure and ENT_SCREEN are different. These values are passed as input values to the Function Module ME_READ_PO_FOR_PRINTING.
    Please let me know how do I fix this issue, such that vendor address is displayed at the header level instaed of item level.
    Thanks !!!

    Hi,
    First you creat a PO using BAPI_PO_CREATE , once PO is created then you use the FM BAPI_PO_CHANGE and update the condtions in PO. See the code below given.
    Fm lt_cond-condition_no = lvc_knumv.
    lt_cond-itm_number = gt_output-ebelp.
    lt_cond-cond_type = 'FRB1'.
    lt_cond-cond_st_no = '020'.
    lt_condx-condition_no = lvc_knumv.
    lt_condx-itm_number = gt_output-ebelp.
    lt_condx-itm_numberx = 'X'.
    lt_condx-cond_st_no = lt_cond-cond_st_no.
    lt_condx-cond_st_nox = 'X'.
    lt_condx-cond_type = 'X'.
    lt_cond-cond_value = gt_output-frcst.
    lt_condx-cond_value = 'X'.
    lt_cond-currency = p_cndcur.
    lt_condx-currency = 'X'.
    lt_cond-vendor_no = gt_output-frvndr.
    lt_condx-vendor_no = 'X'.
    lt_cond-change_id = 'I'.
    lt_condx-change_id = 'X'.
    APPEND lt_cond.
    APPEND lt_condx.
    CALL FUNCTION 'BAPI_PO_CHANGE'
    EXPORTING
    purchaseorder = gt_output-ebeln
    TABLES
    return = lt_return
    * poitem = lt_poitem
    * poitemx = lt_poitemx
    pocond = lt_cond
    pocondx = lt_condx.
    Thanks.

  • Problem in parsing XML using DOM Parser.

    Hi,
    I am parsing an XML using DOM Parser.
    When i try to get attributes of a node, i dont get in the order it is written. For Eg. This the node:
    <Level0 label="News" link="/website/ing_news.nsf/ViewNewsForm?OpenForm&All" level="202" uid="COGN-4MNMT3" parentid="aaaa">
    When i try to print the attribute values i should get in the order:
    News, /website/ing_news.nsf/ViewNewsForm?OpenForm&All, 202, COGN-4MNMT3, aaaa
    BUT I AM GETTING IN THE ORDER:
    News, 202, /website/ing_news.nsf/ViewNewsForm?OpenForm&All, aaaa, COGN-4MNMT3
    Is there any way to sort this problem out?
    Thanks and Regards,
    Ashok

    Hi Guys,
    Thanks a lot for your replies.
    But i want to keep all the values as attributes only.
    the XML file is as shown below:
    <Menu>
    <Level0 label="News" link="/website/ing_news.nsf/ViewNewsForm?OpenForm&All" level="202" uid="COGN-4MNMT3" parentid="aaaa" children="3">
         <Level1 label="ING News" link="" level="1" uid="COGN-4MNN89" parentid="COGN-4MNMT3" children="3" >
              <Level2 label="All ING News" link="/website/ing_news.nsf/ViewNewsForm?OpenForm&All" level="2" uid="INGD-4MVTK2" parentid="COGN-4MNN89" children="0">
              </Level2>
    </Level1>
    </Level0>
    The code i was using to get attributes is:
    String strElementName = new String(node.getNodeName());
         // System.out.println("strElementName:"+node.getNodeName());
    NamedNodeMap attrs = node.getAttributes();
    if (attrs != null) {
    int iLength = attrs.getLength();
    for (int i = 0; i < iLength; i++) {
    String strAttributes = (String) attrs.item(i).getNodeName();
    String strValues = (String) attrs.item(i).getNodeValue();
    Also is it not possible to Enforce the order using some Schema/DTD in this case?
    TIA
    Ashok

  • Problem in parsing JMS TextMessages using DOM

    Hi
    I want to parse JMS TextMessages by using DOM parser.DomBuilder's parse method supports only Strings,input stream in its constructor.
    Is there anyway we can parse JMS TextMessages by using DOM.Your help would be appreciated.
    Thanks
    Kanth

    kanth218 wrote:
    Hi
    DomBuilder's parse method supports only Strings,input stream in its constructor.This is not true. Have another look at the documentation.
    Is there anyway we can parse JMS TextMessages by using DOM.Your help would be appreciated.
    parse(new InputSource(new StringReader(someString)))

  • Parsing an XML using DOM parser in Java in Recursive fashion

    I need to parse an XML using DOM parser in Java. New tags can be added to the XML in future. Code should be written in such a way that even with new tags added there should not be any code change. I felt that parsing the XML recursively can solve this problem. Can any one please share sample Java code that parses XML recursively. Thanks in Advance.

    Actually, if you are planning to use DOM then you will be doing that task after you parse the data. But anyway, have you read any tutorials or books about how to process XML in Java? If not, my suggestion would be to start by doing that. You cannot learn that by fishing on forums. Try this one for example:
    http://www.cafeconleche.org/books/xmljava/chapters/index.html

  • Parsing xml using DOM parser in java

    hi there!!!
    i don have much idea about parsing xml.. i have an xml file which consists of details regarding indentation and spacing standards of C lang.. i need to read the file using DOM parser in java n store each of the attributes n elements in some data structure in java..
    need help as soon as possible!!!

    DOM is the easiest way to parse XML document, google for JDOM example it is very easy to implement.
    you need to know what is attribute, what is text content and what is Value in XML then easily you can parse your document with dom (watch for space[text#] in your XML document when you parse it).
    you get root node then nodelist of childs for root then go further inside, it is easy believe me.

  • Delete elements from XML file using DOM and java

    Hi
    I want now is to remove element from my XML file
    for example
    i have following xml
    <?xml version="1.0" encoding="UTF-8"?>
    <printing>
    <firstLineTexts>
              <firstLineText />
              <firstLineText>|line11</firstLineText>
              <firstLineText>|line12</firstLineText>
    </firstLineTexts>
    </printing>how do i remove all elements fireLineText
    my final output should be
    <?xml version="1.0" encoding="UTF-8"?>
    <printing>
    <firstLineTexts>
    </firstLineTexts>
    </printing>How do i do it using DOM,
    I can create instance of DOM and write it using TransformerFactory
    Ashish

    Hi
    I am trying the following code,
    but it is not working
                    NodeList nScene = doc.getElementsByTagName("firstLineTexts");
              NodeList nScene1 = nScene.item(0).getChildNodes();
              for (int i = 0; i < nScene1.getLength(); i++)
                   Node n = nScene1.item(i);
                        nScene.item(0).removeChild(n);
              }

  • Remove element from xml using dom.

    i want to remove an element from an xml file using dom.
    i remove the element but the whole content of the file is also deleted.
    how can i rewrite the file.

    vij_ay wrote:
    subject :Remove element from xml,but if empty element in input file then output should be <tag></tag>, not like <tag.xml/>I assume you mean <tag/> but why do you want this? Any application that will not accept this valid XML construct is flawed and a bug report should be raised against it.

Maybe you are looking for

  • Gif not animating when on the Internet

    Hopefully some one can help as I have tried everything i can think of I have create a animation using Flash 8 I have exported this as a Animated gif to my computer. I can open the file and it animates fine on my pc. When i upload to myspace it does n

  • Goods receipt date cannot be in the past

    hii While doing Po i getting below error " Goods receipt date cannot be in the past  " How to rectify this ?? and why its occuring ?? Thanks

  • Hd off sets

    all my hd channels when selected I can watch as they come on shift about a quarted screen to the right even the guide they have been this way since installed in october tried setting aspect,stretch sd on and off and getting very frustrated. switched

  • Is there a comparison of Firefox 2x versions for Windows 7 ?

    Firefox versions "jumped" to 2x recently. Where can i find a comparison of several 2x versions avail ? Thanx. Bewildered Bob

  • Updating User NetID

    I posted this via google groups and it never showed up.. so at some point, there might be a dupe, but here we are... I'm trying my first foray into GroupWise programming and I'm attempting to update a user's netID, which is essentially the dn of the