Comparing a String with array elements

i need some help as to how to compare an individual String with each item of a String array.
so far i have:
StringTokenizer drinksOrder = new StringTokenizer(orderLine, "\r");
while (drinksOrder.hasMoreTokens())
     for (int index = 0; index < NUMBER_OF_DRINKS; index++)
             barcode = drinksOrder.nextToken();
                    if (barcode.equals(barcodes[index]))
                                 name = drinks[index];
                                 price = prices[index];
                                 status = drinkStatus[index];
          orderedDrinkBC[j] = barcode;
                                          orderedDrinkName[j] = name;
                                          orderedDrinkPrice[j] = price;
                                          orderedDrinkStatus[j] = status;
          j++;
          break;
[\CODE]
At the moment, no Strings are being put in the orderedDrinkBC, orderedDrinkName, orderedDrinkPrice
and orderedDrinkStatus arrays. the code seems to be failing on the 'barcode.equals(barcodes[index])
part at the moment.
any help would be appreciated
cheers
david                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Do this instead (next time post your code in lower case code tags):
StringTokenizer drinksOrder = new StringTokenizer(orderLine, "\r");
while (drinksOrder.hasMoreTokens())
  barcode = drinksOrder.nextToken();
  for (int index = 0; index < NUMBER_OF_DRINKS; index++)
    if (barcode.equals(barcodes[index]))
      name = drinks[index];
      price = prices[index];
      status = drinkStatus[index];
      orderedDrinkBC[j] = barcode;
      orderedDrinkName[j] = name;
      orderedDrinkPrice[j] = price;
      orderedDrinkStatus[j] = status;
      j++;
      break;
}

Similar Messages

  • A basic question/problem with array element as undefined

    Hello everybody,
    thank you for looking at my problem. I'm very new to scripting and javaScript and I've encountered a strange problem. I'm always trying to solve all my problem myself, with documentation (it help to learn) or in the last instance with help of google. But in this case I am stuck. I'm sure its something very simple and elementary.
    Here I have a code which simply loads a text file (txt), loads the content of the file in to a "var content". This text file contents a font family name, each name on a separate line, like:
    Albertus
    Antenna
    Antique
    Arial
    Arimo
    Avant
    Barber1
    Barber2
    Barber3
    Barber4
    Birch
    Blackoak ...etc
    Now, I loop trough the content variable, extract each letter and add it to the "fontList[i]" array. If the character is a line break the fontList[i] array adds another element (i = i + 1); That's how I separate every single name into its own array element;
    The problem which I am having is, when I loop trough the fontList array and $.writeln(fontList[i]) the result in the console is:
    undefinedAlbertus
    undefinedAntenna
    undefinedAntique
    undefinedArial ...etc.
    I seriously don't get it, where the undefined is coming from? As far as I have tested each digit being added into the array element, I can't see anything out of ordinary.
    Here is my code:
    #target illustrator
    var doc = app.documents.add();
    //open file
    var myFile = new File ("c:/ScriptFiles/installedFonts-Families.txt");
    var openFile = myFile.open("r");
    //check if open
    if(openFile == true){
        $.writeln("The file has loaded")}
    else {$.writeln("The file did not load, check the name or the path");}
    //load the file content into a variable
    var content = myFile.read();
    myFile.close();
    var ch;
    var x = 0;
    var fontList = [];
    for (var i = 0; i < content.length; i++) {
        ch = content.charAt (i);
            if((ch) !== (String.fromCharCode(10))) {
                fontList[x] += ch;
            else {
                x ++;
    for ( i = 0; i < fontList.length; i++) {
       $.writeln(fontList[i]);
    doc.close (SaveOptions.DONOTSAVECHANGES);
    Thank you for any help or explanation. If you have any advice on how to improve my practices or any hint, please feel free to say. Thank you

    CarlosCantos wrote an amazing script a while back (2013) that may help you in your endeavor. Below is his code, I had nothing to do with this other then give him praise and I hope it doesn't offend him since it was pasted on the forums here.
    This has helped me do something similar to what your doing.
    Thanks again CarlosCanto
    // script.name = fontList.jsx;
    // script.description = creates a document and makes a list of all fonts seen by Illustrator;
    // script.requirements = none; // runs on CS4 and newer;
    // script.parent = CarlosCanto // 02/17/2013;
    // script.elegant = false;
    #target illustrator
    var edgeSpacing = 10;
    var columnSpacing = 195;
    var docPreset = new DocumentPreset;
    docPreset.width = 800;
    docPreset.height = 600;
    var idoc = documents.addDocument(DocumentColorSpace.CMYK, docPreset);
    var x = edgeSpacing;
    var yyy = (idoc.height - edgeSpacing);
    var fontCount = textFonts.length;
    var col = 1;
    var ABcount = 1;
    for(var i=0; i<fontCount; i++) {
        sFontName = textFonts[i].name;
        var itext = idoc.textFrames.add();
        itext.textRange.characterAttributes.size = 12;
        itext.contents = sFontName;
        //$.writeln(yyy);
        itext.top = yyy;
        itext.left = x;
        itext.textRange.characterAttributes.textFont = textFonts.getByName(textFonts[i].name);
        // check wether the text frame will go off the bottom edge of the document
        if( (yyy-=(itext.height)) <= 20 ) {
            yyy = (idoc.height - edgeSpacing);
            x += columnSpacing;
            col++;
            if (col>4) {
                var ab = idoc.artboards[ABcount-1].artboardRect;
                var abtop = ab[1];
                var ableft = ab[0];
                var abright = ab[2];
                var abbottom = ab[3];
                var ntop = abtop;
                var nleft = abright+edgeSpacing;
                var nbottom = abbottom;
                var nright = abright-ableft+nleft;
                var abRect = [nleft, ntop, nright, nbottom];
                var newAb = idoc.artboards.add(abRect);
                x = nleft+edgeSpacing;
                ABcount++;
                col=1;
        //else yyy-=(itext.height);

  • Best way to iniitialize a queue with array elements

    Hi Guys
    I'm looking for a bit of performance optimization..  
    I'm developing a noise measurement application using LV8.6 and Win Xp /Win 7.
    To put it very simple I have a loop that samples, and a loop that does the math. data is shipped in a queue, producer / consumer style.
    So far so good.. Question is - is there a specific and more optimized way to declare this queue?
    I was wondering if declaring the queue with an initialized array element of a fixed size (the number of samples pr. read from the sound card will be known at runtime) would produce a queue that would be less heavy on dynamic allocation of memory compared to a queue obtained using a simple control no values.
    I've attached a screen dump to maybe make the question more obvious..
    I've been thru the "clear as mud" thread, as recommended in other threads that covers this topic - but i gets very high tech, and I kind of lost my way in it.. So looking for a more simple "you should use solution #x, because..."
    Thank you in advance. 
    Solved!
    Go to Solution.

    I believe (but am not sure) RT FIFOs will allocate this memory for you ahead of time. But, remember they are not deterministic on windows. You need to wire an array constant of the correct size into the FIFO read function also to avoid memory allocation, which is easy to overlook. It's worth looking into, if nothing else, assuming you have RT functions available. WIth this method, the queue size needs to be set, and you run the risk of overflowing and losing elements if not handled correctly. 
    Just throwing other options out there.
    CLA, LabVIEW Versions 2010-2013

  • How to compare German strings with umlaut

    hi
    here is a solution for the problem to compare German strings containing umlaut, which I faced and where I did not find any solution yet!
    The right thing is to use the RuleBasedCollator class and define the additional rules (concerning the umlaut) by yourself and setting the strength of the rule interpretation to PRIMARY!
    Here is the code that works:
    public class UmlautTest { 
    public static void main (String args[]) {    
    String st1 = "Daettenb�ck";
    String st2 = "D�ttenbueck";
    String myRule = "< ae,�,AE,� < oe,�,OE,� < ss,�,SS < ue,�,UE,�";
    RuleBasedCollator myrbCol = null;
    try {
    myrbCol = new RuleBasedCollator(myRule);
    } catch (ParseException e) {
    e.printStackTrace();
    myrbCol.setStrength(Collator.PRIMARY);
    if (myrbCol.compare(st1, st2) != 0) {
    System.out.println("myrbCol: NICHT gleich!");
    } else {
    System.out.println("myrbCol: Gleich!");
    I hope that I could help anyone with that
    nocomm

    The � should be of course replaced by the missing umlaut!
    Sorry, but I didn't preview the topic!
    nocomm

  • How to declare and initialize a STRING ARRAY (assign strings to array elements)

    How to declare and initialize a STRING ARRAY (assign desired strings to elements of an array, for example "abc", "def", "ghi", "jkl", etc.) in LabVIEW? I saw a "string array" block in help, but could not find it in the function palette. Does a spreadsheet string have to be in a file (or can it be in a string constant block)? Thank you.

    Hi,
    you can do it in several ways:
    1. Direct way: Create string array control on front panel and type strings in its elements
    2. Programmatically 1: Create string array indicator (or local variable of control), right click on it in block diagram, select "Create constant" from drop down menu. The array constant will appear. Now type values in this constant's strings
    3. Programmatically 1: Use "Build array", "Replace array subset", "Insert into array" or "Initialize array" functions from "Functions->Array" palette.
    And of course you can combine all of these methods.
    Good luck.
    Oleg Chutko.

  • URGENT! I need to compare a String with a line in a .txt file

    I'm a college student and I have a very simple question i guess. I need to write an if procedure which compares if a line of a .txt file is equal to something, but I just don't know how to do it. HELP!

    What specifically are you asking for? How to compare two strings?
    String s = "cat";
    String t = "Cat";
    if (s.equals(t))
       System.out.println('They are equal');    // does not print out
    if (s.equalsIgnoreCase(t))
       System.out.println('They are equal');    // prints out

  • Comparing a String with another one from a file

    I read a line from a .txt file using in.readLine();
    How do i make comparesson to see if the word in the file is "zoo" ?
    String read;
    read = in.readLine();
    System.out.println(read) --- > prints "zoo"
    if (read == "zoo")
    System.out.println("it works");
    else
    System.out.println("doesn't work");
    and this code prints out "doesn't work" even tho zoo is same as zoo... how do i fix this?

    Change if (read == "zoo") to:
    if(read.equals("zoo"))You want to compare the String's content, not the reference.

  • Comparing a string with a stored list(or array or ...)

    Hi all. I am trying to figure out the best way to do the following:
    I need to store serveral strings into a structure so that I can compare them against a string and see if the string is contained in the previously mentioned strings.
    I want to make the structure static, as it should not change, and I only need one instance of it, but I can't seem to come up with something I like. I was thinking of just using a string array and then running a loop comparing each position in the array to my string, but that seems inelegant to me for some reason. Anyone have any thoughts, or is that pretty much the best I am going to do ?
    thanks in advance.

    I might be inclined to use an ArrayList instead of an array of Strings, which would allow me to use use the contains method to do object comparisons so my code would end up looking more like this.
            ArrayList list = new ArrayList() ;
            list.add("Fred") ;
            list.add("Barney") ;
            list.add("Wilma") ;
            list.add("Betty") ;
            if(list.contains("Barney"))
                System.out.println("Hey Barney") ;
            else
                System.out.println("Absence of Barney detected") ;
            }But it's still doing the same thing you're describing under the hood.
    Hope this helps,
    PS.

  • How to compare a string with integer in jsp

    I have a field in database called as enddate
    i m trying to split the entire date and get date,month and year
    once i store the date in a variable called as fmdate which is string,
    i need to compare it with another integer.
    how can i compare it..heres my code
    stdate=RS.getString("start_date");
         fmdate=stdate.substring(8,10);
         fmmonth=stdate.substring(5,7);
         fmyear=stdate.substring(0,4);
    and this is where i want to compare the value of j to fmday...
    <td class="btext" valign="center">Day<select name="fmday">
    <%
    for(int j=1;j<=31;j++)
    String s;
    parseInt(s)=j;
    if (fmdate.equals(s))
    %>
    <option value="<%=j%>"><%=j%></option>
    <% } else { %>
    <option value="<%=j%>"><%=j%></option>
    <%
    } %>
    </select>
    pl help me...
    Thanks Srini

    j is an int, so you're just adding 0, not concatenating. Perhaps something like this would work.
    <%
      for(int j=1;j<=31;j++)
         String date = String.valueOf(j);
         if(j <= 9) {
            date = 0 + date;
         if (fmdate.equals(date)) {
    %>
      <option value="<%=date%>"><%=date%></option>
    <%
         } else {
    %>
      <option value="<%=date%>"><%=date%></option>
    <%
    %>Uhm, I assume there should be a 'selected' or something in one of the option tags?

  • Form processing in JSP with array elements

    Is there a class or object in JSP (No beans JSP only) I can call to reference a HTML Form and its elements. I want to perform database insert using data from an dynamically generated form. The form will generate N rows (based on parameters pass from the previous page) and I want to perform N inserts into a database based on the data from the N rows.
    I've done something similar in javascript, using the document.form[0].elements[j]value to pass data within a for loop running form[0].elements.length times.
    [email protected]
    ku916
    Thanks

    I may not understand your question correctly. I assume that you already have the code to generate the html form, you just need code to access entered values once the form is submitted right?
    One way you can do this is to use the request.getParameterNames method. This would be easiest if there is only one entry field per row. For instance if you have N text boxes on your page, and the form is submitted, you can use request.getParameterNames to get an iterator of all the names of the text boxes. You can use this iterator to get all the values. Notice that the name of the fields here is irrelevant.
    Enumeration names = request.getParameterNames();
    while (names.hasNext()) {
    String curVal = (String) names.nextValue();
    //--- insert record for curVal
    If there are multiple entry fields for each row, its slightly more difficult. I can recommend one approach. Name all the fields with a naming scheme.
    The first field in the first row would be 1Field1, the second field in the first row would be 1Field2, etc. The first field in the second row would be 2Field1, the second field in the second row would be 2Field2, etc. Then its just a matter of using two for loops in your next JSP to iterate over all the records and fields. You might make it easy for yourself by writing the number of rows in a hidden field on the form. The insertion might look like this:
    int numRows = Integer.parseInt(request.getParameter("numRows"));
    for (int i = 0; i < numRows; i++) {
    String sql = "some sql...";
    for (int j = 0; j < fieldNum; j++) {
    sql += request.getParameter(i + "Field" + j);
    //-- perform insert
    My sql generation is horridly abbreviated but hopefully you get the idea.
    I am sure there are other ways to do this, maybe this will work or get you thinking.

  • How to compare two strings with each other?

    Hello,
    I have modeled a formular which has a radio group and a button. Furthermore, I have one result state corresponding to each option in the radio group.
    In order to determine which result state actually is to be reached I want to attach a condition to each flow to the result states that tests which option has been chosen.
    Which operator can I use for writing these conditions? I have tried the "like" operator as well as the "==" operator but neither seems to work.
    I have written something like:
    =LIKE(@decision, 'option a')
    as well as:
    =(@decision=='option a')
    What am I doing wrong here?
    Thank you very much
    Alexander

    Hi Alexander,
    Could this be an Upper/Lower case issue.
    I tried the following expression
    =(@TXT1=="opt a")
    and it worked.
    If you want your expression to ignore case you should use this expression:
    =(UPPER(@TXT1)==UPPER("opt a"))
    In case you're not sure what is the exact string in the field (@decision) you can always use the PROMPT action to display the field's value.
    Regards,
    Udi

  • How to compare array of String with column of a table

    Hi,
    i have a array of string(say array is of length 1000). I want to
    compare those string in array with one table column
            - whether that table column has a string
                            if yes
                                            do nothing.
                            if no
                                            then insert that string into table.
            - whether table has obsolete row i.e, the one present in table and
    not in array
                            then delete that row.
    How do i go about this, because i see, it is not feasible to loop
    through array and search table to find new string OR loop through each
    row from table to find some obsolete row
    How can i accomplish this task more feasibly(without running query for
    each string, for comparission)? Is there any way to find this kind of
    problem. I would have been easy if i had to compare two tables(with
    UNION and INTERSECT), but it is not the case.
    thanks,
    kath.

    I'm not sure, whether I understand your problem correctly. Only two comments:
    - if both arrays are sorted, all can be done running exactly once simultaneously through both arrays.
    - if the column is marked as UNIQUE, all column strings will be different. I.e. you cannot insert the same string a second time.
    Regards  Thomas

  • An issue with arrays

    I am trying to write an applet which accepts five integers from the user, stores them in an array and then outputs them to a JTextArea. That bit is fine. But I also need to write it so that if the user enters two identical integers then it does not output the duplicate. (This is an exercise from Deitel & Deitel - yes, I'm a beginner! And I am aware that it mixes awt with swing...but that's what the book asks for).
    This is what I have written so far:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class InclusiveArray extends JApplet implements ActionListener {
         JLabel promptLabel;
         JTextField inputField;
         JTextArea outputField;
         int[] array = new int[5];
         int i = 0;
         String output = "The array contains: ";
         //create GUI
         public void init()
              Container container = getContentPane();
              container.setLayout(new FlowLayout());
              promptLabel = new JLabel("Enter a whole integer: ");
              inputField = new JTextField(10);
              inputField.addActionListener(this);
              outputField = new JTextArea(20, 20);
              container.add(promptLabel);
              container.add(inputField);
              container.add(outputField);
         } //end method init
         public void actionPerformed(ActionEvent event)
              array[i] = Integer.parseInt(event.getActionCommand());
              ++i;
              output += array[i] + " ";
              if (i>0)
              if (array[i] != array[0] && array != array[1] && array[i] != array[2] && array[i] != array[3] && array[i] != array[4])
                   output += array[i] + " ";
              /*else
                   output += " same ";*/
              outputField.setText(output);
              output = "\n The array now contains: ";
    This works, but, of course, the applet stops outputting integers as soon as it gets to array != array[1] because, of course, array[1] will always be equal to array[1].
    I am trying to find a way to compare the integer with every elements in the array apart from the integer itself.
    I found a way to compare each integer with the integer before it, in the array. And that worked - but it's not exactly what I need.
    Can anybody point me in the right direction?
    -Eoghain
    Message was edited by:
            Eoghain                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Thank you all for your help. I decided to use a method to sort the array as I'm still not familiar with HashMap or LinkedHashSet. I'll go and read up on them now...
    In the meantime, here's my code. I have a question - I spent a while playing around with the code but I found that my output always contained only 4 elements when, in fact, the array contained 5 (this was verified by outputting the contents of the array to the screen using System.out.println). I solved this by initializing the array with 6 elements instead of 5. There is now a 'wasted' zero at the end which does not show up in the output.
    How could I do this with a 5-elements array? I'm sure the answer is staring me in the face, but I can't seem to find it!
    /*An applet to input 5 numbers, each of which is between 10 and 100 inclusive.
      As each number is read, display it only if it is not a duplicate of a number
      already read. Use the smallest possible array. Display results in a JTextArea.
      Use setText to update the results after each value is input by the user. */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class InclusiveArray2 extends JApplet implements ActionListener {
         JLabel promptLabel;
         JTextField inputField;
         JTextArea outputField;
         int[] array = {0, 0, 0, 0, 0, 0};
         int i = 0;
         String output = "The array contains: ";
         //create GUI
         public void init()
              Container container = getContentPane();
              container.setLayout(new FlowLayout());
              promptLabel = new JLabel("Enter a whole integer: ");
              inputField = new JTextField(10);
              inputField.addActionListener(this);
              outputField = new JTextArea(20, 20);
              container.add(promptLabel);
              container.add(inputField);
              container.add(outputField);
         } //end method init
         public void actionPerformed(ActionEvent event)
              array[i] = Integer.parseInt(event.getActionCommand());
              ++i;
              for(int z = 0; z < array.length; z++)
              System.out.print("The array is now: " + array[z] + "\n");
              if (i == array.length-1)
                   sortArray(array);
         public void sortArray(int[] array2)
              //loop to control number of passes
              for (int pass = 1; pass < array2.length; pass++)
                   //loop to control number or comparison
                   for (int element = 0; element < array2.length-2; element++)
                        //compare side-by-side elements and swap if first > second
                        if (array2[element] > array2[element+1])
                             swap(array, element, element+1);
              buildOutput(array2);
         public void swap(int array4[], int first, int second)
              int hold; //temp holding area for swap
              hold = array4[first];
              array4[first] = array4[second];
              array4[second] = hold;
         public void buildOutput(int[] array3)
              for (int y = 0; y < array3.length-1; y++)
                   if(array[y+1] != array[y])
                        output += array3[y] + " ";
              outputField.setText(output);
              output = "\n The array now contains: ";
    }Thanks in advance,
    -Eoghain

  • Type defined array of clusters for holding configuration data - setting default values for each array element

    Hi,
    I was wondering if I could get some information and opinions about using a type defined array of clusters to hold configuration data.  I am creating a program to test multiple DUTs and wanted to have a type defined control for each DUT containing the information needed to create the DAQmx tasks for all of the signals for that DUT.  I am wanting to do this so that the data is hard-coded and not in a file that the user could mess up.
    The type def controls are then put in a subVI that chooses the appropriate one based on the DUT Type enumeration wired to a case structure.  
    I am having problems with the type defined control.  I am seeing issues when attempting to save a unique configuration to each array element in the array of clusters.  Somehow it worked to begin with, but now clicking "Data Operations --> Make Current value default" on individual elements of the cluster or the entire cluster (array element) is not saving the data when I re-open the type def control.  What am I doing wrong?  Am I trying to do something with arrays of clusters that I should not be doing?
    I have attached one of the type defined controls for reference.  I tried changing it to Strict to see if that helped, but no luck.
    To reproduce, change the resource string for array element 0 and make the new value the default value.  Then close the type def, and re-open it.  The old value is still present in that element.  The VI is saved in LabVIEW 2012.
    Solved!
    Go to Solution.
    Attachments:
    CM_AnalogInputs.ctl ‏11 KB

    Values of a typedef are not proprigated to instances of the control. THey will pick it up if created AFTER the data values have been changed. THey will not get updated with future changes. You should either create a VI specifically for hardcoding your values or implement a file based initialization. The file based would be much better and more flexible. If you don't want users to modify the data simply encrypt it. There is a noce blowfish library you can download.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Comparing 2 strings

    hi
    i have an application, in which, i am taking a string as input from th user(thru a JOptionpane.inputDialog)
    now, i have to compare this string with various other values present in an already stored file.
    please sugest a method to do so.
    the file has different values appended one after another , separated by a space.
    the problem is, i want to parse the entire file, to look for the required value.
    please help.
    thank u.

    Parse the file once using a thread as soon as the program has started running.
    If you just want to know whether or not a value is in the file then just store the values from the file in a Set (java.util.HashSet).
    If you want to associate a value with some other information then store the (key,value) pairs read from the file in a Map (java.util.HashMap).
    If you want to record information about what the user has entered then again store the file informaion in a Map but make the value an object of your own making.

Maybe you are looking for

  • Photos 1.0: Slideshow ungroup photos

    Photos 1.0 / Create Slideshow.. / Theme "Magazine" -> Could not find the Photo.App discussion, therefore here in iPhoto.app discussion <- When I create a new slideshow, and choose the "Magazine"-theme, my pics are automatically grouped. This grouping

  • Adobe Flash Player 11.3 r300 has stopped working

    I have Firefox 13.0.1, Win 7 Home Edition 64 bit, latest adobe flash player version 11.3.300.262. Latest nvidia drivers 301.42 - WHQL, 260 gtx nvidia card. I did a clean reinstall for nvidia drivers, and flash drivers, still same problem. Everytime I

  • Spry Accordion IE6 issue

    I have created an image for the accordion tab panel (c.g the heading of the accordion menu). I then created a hotspot on the image to go directly to that site without having to open the accordion menu. However in IE6 the hotspot is ignored and the pa

  • Insignia 46' sound/pciture lag

    Hello, I have an Insignia 46' 1080P 120Hz LCD HDTV. First off, I have yet to see anyway possible to change my refresh rate to 120Hz via tv/dvd/computer hookups. But thats not my main issue. I have my computer, HD terminal, amp and media server all co

  • Error in MB31

    Hi guys, I would like to asked about transaction MB31… What if the stock type in the process order is in Blocked, is it possible to have a goods movement like goods reciept? Because we have encountering an error in MB31.