Having problems need ur help

hi everyone,
I have developed an application in java, consisting of 62+ class files, now the problem i am having is that whenever i make a jar file, it doesn't run.. as it is suppose to!!!!
Can anyone tell me exactly how to do it in an efficient and better way??? is there any good tool out there that i can use???
Also, is there any third part tool that makes ur app WebStart enabled?
thanks for ur help

Learn to do it manually first.
Secondly, you may be interested in the 'ant' build tool. http://ant.apache.org/

Similar Messages

  • How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    What problem are you having?
    Have you read this KB? - Domain name and DNS: Quick reference

  • Serious problem need urgent help

    Hello,
    sorry to ask you directly to help me but I'm in trouble with my mobo.
    My Pc is:
    P4 2.2Ghz
    Mainboard: MSI 845e Max2-Blr
    Memory:512MBDDR(256Xms2700 Corsayr;256MB Seitec 333mhz)
    Video:Abit GF4 Mx440
    HD:60GB Deskstar IBM
    OS:Win XP PRO
    The problem is:
    My computer worked fine until yesterday when the xms memory arrived.
    I opened my Pc and put out the Seitec memory that I had to test the Xms memory. They went really good. Then I tried to put them together
    but the computer didn't finish the boot process, it booted until the Win xp logon, so i tried to change the memory slots where the memory
    were placed but nothing happened until when i mounted on the pc only the XMS2700 CL2 Memory module that funcioned before.
    The computer didn't boot.The I saw that the leds on the D-bracket were all red, that means the Cpu is damaged or not installed properly.
    I tried with the other memory stick but same problem.
    Please help me as soon as you can.
    Thanks ;(

    My dam computer technician before I could ***l him what mobo
    to order he already bought for me a new MSI845E Max 2-Blr.
    Do you think Msi845E Max2 will broke again or not? ;(

  • I am Student and having a huge problem need some help quick!!!

    Hello I am student in college and i am developing a file share portal for my final year project using Flex 3 on the client side, java on the server side, hibernate for ORM, Sping MVC and My Sql 5. I am having a bit of a problem parsing this:
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="Filename"
    Flex3.txt
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="action"
    upload
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="file"; filename="Flex3.txt"
    Content-Type: application/octet-stream
    Flex 3 can be a pain in the arse!!!!!!
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="Upload"
    Submit Query
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4--
    This is my Java code:
    package com.file.exchange.service;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    import java.io.*;
    import java.sql.Blob;
    import com.file.exchange.vo.Files;
    import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.File;
    import org.apache.commons.fileupload.*;
    import org.apache.commons.fileupload.disk.*;
    import org.apache.commons.io.*;
    import org.apache.commons.fileupload.servlet.*;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.ListIterator;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.ImageInputStream;
    import org.apache.commons.fileupload.util.FileItemHeadersImpl;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class FileUpload extends FileBaseService
         InputStream in = null;
         OutputStream out = null;
         ByteArrayOutputStream bout = null;
         @SuppressWarnings("unchecked")
         @Override
         protected String getXmlFromOperation(HttpServletRequest request,HttpServletResponse response) throws Exception
              int readBytes = -1;
    int length = request.getContentLength();
    in = request.getInputStream();
    byte[] buffer = new byte[length];
    bout = new ByteArrayOutputStream(length);
    while((readBytes = in.read(buffer, 0, length)) != -1) {
    bout.write(buffer, 0, readBytes);
    byte[] inData = bout.toByteArray();
    FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");
    for(int i=0; i<inData.length; i++)
    fos.write(inData);
    fos.close();
              DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
              Date date = new Date();
              String data = "Hello";
              String id = "1";//getCharacterDataFromElement(vID);
              String name = "meh";//getCharacterDataFromElement(vname);
              String type = "1";//getCharacterDataFromElement(vtype);
              String size = "5555";//Long.toString(fileObject.length());//getCharacterDataFromElement(vsize);
              Blob content = org.hibernate.Hibernate.createBlob(data.getBytes());//fisFile);//data.getbytes[]
              String date_uploaded = dateFormat.format(date);
              Files file = getFileDao().uploadFile(Integer.parseInt(id), name, type, Integer.parseInt(size), content, date_uploaded);
              return file.toXml();
    I will so grateful if somebody could point me in the right direction with this or point me to possible examples of parsing this!
    Thanks

    Let me warn you up front: never mark your questions as urgent. People really don't care how urgent it is to you, and will likely only irritate them enough to not want to help you. Lucky for you, I couldn't care less ;)
    you seem to want to get an uploaded file using FileUpload. Did you see the user guide on how to do this? You seem to be going about it in completely the wrong way.
    [FileUpload user guide|http://commons.apache.org/fileupload/using.html]
    Also:
    FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");Hardcoded paths in your code? Not very portable is it. I would define paths in a properties file. Read this:
    [smartly loading properties|http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html]

  • New to this iPOD game, and having problems! Please help!

    So I finally got my hands on a Nano yesterday, and ever since then some odd things have been happening. I would appreciate any help to the following questions/problems I've been having, because the applecare stuff does not seem to really be either helping or addressing my issues.
    1. When starting iTunes, I was told (once it reconized my nano) that I neeed to install the new software for the nano, i expected this and downloaded it, and followed the directions. As soon as I did that though I started getting "Corrupted Error" messages in iTunes. To get this to stop I just reinstalled iTunes...I was able to transfer things now, but now the system does not seem to reconize that the nano has the new software, and asks if I want to install it, and when I do...(again) I start getting those corrupt errors again.
    2. I will move some songs from my iTunes library, to my nano, and it says they transfer over. I then eject my nano from iTunes, wait for the "do not disconnect" to go away, and unplug it, and sometimes, my newly transfered songs are no longer on my nano. Am I doing something wrong?
    3. I went to update my iPod with some playlists from my library, I went to the options, and said "only update from these lists" It updated my ipod...and deleted everything else off of it, and to add insult to injury, it only added the title of the play list, and NOT the actual song files
    I know this is a lot, but I'm really frustrated, so any help would be appreciated.
    Thank you so much for your time.

    Hi,
    Read this link if it happens again: iPod: What to do if Windows displays an "itunes.exe - Corrupt File" message
    There is another post I think it is in the User Tips Library that goes into more detail as well.
    Regards
    Colin R.

  • Bit of a problem need some help please

    import java.io.*;
    class IO
    public static void main(String args[])
    String sOutString = "";
    int iRecordLength = 0;
    int iWork=0;
    int[] array = new int[21];
    try
    // creat input file, buffer.
    FileInputStream fis = new FileInputStream("myInFile.txt");
    BufferedInputStream bis = new BufferedInputStream(fis);
    DataInputStream dis = new DataInputStream(bis);
    // Create an output
    String fileName = "myOutFile.txt";
    File myOutFile = new File(fileName);
    FileOutputStream outStream = new FileOutputStream(myOutFile);
    PrintWriter out = new PrintWriter(outStream);
    out.println ("This is the header record");
    String record = null;
    while ( (record=dis.readLine() ) != null )
    String sTest = "";
    sTest = record;
    if (iWork==0)
    iRecordLength = sTest.length();
    sOutString = sTest.substring(0, iRecordLength);
    System.out.println(sOutString);
    out.println (sOutString);
    System.out.println(sTest.substring(0, 5));
    out.close();
    // System.out.print ("\n");
    catch (IOException e)
    System.err.println("File Error; " + e);
    System.out.println("");
    System.out.println("Ended");
    System.exit(0);
    // use get chars w substring
    Ok theres my code what im trying to do is substring my in file so that it will take a section of it out and put the rest in
    an out file. The problem is that my in file has a few lines and i do not know how to dubstrin g different linec can anyone help me?

    Well,
    I took the liberty of rewriting your code to make it readable, and expurgated most of the carp... what you've got there boils down to a really complicated-azzed implementation of cat.
    package forums;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.PrintWriter;
    import java.io.BufferedWriter;
    import java.io.FileWriter;
    import java.io.IOException;
    class FileCatterator {
      public static void main(String args[]) {
        BufferedReader input = null;
        PrintWriter output = null;
        try {
          input = new BufferedReader(new FileReader("FileCatterator.java"));
          output = new PrintWriter(new BufferedWriter(new FileWriter("FileCatterator.txt")));
          String line = null;
          while ( (line=input.readLine()) != null ) {
            int len = line.length();
            String substring = line.substring(0, len);
            System.out.println(substring);
            output.println(substring);
        } catch (Exception e) {
          e.printStackTrace();
        } finally {
          if(input!=null)try{input.close();}catch(IOException e){e.printStackTrace();}
          if(output!=null)output.close();
    }The substring doesn't do anything.
    Now, What did you need it to do? Print the first so-many characters of each line or something?

  • Strange iTunes Installer Problem, Need Serious Help

    I just recently had no choice but to do a destructive recovery of my pc. I am now re-downloading all of my old software and I got to iTunes. I can download the installer just fine. But when I try to run the installer, after opening it and clicking run, I get the hour glass for about 40 seconds, then I get "iTunes Installer has encountered a problem and needs to close. We are sorry for the inconvenience." iTunes is a necessity for me, so can someone please help me?

    But when I try to run the installer, after opening it and clicking run, I get the hour glass for about 40 seconds, then I get "iTunes Installer has encountered a problem and needs to close. We are sorry for the inconvenience."
    Yes, that's quite a rare one conor. It seems to be associated with "silent" installer failures, and the "invalid signature" and "unknown publisher" error messages. In those cases, most often the installers seem to have been getting damaged during the download to the PC.
    Checking on simpler possibilities first. Have you been downloading the installer from the Apple website?
    http://www.apple.com/itunes/download/
    If so, does it make any difference if you do the download with (say) Firefox rather than IE (or vice versa)?

  • Broadband Usage Problem - Need Proper Help From BT

    Hello,
    A day ago I received a message from BT saying that I was approaching the usage limit for my BT broadband.  I am on Option 2 and normally use around 20GB in a month.  I checked my usage on My BT and found it was 38.64GB on 14/2.  I checked again this morning and found it was now 42.73GB for the 15/2.
    I've tried calling BT, but have only got through to the BT help in India.  The first person I spoke to said it was because I was being charged for my BTVision usage and wouldn't accept that it was independent of my broadband.  I tried again, and the second person said the same, but upon my insistence checked with a colleague - and came back apologising, saying that the BTVision usage was separate and so I would not be charged at the end of the month.
    I am scared to use my BT broadband and BTVision for fearing of incurring more charges.  I have not done anything that warrants high usage: I don't watch films or play games on-line.  I read news, check e-mails, do banking, view video clips - the usual everyday stuff.
    Please can somebody from BT help me?  I am tired of trying to explain the situation and getting the same scripted answers.  The stock response from the BT staff seems to be for me to upgrade to an unlimited package, but I want to know why this is happening (is it a mistake on BT's part?  I did not use 4GB yesterday), how I can go back to my normal broadband usage, and whether I will be charged for this excessive usage.  In short: something is wrong, I have little control over the situation despite trying repeatedly to talk to someone from BT, and I would like some help.
    Thank you
    Paul
    Solved!
    Go to Solution.

    PaulP1966 wrote:
    I've received a very helpful message from a Forum Moderator explaining my problem.  The usage monitor also included my BT Vision usage, so I have not exceeded the limit with my broadband.  Hopefully this problem will be sorted out in the next few weeks.
    It seems a great shame BT's staff in India aren't aware of this problem - it would save a lot of time, telephone calls and worry.
    This is extremely interesting. I've been having this problem since last summer and still am. I have a similar type of usage to you with browsing, emails etc. My work IT department are gobsmacked how my usage can be so high.
    I've been through exactly the same where I've stopped using my BB service for fear of being charged and i have always suspected BT Vision usage was being included. During a 1 hour phone call with India and several times since I have been told it is "IMPOSSIBLE" for BT Vision usage to be included. This admission appears to prove otherwise !!

  • EBS-Interconnect Integration problem - Need Urgent Help

    Hi,
    I am facing problem while trying to connect Oracle Interconnect with Oracle ESB using BEPL Plug-in feature.
    I was actually going though one document on ESB-Interconnect integration and follow all the steps. It did create an entry to ESB console but not able to import Interconnect's BPEL Plug-in Application to ESB console (What I was expecting to get after completing ESB-Interconnect integration).
    All step that I have covered are given below. Can someone help me ASAP. This is kind of a show stopper issue for me.
    For more information you can email at [email protected] or call me at +1 412 296 2094.
    Bunch of thanks in adance.
    Note - I am not able to print OUTPUT section in this post, So anyone need that I can send in different Email.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    1. Open Command Prompt
    CD to the folder where admin_client.jar is located
    2. Deploy "IcAdapter"
    java -Djava.util.logging.config.file=logging.properties -jar admin_client.jar deployer:oc4j:opmn://localhost:6004/home oc4jadmin welcome1 -deploy -file c:\product\10.1.3.1\OracleAS_1\integration\esb\lib\icAdapter.rar -deploymentName ICAdapter
    3. Deploy "icwsilplugin"
    with log:
    java -Djava.util.logging.config.file=logging.properties -jar admin_client.jar deployer:oc4j:opmn://localhost:6004/home oc4jadmin welcome1 -deploy -file c:\product\10.1.3.1\OracleAS_1\integration\esb\lib\icwsilplugin.ear -deploymentName icwsilplugin -parent default
    4. Bind "icwsilplugin"
    java -Djava.util.logging.config.file=logging.properties -jar admin_client.jar deployer:oc4j:opmn://localhost:6004/home oc4jadmin welcome1 -bindWebApp -appName icwsilplugin -webModuleName icwsilplugin -webSiteName default-web-site -contextRoot /ic
    5. Shutdown and restart the ESB server
    6. Run the "regadapters.bat/sh script" from ORACLE_HOME\integration\esb\bin (for this case its c:\product\10.1.3.1\OracleAS_1\integration\esb\bin) directory.
    7. Start Interconnect database and repository.
    8. Change "oc4j-ra.xml" located in "<esb_home>\j2ee\home\application-deployments\default\IcAdapter (for this case - c:\product\10.1.3.1\OracleAS_1\j2ee\home\application-deployments\default\IcAdapter)" with following details:
    <?xml version="1.0"?>
    <oc4j-connector-factories xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.oracle.com/technology/oracleas/schema/oc4j-connector-factories-10_0.xsd" schema-major-version="10" schema-minor-version="0" >
    <imported-shared-libraries>
    <import-shared-library name="oracle.bpel.common"/>
    <import-shared-library name="oracle.xml"/>
    </imported-shared-libraries>
    <connector-factory location="eis/ICAdapter" connector-name="Interconnect Adapter">
    <config-property name="applicationName" value="BPELPM"/>
    <config-property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
    <config-property name="connectionString" value="jdbc:oracle:thin:@ASC-587CDFCE:1521:ORCL"/>
    <config-property name="userName" value="ichub"/>
    <config-property name="password" value="tcsalc0a"/>
    <config-property name="repoName" value="InterConnectRepository"/>
    <connection-pooling use="none"></connection-pooling>
    <security-config use="none"></security-config>
    </connector-factory>
    </oc4j-connector-factories>
    9. Add <code-source path=”<IC_HOME>\integration\interconnect\lib\oai.jar"/> to the "Server.xml" file located in <ESB_HOME>\j2ee\home\config (for this case - c:\product\10.1.3.1\OracleAS_1\j2ee\home\config)
    Given "<code-source path="C:\oracle\AS101202MID\integration\interconnect\lib\oai.jar"/>" in place of <code-source path="C:\oracle\mid\integration\interconnect\lib\oai.jar"/>
    10. Restarted the ESB server to see desired output in ESB console.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ===========
    OUPUT Details
    ===========
    Expected Output:
    ================
    A tree structure look like as below -
    - adapters
    applications
    - InterConnect
    - eis_ICAdapter_BPELPM
    Implemented_Procedures
    Invoked_Procedures
    - Published_Events
    Customer_AddCustomer
    - Subscribed_Events
    Customer_NewCustomer
    legacy
    Output that I am getting:
    =========================
    A tree structure look like as below -
    - adapters
    applications
    InterConnect
    - legacy
    mvs08
    Regards,
    --Kaushik

    I see what you are saying. Actually, I have already thought about that Option (Creating an AQ in between so that Oracle Interconnect can write to and EBS can read from for a particular message). Thanks for reminding me about this.
    I was just trying to see Oracle Interconnect's BPEL Plug-in capabilities. I will try to run "regadapters.bat / sh" few more time to see if it works this time.
    Unfortunately, I don't know dutch but you can always send me what you wrote. I will try to translate the same using some translator.
    Thanks a lot for your help.
    --Kaushik                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • 865pe Neo2-V problem. need some help, please

    i clocked my CPU [email protected](box culer-40C idle) and i believe that i can raise FSB more but i have problem.my Kingmax(512ddr400) goes to 505 MHz, and i can't stop her. i can't put FSB/DRAM 1:1. it is allways 4:5. My old Transcend too. So it isn't memory. In BIOS i have options:
    ddr - 266/333/AUTO. i have tried 333 and AUTO and DDR is 4:5. Also, i don't know where i can turn off "performance mode".
    DDR modul is in slot1. I did not tryed to put him in slot2 or 3. Default timings are 2.5/3/3/7. i chosed 2.5/4/4/8.
    also, when i chose "by speed", BIOS do nothing, and latencies is like before i chose "by speed" so i need to chose 2.5/4/4/8 by myself.
    BIOS version is 6.1(latest)
    this is my stable selection:
    CPU - 3.33 GHz(18x185) - 38 C temperature now/ motherboard 29 C
    DDR - 462 MHz
    Thanks

    my memory now runs @ 1:1 after i chose option DDR 266 and my cpu goes @3.78!!!!!!!!. excelent.

  • Widget creation on Flex builder and related problems - need some help

    Hi all.
    I am trying to create a widget like application and it seems
    I have made a mistake. As you know, desktop widgets are like small
    stickers, they do not appear on taskbar and can be hidden or
    docked.
    The problem is that I created an AIR application using Flex
    Builder 3 Beta and now I cannot find how to make that application
    behave like custom-shaped window. My app appears on Windows taskbar
    and I don't want it. When I drag the window (which is a custom
    shape) it shows that nasty dragging rectangle around it.
    As far as I found out (and tried it) I need to use cod like:
    var initOptions:NativeWindowInitOptions = new
    NativeWindowInitOptions();
    initOptions.systemChrome = NativeWindowSystemChrome.NONE;
    initOptions.type = NativeWindowType.UTILITY;
    to hide my window from the taskbar. But it seems I cannot use
    such a code for class mx:Application. Or can I (would be grateful
    for some idea)?
    The main question is:
    if I want to migrate my app to that NativeWindow based
    solution - then NativeWindow is not an mx class and I cannot find
    how I will use Flex Builder Design mode to arrange my GUI elements.
    Is it somehow possible to wrap my mx:Application inside
    NativeWindow and do not have to migrate the design from mxml files
    to pure ActionScript?
    The second issue - if I want to use some kind of subforms -
    like widget settings window - when I move that window with the
    mouse, it is being clipped to the region of my Application. Does
    that again mean that I need to use NativeWindow for creating such a
    "Widget settings" dialog window?
    Thanks for any ideas (and especially for useful links and
    examples :-) )

    Hi all.
    I am trying to create a widget like application and it seems
    I have made a mistake. As you know, desktop widgets are like small
    stickers, they do not appear on taskbar and can be hidden or
    docked.
    The problem is that I created an AIR application using Flex
    Builder 3 Beta and now I cannot find how to make that application
    behave like custom-shaped window. My app appears on Windows taskbar
    and I don't want it. When I drag the window (which is a custom
    shape) it shows that nasty dragging rectangle around it.
    As far as I found out (and tried it) I need to use cod like:
    var initOptions:NativeWindowInitOptions = new
    NativeWindowInitOptions();
    initOptions.systemChrome = NativeWindowSystemChrome.NONE;
    initOptions.type = NativeWindowType.UTILITY;
    to hide my window from the taskbar. But it seems I cannot use
    such a code for class mx:Application. Or can I (would be grateful
    for some idea)?
    The main question is:
    if I want to migrate my app to that NativeWindow based
    solution - then NativeWindow is not an mx class and I cannot find
    how I will use Flex Builder Design mode to arrange my GUI elements.
    Is it somehow possible to wrap my mx:Application inside
    NativeWindow and do not have to migrate the design from mxml files
    to pure ActionScript?
    The second issue - if I want to use some kind of subforms -
    like widget settings window - when I move that window with the
    mouse, it is being clipped to the region of my Application. Does
    that again mean that I need to use NativeWindow for creating such a
    "Widget settings" dialog window?
    Thanks for any ideas (and especially for useful links and
    examples :-) )

  • External Table Problem - Need Urgent Help

    Hi All,
    I want to load flat file data to oracle database.
    I have used external table feautre for loading data.
    My data is like
    "F","1","1","KIAWAH ISLAND rated off the pace, rallied to gain command on the far turn, then"
    Now my problem is that fields are terminated with comma but there is a comma inbetween field values. please see last field value (i.e ", then" that is value of third field).
    Now what access parameter should specify to create external table that maps to this type of data. I have used fields terminated by "," and Enclosed by '"' and '"".
    but it still gives me error.
    So, Please help urgently

    Could you post your controlfile?

  • Computer having problems - need quick consult

    We bought an iPod, ripped a couple hundred songs from existing CD collection, and synced with my roommate's Windows box. We then told iTunes to sync with his entire picture library in full resolution. We synced, and so far so good.
    Now...the PC is older and totally on the fritz, and we're going to take it in for repair. Meanwhile, we strongly suspect that they'll have to at least wipe the hard drive clean if not install other new hardware. We might even have to trash it and buy something new (probably a Mac).
    So I enabled disk mode on the iPod, and now in addition to what's synced with iTunes, I copied all of his original digital music files (stuff he downloaded over the years) to the iPod as well as whatever was in My Documents.
    My question: Is it the case that if we have to wipe the drive clean and start fresh, after reinstalling iTunes for Windows, would someone kindly verify the following as relates to a repaired PC? I'd be most grateful.
    1) Using disk mode, I can copy all of the digital music files (not iTunes files) to the new computer using disk mode, and then re-import them into iTunes
    2) Using disk mode, I can also move all the photos from iPod into some new directory on the computer using disk mode
    3) The music on the iPod that was originally synced with iTunes will no longer be moveable back to the new PC (instead, it must be re-ripped into iTunes from CDs)
    4) The files from the My Documents folder on the iPod can be copied to the new My Documents folder on the PC.
    If the above is true, then having to replace the hard drive or PC won't be a big issue. If some or all of the above is NOT true, then I have another problem to solve.
    Thank you for any assistance!

    Rather than move the files through Explorer (you'll have to enable viewing hidden files, they'll all be numbered, etc.) I'd use 3rd party software instead, such as Yamipod. If you do buy a Mac you can use Senuti.
    If you have full resolution photos on the iPod, they will be visible in a Photos folder and you can copy them.
    You can use Yamipod, Senuti or other software to move your music to the new computer.
    Yes, you can copy any data files you've placed on the iPod to the new computer (I'm assuming you enabled disk use and you copied them over and they aren't music, videos, TV shows, photos or anything like that).

  • ASO Drill down problem needing desperate help

    In Excel addin and Financial Report, I have problems with drilling down. We're using Essbase ASO 9.3.1.
    The scenario is as follows:
    Parent  Figures
    z   
     z1 100
     z2 200
     z3 300
    1. When I retrieve in Excel or FR for z, I get 600 which is corrent.
    2. When I retrieve in Excel or FR for z1 or z2 or z3 or all together, I get correct figures.
    3. When I retrieve in Excel or FR both parent and child, z = 600, z1 = 100, z2 = 200, z3 = 300, I still get correct figures.
    Problem:
    When I drill down from Excel or FR from a, which had correct figures, z1 = 100, z2 = 200, z3 = 300, will be correct but z will be missing (z = missing).
    Is there anyway so that I can drill down from z and still having all figures correct like I get in point 3.?
    Similarly I found a post as follows, which has similar problems:
    ASO retrieves inconsistent between Excell and Finanical report in 9.3.1
    The difference is that my Excel does not display parent as well when drilled down.
    Edited by: sycshk on Dec 22, 2008 2:14 AM

    Hi Anjana,
    Check your DSO setting was checked for SID generation upon activation or not. If it unchecked then your report will run very long time because of no indexes.
    Try your report with the fields you are drill down indefault view and see how much time report is running. So you will know whether it is dril down problem or huge data problem. Try to keep as many as filters as per user.
    Thanks.

  • I am having problems making DVD  help

    I have been trying to make a dvd of a play (2 hours in length). I made an IDVD project of full length of play and played DVD on my Poloroid and JVC dvd players and it was okay except for about 16 minuites of stuttering and video breaking up at certain parts in 2nd act.
    I made a seperate file for Act 1 and Act 2 thinking I was trying to put to much video on one dvd. I then used disk utility to make dvd from img. file. Now dvd doesn't play at all on my Poloroid dvd player and still stutters and breaks up on JVC player. I just used IDVD to make a copy from the DVD project file (bypassing disk utility method) and the DVD will not play on either player. Plus my IDVD program is stuck in cleaning up done on Burn menu. can anyone help me????

    I mean 48000 Hz
    OK. That's good.
    Some times these palying issues are because of the burned media. That's why creating a disk image and using DVD Player software to check the project is the best way to do this. Then burn a DVD at 4X or slower. I'd stay away from Memorex and TDK discs. Verbatim DVD-R is very reliable.
    But that doesn't solve your "stuck on cleaning up" problem. Is all of your RAM from Apple?
    Suggest you create a disc image and then burn the DVD. File/Save As Disc Image...
    http://docs.info.apple.com/article.html?artnum=164927
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006
    G4 DP 1.25 GHz 2GB RAM 4 Drives 770GB   Mac OS X (10.4.6)   2 SuperDrives (SL 8X & DL 16X)

Maybe you are looking for

  • Using a SDO_FILTER in a JDBC GeoRaster Query

    Hi, I have the following query which works perfectly: http://192.168.33.52:8888/mapviewer/wms?REQUEST=GetMap &SERVICE=WMS &VERSION=1.1.1 &LAYERS= &mvthemes= <themes> <theme name="geor_theme"> <jdbc_georaster_query jdbc_srid="8307" datasource="WMS" ge

  • Which service type to use for Proxy Service

    I have a question regarding a Proxy service. I have a need for a local (transport local) Proxy service which is called by another proxy service. It is a synchronous service which has an XML incoming message and an XML outgoing message. I have the fol

  • Uninstalling programs like Photoshop

    Hi Everyone, and Happy Holidays I am upgrading from Adobe CS1 to CS4, and want to know if I simply just drag the old application icons to the trash and empty it out to completely uninstall the old programs. Thank you or your time and assistance!

  • HT1414 iphone 4 back up and update

    I have updated my iphone 4 without backing up first have I lost all my photos and contacts or are they saved on my computer some where Tracey

  • Photos for OS X - batch change title - Smugmug

    I downloaded the update, and got Photos -and iPhoto was replaced.  I used to batch change the title of multiple photos before uploading them on Smugmug. It used to be so easy with just one command.  But I can no longer find the same command on Photos