UID key in TreeMap causing ClassCastException

Hello all,
I'm trying to use the UID class as a key in a TreeMap, but I'm running into a ClassCastException when I try to lookup using a UID as a key. From the docs, I see that a ClassCastException is thrown when the "key cannot be compared with the keys currently in the map." My guess is that the key needs to implement the comparable interface but I can't find mention of it anywhere in the docs. (other than the 'compared with keys' statement) ... So, two questions:
1) Can someone verify my suspicions about comparable interface?
2) Is there a better solution that implementing my own 'comparable subclass of UID? (I don't mind subclassing, but I'm loath to write/maintain/test/document a custom solution if I can use a built in class)
     protected void testTreemapUID() {
          TreeMap tree = new TreeMap();
          Double testDouble = new Double(23);
          tree.put( testDouble, new String("frank"));
          String result = (String)tree.get(testDouble);
          System.out.println("about to get value from Double " );
          System.out.println("Double result = " + result );
          tree = new TreeMap();
          UID uid = new UID();
          tree.put(uid, new String("bob"));
          System.out.println("about to get value from UID " );
          result = (String)tree.get( uid );
          System.out.println("UID result = " + result );
     }console output:
about to get value from Double
Double result = frank
about to get value from UID
Exception in thread "main" java.lang.ClassCastException: java.rmi.server.UID
     at java.util.TreeMap.compare(TreeMap.java:1093)
     at java.util.TreeMap.getEntry(TreeMap.java:347)
     at java.util.TreeMap.get(TreeMap.java:265)
     at SandBoxTester.testTreemapUID(SandBoxTester.java:70)
     at SandBoxTester.<init>(SandBoxTester.java:53)
     at SandBoxTester.main(SandBoxTester.java:100)
as always, many thanks!
Message was edited by:
oldmicah

Because you are using a TreeMap, which is a sorted map, the keys must be mutually comparable.
java.rmi.server.UID doesn't implement Comparable. That's why the ClassCastException is thrown.
If you need a sorted map, then you will have to provide a Comparator*.
If you don't care about sorting, you could use a HashMap instead.

Similar Messages

  • ORA-14402: updating partition key column would cause a partition change

    Hi,
    When I am trying to execute an update statement where i am tring to update date values emp_det from 11-oct-2010 to 12-nov-2010.
    Oracle throws an error :
    ORA-14402
    updating partition key column would cause a partition change
    I think that this is because emp_det is a partitioning key of a partitioned table.
    Oracle documentation says that
    "UPDATE will fail if you change a value in the column that would move the
    row to a different partition or subpartition, unless you enable row
    movement" .
    alter table t enable row movement;
    I did not understand what is meant by "enable row movement".
    I cannot drop the partitions and recreate it after updating the table and also i don't have proper priviliges for enale row movement syntax
    because of the lack of privileges. How to solve this is issues with out row movement and recreate partition.
    Can this be done by a developer or is there any other way to execute update in this case? its urgent.. pls help..
    thanks in advance..
    By
    Sivaraman
    Edited by: kn_sivaraman on Nov 1, 2010 2:32 AM

    kn_sivaraman wrote:
    I did not understand what is meant by "enable row movement". Each partition in partitioned table is physically separate segment. Assume you have a row that belongs to partition A stored in segment A and you change row's partitioning column to value that belongs to partition B - you have an issue since updated row can't be now stored in segment A anymore. By default such update is not allowed and you get an error. You can enable row movement and Oracle will move row to target partition:
    SQL> CREATE TABLE SALES_LIST(
      2                          SALESMAN_ID NUMBER(5,0),
      3                          SALESMAN_NAME VARCHAR2(30),
      4                          SALES_STATE VARCHAR2(20),
      5                          SALES_AMOUNT NUMBER(10,0),
      6                          SALES_DATE DATE
      7                         )
      8    PARTITION BY LIST(SALES_STATE)
      9    (
    10     PARTITION SALES_WEST     VALUES('California', 'Hawaii'),
    11     PARTITION SALES_EAST     VALUES('New York', 'Virginia', 'Florida'),
    12     PARTITION SALES_CENTRAL  VALUES('Texas', 'Illinois'),
    13     PARTITION SALES_OTHER    VALUES(DEFAULT)
    14    )
    15  /
    Table created.
    SQL> insert
      2    into sales_list
      3    values(
      4           1,
      5           'Sam',
      6           'Texas',
      7           1000,
      8           sysdate
      9          )
    10  /
    1 row created.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    update sales_list
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    SQL> alter table sales_list enable row movement
      2  /
    Table altered.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    1 row updated.
    SQL> SY.

  • Updating partition key column would cause a partition change

    while i am executing this query in sql i am getting an error message saying
    that
    updating partition key column would cause a partition change
    SQL> update questionbnkmaster set sectionid=23 where qno=19;
    update questionbnkmaster set sectionid=23 where qno=19
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    what can do to update the table without changing to the other fields
    tyhanx in advance
    cinux

    try this
    ALTER TABLE questionbnkmaster ENABLE ROW MOVEMENT
    /Cheers, APC

  • The fn/function key and Safari causing it to freeze! Help!!

    Hi there, I'm a new user to Mac, just got my Macbook today. I have a problem with my safari. I was trying to group a few pictures together in a folder with the shift key but I accidentally pressed the "fn" key and some other key I'm not sure which and this has caused my safari to freeze, or rather when I click on any buttons or tabs it just gives me the error sound and it will not close. I've tried to restart or shut down my mac but it wouldn't let me because it says to shut down safari before I can shut down the Macbook. I've tried everything to try to shut it down but it can't because everytime I click on something on safar I just get the error sound! I can't even click to open a new window. I've been trying and trying and I dunno what is it that I did with the "fn" key thats made it this way! Please help! Thank you!

    Force Quit Safari
    Command-Option-Escape
    -OR-
    Apple Menu -> Force Quit
    -OR-
    Dock -> Option-Click -> Force Quit
    If that does not work, then you can always power-off the Mac (NOT desirable, but sometimes it is needed, I just hope the Force Quit works). To power off, press and hold the power button for 5 to 10 seconds, and this will power off your Mac.

  • Collections problem - Sorting object (not key) in treemap

    Hello everyone,
    I don't know if TreeMap is the right thing for what I want to do, but I haven't found anything better yet. What I want to do is have a tree map like that
    index -- value (Double)
    1        500
    2        450
    3        500   (Multiple value)
    4        123so I used a TreeMap, but what I want to do is get the indexes with the highest 5 values for example. Should I still use TreeMap? Is there a simple way to keep the values sorted rather than the keys (indices)?
    Thanx

    My problem is though, I want to sort them but then get the index of the minimum for example and with the LinkedList, I lose the mapping. With the treemap, I also cannot get the key (index) given an object, only the other way round. Is there a way to handle this?

  • Ordering certain keys in TreeMap / comparator question

    I have a TreeMap of currencies. Keys are ("USD", "EUR"...) and each value holds some collection.
    I want to sort the TreeMap so that "GBP", "USD", "CAD" and "EUR" are the first 4 keys in the map and other currencies are in their natural order following these 4 keys. I don't know which currency I'll be getting from a certain operation so it could be that "USD" is encountered last which means it will be the last key in my TreeMap.
    How would I do this using the Comparator and compareTo method?
    Any help would be greatly appreciated.
    Cheers
    Norm.

    Your Comparator's compare() method could have to have a lot of hard-coding in it. Like this:public int compare(Object a, Object b) {
      Thing at = (Thing) a;
      Thing bt = (Thing) b;
      String acurr = a.getCurrency();
      String bcurr = b.getCurrency();
      if (acurr.equals(bcurr)) return 0; // return 0 for equals
      if (acurr.equals("GBP")) return -1; // GBP before everything
      if (bcurr.equals("GBP")) return 1; // GBP before everything
      if (acurr.equals("USD")) return -1; // USD before the rest
      if (bcurr.equals("USD")) return 1; // USD before the rest
      // and so on
    }

  • Introducing FOREIGN KEY constraint may cause cycles or multiple cascade paths

    I am trying to introduce a constraint on the sales_details table
    ALTER TABLE [dbo].[SALES_DETAILS] WITH CHECK ADD constraint fk_sd_vat FOREIGN KEY([VAT])
    REFERENCES [dbo].[VAT Rate] ([VAT]) on update cascade on delete cascade
    GO
    I am getting the error saying
    Msg 1785, Level 16, State 0, Line 1
    Introducing FOREIGN KEY constraint 'fk_sd_vat' on table 'SALES_DETAILS' may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.
    Msg 1750, Level 16, State 0, Line 1
    Could not create constraint. See previous errors.
    What could be the reason,Please suggest me the solution for  this,
    Thanks,

    Hi Erland,
    This is my DDl
    CREATE TABLE [dbo].sales_details(
    [BNUM] [varchar](20) NOT NULL,
    [CNAME] [varchar](30) NOT NULL,
    [CNUM] [int] NOT NULL FOREIGN KEY([CNUM])REFERENCES [dbo].[Customer] ([CNum]),
    [ITNAME] [varchar](100) NOT NULL,
    [ITEM#] [int] NOT NULL ,
    [QTY] [int] NOT NULL,
    [UNIT] [varchar](5) NOT NULL,
    [PRICE] [float] NOT NULL,
    [BASIC] [float] NOT NULL,
    [DISCOUNT] [float] NOT NULL,
    [FRQTY] [int] NOT NULL,
    [BADDR] [varchar](300) NULL,
    [CADDR] [varchar](300) NOT NULL,
    [BDATE] [datetime] NOT NULL,
    [VAT] [float] NOT NULL
    ALTER TABLE [dbo].[SALES_DETAILS] WITH CHECK ADD constraint cons1 FOREIGN KEY([ITNAME])
    REFERENCES [dbo].[New Item] ([Item Description]) on cascade update
    GO
    ALTER TABLE [dbo].[SALES_DETAILS] WITH CHECK ADD constraint FOREIGN KEY([VAT])
    REFERENCES [dbo].[VAT Rate] ([VAT]) on cascade update
    GO
    I am getting the error when i execute second Alter statement.
    Thanks,
    Check if VAT Rate table has any FK with cascaded options?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • WebLogic class loading conflict causing ClassCastException

    Hi everyone,
    I am using Oracle XML Parser v2 for my JCA adapter and I am getting the following exception when method from my adapter is invoked.
    java.lang.ClassCastException: weblogic.xml.jaxp.RegistryDocumentBuilderFactory cannot be cast to oracle.xml.jaxp.JXDocumentBuilderFactory
    I have already placed Oracle XML Parser v2 library (xmlparserv2.jar) inside $DOMAIN_DIR/lib. Below is the line that throws above exception.
    JXDocumentBuilderFactory factory =(JXDocumentBuilderFactory)JXDocumentBuilderFactory.newInstance();
    So it seems like WebLogic is using different JXDocumentBuilderFactory and there seems to be problem with class loading. How can I resolve this issue? Thanks in advance.
    Regards,
    K.H
    Edited by: K Hein on Dec 16, 2010 12:38 AM

    HI,
    You can use Class Loader Filtering feature of WebLogic to isolate the Classloaders....as described in the following link: http://middlewaremagic.com/weblogic/?page_id=192
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • How  to get the key in TreeMap

    H i All,
    I assigned keys to my to my JSF and Im db level i am storing values associated to it.
    I have to show the same data( keys) on to screen..
    From DB I get values.. using the value how can I get key...
    Help me..
    Regards,
    Kranthi

    Here is a C# library that reads and parses the INI file's content (it does not use KERNEL32.dll API).
    Also here is a sample code for your requirement:
    var file = new IniFile();
    file.Load("xx.ini");
    List<string> keyNames = new List<string>();
    foreach (var key in file.Sections["section"].Keys)
        keyNames.Add(key.Name);

  • T8100 keyboard, some keys failed or cause menus to open

    Due to virus,worm,or something bad, I did a full reformat and load of XPpro. Seemed to work fine but I found that the letter "L" did not work. Loaded drivers from an eBay CD but still no "L". Reform and reload OS and now the letter "U" doesn't work. Lucky the install code didn't have an "L" or "U" in it. Keying the "u" opens an accessibility menu.
    Haven't tried but am sure and external kybd will work since that's a OS function (isn't it?) Did manage to get network card installed during one effort but at present I have no download capability direct to this machine. Can download and burn on desktop.
    Any ideas.

    Hi
    In my opinion you should first try to pinpoint what the problem can be and if there is some malfunction of the keyboard. It will be very interesting to know if there is the same problem with external keyboard.
    If you reinstall OS using Recovery CD there should not be any problem except for a defective keyboard. Please try with external keyboard if you have one.

  • List Date[] causing ClassCastException on some environments

    Hi,
    I have a method that is returning List<Date[]>
    Now I am using a foreach loop to iterate the collection:
    for (Object[] uniqueSample : uniqueSampleTimes) {
    This is working fine in some environments (debug) but giving error in others:
    java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.util.Date;
    Can anyone point out the problem here?
    Also, Is this legal?
    Object[] uniqueSample = (Date[])iter.next();

    monisiqbal wrote:
    But the list uniqueSampleTimes contains Date[] i.e. it's of type List<Date[]>jtahlborn already replied on this, and I absolutelly agree with him. See [Heap pollution|http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.12.2.1], describing such behaviour in JLS.
    The thing is, both these are working fine under eclipse but giving problems in javac.It works under eclipse, because eclipse uses it's own compiler. If you try to debug application compiled by javac with eclipse, you should get those ClassCastExceptions.
    And it is really difference in compilers. Following code (which is like your original code) prints 1 if compiled by eclipse compiler and throws ClassCastException if compiled by sun jdk compiler.
    import java.util.Arrays;
    import java.util.List;
    public class Test {
        private static List getList() {
         return Arrays.asList(1);
        public static void main(String[] args) {
         List<String> list = getList();
         for (Object o : list) {
             System.out.println(o);
    }It is because sun compiler generates cast to String (and is right) for Iterator.next(), something like
    Iterator i = list.iterator();
    while (i.hasNext()) {
      Object o = (String) i.next();
    }P.S. Originally this example was discussed at http://www.rsdn.ru/forum/message/3121935.flat.aspx#3121935 (just to mention real authors of the example)

  • Caps Lock Keyboard "G" key causes hanging notes

    When I use Logic Pro 8s Caps Lock Keyboard the "G" key causes hanging notes. The only way I've found to end the hanging note is to start and stop the sequencer. This behaviour happens when auditioning instrument sounds and in Record or Record Ready mode.
    It's not a mechanical problem, as the "G" key doesn't cause multiple entries in text documents etc when pressed and released quickly. It only seems to be misbehaving inside of Logic itself, when using the Caps Lock Keyboard.
    Is anyone else having this trouble?
    Does anyone know why it happens and/or how to fix it?

    can someone help please?
    I opened up a new song, blank, and the caps lock keyboard worked fine.
    seems to be a problem with older songs, which leads me to think maybe its a setting i have changed, ie when playing with uc33 midi contoller.
    thankyou

  • Query problem with accumulated key figures

    Hi BI Gurus!
    I have a report problem that I hope you can help me with!
    In my report I have 2 key figures. One for accumulated revenue previous year (KF1) and one for accumulated revenue current year (KF2). Both key figures should be presented in a graph in monthly buckets.
    January figures from both the key figures shoule be presented in the same bucket. Therfore I can't use 0CALYEAR since we have the "year" information in there. Instead I'm using 0CALMONTH2 which is only two digits, 01 for January. That way I can map figures from both previous year and current year in the same bucket.
    I need the figures to be accumulated and this is what I have problem with. When I run the report today in February 2010 it looks like this:
    Month   KF1   KF2
    01        10     15
    02        10     20
    03        15    
    04        10    
    05        20    
    06        10    
    07        10    
    08        15    
    09        15    
    10        20    
    11        20    
    12        10    
    This is how I would like the report to look like:
    Month   KF1   KF2
    01        10     15
    02        20     35
    03        35    
    04        45    
    05        65    
    06        75    
    07        85    
    08        100    
    09        115    
    10        135    
    11        155    
    12        165
    I have tried to use the setting "accumulated" for the key figures but then I get this result:
    Month   KF1   KF2
    01        10     15
    02        20     35
    03        35     35
    04        45     35
    05        65     35
    06        75     35
    07        85     35
    08        100   35
    09        115   35
    10        135   35
    11        155   35
    12        165   35
    Since the KF2 is revenue for current year and I run the report in February I don't want any figures to be displayed in Mars...
    I have tried to restrict the key figures by 0CALMONTH2 and 0CALYEAR. The KF1 is havein a restriction to only show values for 0CALYEAR - 1 and an interval for 0CALMONTH2 from JAN - DEC.
    The KF2 is having a restriction to only show values in the interval "first month in year - current month" (in this example JAN - FEB) for 0CALMONTH2. And current year for 0CALYEAR.
    Despite my restrictions for KF2 the numpers repeats itself for every month...
    Any suggestion how I can resolve this?
    Best regards
    Anders Florin

    Hi Khaled and thank you for trying to help me!
    I agree with you and think the users should accept the report as it is. But they are claiming that top management will not accept this and they would really want this to be fixed the whay that they want. I have tried to push back on this and said that I'm not sure that it can be resoleved and that it could cost them a lot of money if I try.
    But I will try to resolve it for them if I have spare time in the end of the project. I have not promised them anything but it would really be nice if I could fix it.
    So when you say I need to use a structure and a calculated key figure. How should the calculated key figure and the structure be configured?
    If I use a structure in the rows I guess I can't use same object in calc.key.figure right? Like if I use 0CALMONTH2 in the structure I'm not able to restrict the key figure with the same object? If that is correct I also have a ZMONTH object, different story why I have that... , that I can use in the same way as 0CALMONTH2. Or is this only a problem when I use "local" formulas within the query and not using a "global" calculated key figure? Cause I have only used the "loacal" formula calculated key figure in this report....
    Br
    Anders

  • How can I Cache the data I'm reading from a collection of text files in a directory using a TreeMap?

    How can I Cache the data I'm reading from a collection of text files in a directory using a TreeMap? Currently my program reads the data from several text files in a directory and the saves that information in a text file called output.txt. I would like to cache this data in order to use it later. How can I do this using the TreeMap Class? These are the keys,values: TreeMap The data I'd like to Cache is (date from the file, time of the file, current time).
    import java.io.*;
    public class CacheData {
      public static void main(String[] args) throws IOException {
      String target_dir = "C:\\Files";
      String output = "C:\\Files\output.txt";
      File dir = new File(target_dir);
      File[] files = dir.listFiles();
      // open the Printwriter before your loop
      PrintWriter outputStream = new PrintWriter(output);
      for (File textfiles : files) {
      if (textfiles.isFile() && textfiles.getName().endsWith(".txt")) {
      BufferedReader inputStream = null;
      // close the outputstream after the loop
      outputStream.close();
      try {
      inputStream = new BufferedReader(new FileReader(textfiles));
      String line;
      while ((line = inputStream.readLine()) != null) {
      System.out.println(line);
      // Write Content
      outputStream.println(line);
      } finally {
      if (inputStream != null) {
      inputStream.close();

    How can I Cache the data I'm reading from a collection of text files in a directory using a TreeMap? Currently my program reads the data from several text files in a directory and the saves that information in a text file called output.txt. I would like to cache this data in order to use it later. How can I do this using the TreeMap Class?
    I don't understand your question.
    If you don't know how to use TreeMap why do you think a TreeMap is the correct solution for what you want to do?
    If you are just asking how to use TreeMap then there are PLENTY of tutorials on the internet and the Java API provides the methods that area available.
    TreeMap (Java Platform SE 7 )
    Are you sure you want a map and not a tree instead?
    https://docs.oracle.com/javase/tutorial/uiswing/components/tree.html

  • XMLBEANS  classcastexception issues when migrating from WLS 8.1 to WLS 9.2

    Hi
    We are migrating our applications from Weblogic 8.1 / xbean (?) to Weblogic 9.2 / apache xbean 2.2.9-r540734 .
    We compiled our schema successfully with new version after making changes recommended by bea (replaced all com.bea.xml occurrences to org.apache.xmlbeans ) along with ant task def etc.
    XBEAN Compilation produces classes in following package structure: com.tuftshealth.container.providerListService.* and com.tuftshealth.container.providerListService.impl.*
    Our XSD looks like below:
    ===============================
    <?xml version="1.0" encoding="UTF-8"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="http://www.tuftshealth.com/Container/ProviderListService" xmlns:messageheader="http://www.tuftshealth.com/Base/MessageHeader" xmlns:name="http://www.tuftshealth.com/Base/Name" xmlns:status="http://www.tuftshealth.com/Base/Status" xmlns:network="http://www.tuftshealth.com/Base/Network" xmlns:date="http://www.tuftshealth.com/Base/DateRange" xmlns:contact="http://www.tuftshealth.com/Base/Contact" xmlns:address="http://www.tuftshealth.com/Base/Address" xmlns:reference="http://www.tuftshealth.com/Base/Reference" xmlns:member="http://www.tuftshealth.com/Base/Member" xmlns:benefit="http://www.tuftshealth.com/Base/Benefit" xmlns:covlimit="http://www.tuftshealth.com/Base/CoverageLimitations" xmlns:groupriders="http://www.tuftshealth.com/Base/GroupRiders" xmlns:buslninfo="http://www.tuftshealth.com/Base/BusinessLineInfo" xmlns:phone="http://www.tuftshealth.com/Base/Phone" targetNamespace="http://www.tuftshealth.com/Container/ProviderListService" elementFormDefault="qualified">
         <import namespace="http://www.tuftshealth.com/Base/MessageHeader" schemaLocation="../Base/MessageHeader.xsd"/>
         <element name="ProviderListRequest" type="this:PrivderListServiceRequestType"/>
         <complexType name="PrivderListServiceRequestType">
              <sequence>
                   <element name="MessageHeader" type="messageheader:MessageHeaderType"/>
                   <element name="providerRequestInfo" type="this:ProviderListRequestParamsType"/>
    =================================
    This results in exceptions at run time when we call a Tibco using a generic broker class.
    The broker uses following method to return class to us:
    obj = XmlObjectBase.Factory.parse(XMLString);
    XMLString contains following payload:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ProviderListResponse xmlns:ns0="http://www.tuftshealth.com/Container/ProviderListService">
    Debug Info:
    PACKAGE NAME: **** com.tuftshealth.www.container.providerlistservice.impl
    CLASS NAME: ****** com.tuftshealth.www.container.providerlistservice.impl.ProviderListResponseDocumentImpl
    java.lang.ClassCastException: com.tuftshealth.www.container.providerlistservice.impl.ProviderListResponseDocumentImpl
    XmlObjectBase is returning the class with www in package name. This causes ClassCastException.
    We tried to use XmlObject and XmlOptions is various combinations to see if "www" in package name goes away but it stays the same.
    Can someone please help us here ? It seems that behavior of XmlObject or XmlObjectBase has changed between two versions. Our apps can't work without the broker to return correct class type.
    Thanks for your help,
    Shikhar

    Hi,
    You can get rid of JSP version specific problems by using the following weblogic.xml file:-
    <weblogic-web-app>
    <jsp-descriptor>
    <jsp-param>
    <param-name>backwardCompatible</param-name>
    <param-value>true</param-value>
    </jsp-param>
    </jsp-descriptor>
    <weblogic-web-app>
    It will also confirm if the error you are seeing is due to JSP version differences in 8.1 and 9.x.
    Regards.

Maybe you are looking for

  • How can I delete songs from iTunes but keep them on my phone?

    I want to delete songs off of my computr because it's taking up unnecessary space, but how can I do this without them being removed from my iPhone when I sync it next?

  • Loss of photos and external hard drive disabled

    I had 22,343 photos and video on an external hard drive. I was not able to back up all of my photos due to limited space on the Photoshop.com.  I was pleased when you said we would have unlimited backup first and then so many free uploads monthly.  I

  • How to update an iphone 3

    how do i update my iphone 3 so i can download apps?

  • F10 - create video DVD from recorded TV programme

    When I try to create a DVD from a recorded TV programme on my Qosmio F10 I get the following message- "Media in the CD/DVD drive is not writable by Media Center" I know that the media is writable by the Qosmio under normal windows but under Media Cen

  • HTML select tag on irpt page - update database from options

    Hi all, I have an irpt page with two selects.  It is the traditional move stuff from one select to the other, then set the order of the options in the configured select.  (Admin page to specify an ordered list of items) After the user gets the list h