A little bit of help please...

I've been working on a project for school and I had it working pretty good, but then I did something and now it won't run. It compiles with no errors, but when I go to run it...it just doesn't do anything. Any help would be great :]
import java.util.Scanner;
import java.util.Stack;
public class StackTest
     Scanner scanner = new Scanner(System.in);
    Stack<Character> stack = new Stack<Character>();
    Stack<Character> stack2 = new Stack<Character>();
    Stack<Character> junkStack = new Stack<Character>();
    String inputLine = "";
    String searchString = "";
    int junk;
    public void reverse(String inputLine)
          // push all characters on the stack
        for(int i = 0; i < inputLine.length(); i++)
                char temp = inputLine.charAt(i);
                stack.push(new Character(temp));
        //Reverse the string onto another stack           
        while(stack.empty() != true)
                 stack2.push(stack.pop());
    public void searchForString(char firstSearchLetter, char lastSearchLetter)
            for(int i = 0; i < stack2.size(); i++)
                if(stack2.peek() == firstSearchLetter)
                      junkStack.push(stack2.pop());
                      while(stack2.peek() != lastSearchLetter)
                           junkStack.push(stack2.pop());
                       junkStack.push(stack2.pop());
                 else
                      stack.push(stack2.pop());
     public int calculateJunk(Stack junkStack)
          int junk = junkStack.size() - searchString.length();
          return junk;
     public void main(String[] args)
          System.out.print("Please enter your sentence: ");
        inputLine = scanner.nextLine();
        StackTest st = new StackTest();
        st.reverse(inputLine);
        System.out.println("Stack2: " + stack2);
        System.out.println("Stack: " + stack);
        System.out.println("Please enter the search string: ");
        searchString = scanner.nextLine();
        char firstSearchLetter = searchString.charAt(0);
        char lastSearchLetter = searchString.charAt(searchString.length() - 1);
        System.out.println("first letter: " + firstSearchLetter);
        System.out.println("last letter: " + lastSearchLetter);
        System.out.println("junkStack: " + junkStack);
        System.out.println("stack: " + stack);
        System.out.println("junk in between: " + junk);
}

I haven't stared at your code, but why not move the logic in your main into a method, for starters?
public void run() {
          System.out.print("Please enter your sentence: ");
        inputLine = scanner.nextLine();
        st.reverse(inputLine);
        System.out.println("Stack2: " + stack2);
        System.out.println("Stack: " + stack);
        System.out.println("Please enter the search string: ");
        searchString = scanner.nextLine();
        char firstSearchLetter = searchString.charAt(0);
        char lastSearchLetter = searchString.charAt(searchString.length() - 1);
        System.out.println("first letter: " + firstSearchLetter);
        System.out.println("last letter: " + lastSearchLetter);
        System.out.println("junkStack: " + junkStack);
        System.out.println("stack: " + stack);
        System.out.println("junk in between: " + junk);
public static void main(String[] args) {
    StackTest st = new StackTest();
    st.run();
}Message was edited by:
BigDaddyLoveHandles

Similar Messages

  • HT4208 I just need a little bit of help. I visited the american ap store looking for the new scrabble game which is not available in the australian ap store. Can't get it anyway as I don't have an account there. I am trying to get back to the australian a

    I just need a little bit of help. I visited the american ap store, using my i phone, to check out something. I dont have an account with them so I couldn't get what I wanted anyway.Now, I need to get back to the australian store and I don't know how to do that. Please help!

    Go to app store- scroll down to bottom- click on apple id- change country

  • Need a little bit of help with substring...

    Im very new at java programming, and need a bit of help with a problem:
    Here is what I have:
    System.out.print("Enter a string : ");
    Scanner scan = new Scanner (System.in);
    stringy = scan.nextLine();
    Now I want to split the string "stringy" like this: h:hi:hip:hipp:hippo
    I know this uses substring, but I can't figure out how to do it.
    Any help would be great, thanks!

    I know about the length method, what I dont knowis
    how to use the length and substring methodstogether
    to solve the problem i mentioned initially. There are three ingredients to perform this task:
    - String.length()
    - String.substring(int start, int end)
    - for-statement:
    http://java.sun.com/docs/books/tutorial/java/nutsandbo
    lts/for.html
    Pseudo code:IN <- input String from user
    LOOP FROM 0 -> IN.length()
    print IN.substring(?, ?)
    print ":"
    END LOOP
    Remember, Im very new. ;)Remember that by just handing you the solution, you
    will learn far less than finding things out by
    yourself.
    ; )Thanks a lot, i should be able to figure it out froom the pseudo code. :)

  • A little bit of help with Bind variables please

    Hi,
    I am having a bit of trouble with bind variables I have been looking at the Dev guide and the forum to try and achieve this and it is still not happening for me, could anybody please help or point me in the right direction:
    I have created a simple PersonVO with the basic query:
    Select distinct full_name from xxml_people where person_id = :1
    In the PersonVOImpl.java I have added the method:
    public void initQuery(String personId)
    Number person = null;
    try
    person = new Number(personId);
    catch
    (Exception e){}
    setWhereClauseParam(1,person);
    executeQuery();
    Then in the PersonAM I have added the method:
    public void initPersonQuery(String personId)
    getPersonVO1().initQuery(personId);
    I then call this method in my processRequest section of my page controller:
    PersonAMImpl am = (PersonAMImpl) pageContext.getRootApplicationModule();
    String personId = "581";
    am.initPersonQuery(personId);
    When I try and run this I get the error:
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT distinct full_name from xxml_absence_calendar where person_id = :1
    java.sql.SQLException: ORA-01006: bind variable does not exist
    Am I binding the variables correctly? Or am I making some stupid mistake?
    I am ultimately looking to create a messageChoice where the logged in user will see a list of all organisations underneath him and the one level above. I plan to do this by passing the User’s Organisation name into a VO query using the organisation as a Bind Variable. I think once I have worked out how to bind variables this should be straight forward.
    Many Thanks

    Even though the parameter binding values may be same, you should never use the positional param more than once. So always go for the format
    select distinct full_name from xxml_people where supervisor_id = :1
    UNION
    select distinct full_name from xxml_people where person_id = :2
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Thinking of BT Vision - Bit of help please

    Just joined BT for broadband, due to go live on Friday. Have also been offered Vision however my Sky contract isn't up until 22 May. However, if I can get a good deal I don't mind overlaping the two for a month.
    I have been doing a bit of research into BT Vision to see if it fits my needs. I am finding myself watching the same old channels and same old programs on sky. I tend to record most of my TV now and very rarely watch 'live', so I think the on demand aspect of BT Vision would suit me perfectly.
    My main feature would be Sport and more specifically football.
    Both sky sports 1 & 2 channels are on different media. Virgin, BT Vision and now top up tv freeview.
    My question is does anyone know where the majority of football games will be shown next season? Will it be on Sky sports 1 & 2 or will they move it over to 3 and 4 so that people on other media cannot watch without subscribing to Sky?
    At the moment majority of games are 1 and 2 with the odd game on 3 and 4.
    This will have an impact on wether I chose BT or not. Mainly interest in premier league, but would like as much football as possible. I also like the idea of the fee ESPN as well, which would save £10 per month compaired to Sky.
    Any other tips anyone can give before making the switch?
    Help is appreciated. Thanks in advance.
    Solved!
    Go to Solution.

    I don't think anyone will be able to tell you what Sky plan to do with football.
    TBH if Sport is the main reason for watching TV you should stick with Sky.
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

  • 64-bit Smart View + Excel 2010 64-bit Issues - Help Please

    Hello everyone.
    First, I am not an "IT guy" so please bare with me as I am not technical but need help.
    I am running Windows 7 64-bit Professional and Excel 2010 64-bit. I installed Oracle Smart View for Office, Fusion Edition 64-bit as an add-in within Excel.
    I have worked with our "Hyperion Admins" to connect to the right server so that my "private connections" are set correctly (hopefully that makes sense).
    However, when I attempt to refresh my Smart View query I end-up retrieving no data. The "refresh" button under "Smart View" in Excel will proceed as a refresh is occurring but then not return data (I know this Smart View template works as I've used it many times on 32-bit Excel).
    Our admins have informed me that I cannot use 64-bit Smart View because our "server" is on a 32-bit O/S (or something similar to that). To me, the logic doesn't make sense and I'm hoping that there is a solution the admins are not aware of.
    Happy to answer any questions and appreciate any help.

    JDN wrote:
    We had a similar experience as JTF, HsGetValues would not work but the AdHoc function worked fine. I put in an SR with Oracle and they refereced the below document. We ended up having IT install 32 bit office on the machine along with 32 bit Smartview (11.1.2.2.300) and now it is working fine.
    Regards,
    Jason
    Some Smart View Functions Do Not Work in Excel 2010 64-bit. [ID 1463814.1]
    To Bottom
    Modified:Aug 30, 2012Type:PROBLEMStatus:PUBLISHEDPriority:3
    Comments (0)
    In this Document
    Symptoms
    Cause
    Solution
    References
    Applies to:
    Hyperion Financial Management - Version 11.1.2.2.000 and later
    Information in this document applies to any platform.
    Symptoms
    When using Smart View (SV) with Microsoft Office 2010 SP1 some SV functions do not work or cause Excel application to crash.
    Cause
    In 64-bit versions of Excel 2010 SP1, the presence of Smart View functions may cause Excel to terminate abruptly and may prevent Copy Data Point and Paste Data Point functions from working. This has been identified as a defect in Microsoft product.
    Solution
    Use the 32-bit version of Smart View until Microsoft issues fix for their 64-bit Office products.
    References
    @ BUG:13606492 - USING HSSETVALUE FUNCTION CAUSES EXCEL CRASH
    14091219
    Related
    Products
    •Enterprise Performance Management and Business Intelligence > Enterprise Performance Management > Financial Management > Hyperion Financial Management > Smart View > Smart View
    Keywords
    BIT;CRASH;EXCEL;HSGETVALUE;MICROSOFT;OFFICE 2010;SMART VIEW;SMARTVIEW;SP1;DYNAMIC ADV PROBLEM SOLUTIONCan you use the 32-bit Smart View with 64-bit Office? Unfortunately, 32-bit Excel cannot handle my files so I am forced to use 64-bit so going back to a 32-bit Office will not work for me.

  • Method calling, a little difficultly, some help please

    Hi there!
    I have a "main" Class named Exchange (has the GUI elements) and instantiates other Classes. Another Class named Comms performs some methods which listen to an incoming stream of data. One particular method named incomingBody( StringBuffer sb ); holds these values in the form of a StringBuffer. Which has taken a returned StringBuffer copied from the addToHistory( Message msg ); method.
    Class Comms {
    //Handles history of incoming <body> XML from receievedPacket
    protected void addToHistory( Message msg ) {
    //Build String to append
    StringBuffer sb = new StringBuffer();
    sb.append( msg.getBody() );
    incomingBody( sb );
    System.out.println( sb );
    //Stores the StringBuffer value from addToHistory
    public StringBuffer incomingBody( StringBuffer sb ) {
    StringBuffer body;
    body = sb;
    if( body != null ) {
    System.out.println( body );
    return body;
    //end of Class Comms
    Now I'm not sure how to run the incomingBody method within my main Class, so that I can put the StringBuffer into a JEditorPane, but for now I just to print it to the Terminal window for testing. What I thought would be correct is instantiating the Comms Class within the "main":
    Class Exchange {
    Comms communicate = new Comms();
    //run method
    System.out.println( communicate.incomingBody);
    But I get this error:
    Exchange.java:39: incomingBody(java.lang.StringBuffer) in Comms cannot be applied to ()
    System.out.println( communicate.incomingBody() );
    ^
    1 error
    Any advice ? Please and thanks! :)

    Well, I've not really read through your code. The incomingBody method appears to check to see if the StringBuffer you pass it is null and if not it adds it to some list, right? So - if you don't have a StringBuffer to pass it, then why are you calling it?
    not sure that made sense - you said that you want to use the StringBuffer that incomingBody returns in the main class, but that method returns the same StringBuffer you pass it - so I don't see why you would need to use its return value. The only thing that method does is add the passed in StringBuffer to a list.
    I think maybe you should look back over your methods and write out a quick comment about what the method is supposed to do, that might help
    Lee

  • Little bit of help with the duplication process needed

    Hi
    I trying to duplicate a database from one server to a remote server. They are both running windows server 2003 (my first problem) , the primary server is running oracle 11gR1 and the (hopefully) receiving server is running 11gR2(is that going to be a problem?) and I'm a little stuck on some parts of the process.
    The book I'm using says to edit the listener.ora file to include a SID_DESC of the remote database. Here is my listener.ora file with the modifications
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CGARDMSTR)
    (ORACLE_HOME = G:\app\administrator\product\11.1.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = CGARDMSTR)
    (ORACLE_HOME =G:\app\administrator\product\11.1.0\db_1)
    (SID_NAME = CGARDMSTR)
    *(SID_DESC* *=*
    *(GLOBAL_DBNAME* *=* cgard)
    *(ORACLE_HOME* *=F:\oracle\product\11.2.0\dbhome_1)*
    *(SID_NAME* *=* cgard)
    (bold is what i added)
    it then said to chnage my tnsnames.ora
    CGARD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cgard)
    CGARD5DE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARD5DEV)
    CGARDMST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARDMSTR)
    cgard =
    *(DESCRIPTION =*
    *(ADDRESS = (PROTOCOL = TCP)(HOST = live.host.local)(PORT = 1521))*
    *(CONNECT_DATA =*
    *(SERVER = DEDICATED)*
    *(SERVICE_NAME = cgard)*
    I changed the local domain to host for business reasons
    The next step was to create a initialization parameter file which I am guessing is a pfile and hopefully not a spfile. It then says to only enter one param db_name and the conversion params if the filesystem is diffrent. Problem is I don't know what to do with this file, if I am suppose to switch the second database to this file then surly I would need some more params? Anyway thats the first of many questions.
    When I try to run through the rman commands it describes it also trips up:
    RMAN> connect auxiliary sys/*********@live.host.local
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-04006: error from auxiliary database: ORA-12170: TNS:Connect timeout occurr
    ed
    The other database is up and connectable via sqldevloper so I'm guessing it was my configuration of listener and tnsnames
    Ok to reiterate my questions are:
    1) what needs to be in the pfile I create for the database thats going to receive the backup and what do I do with that file when I have made it?
    2) I am pretty sure my listener and tsunamis config is completely wrong so can I have some pointers on fixing that?
    3) Was the reason I could not connect to the receiving database my tns and listener config or is it something else?
    Quite a few other questions but untill I know some more about the above I doubt I will be able to ask properly.
    Also if this helps the book I am using is Expert Oracle Database 11g Administration and the page is 835(the method that begins on that page) and I am willing to write out the whole method if you need more details.
    Oh and if you havent figured it out I am very new to this so if some of this sounds very wrong or just stupid just say what I need to change and I will get right on it.
    Thanks
    Alex

    Ok so I have made some progress. Here is where I am currently at:
    RMAN> RUN
    2> {
    3> SET NEWNAME FOR DATAFILE 1 TO 'F:\oracle\oradata\cgard\file1.dbs';
    4> SET NEWNAME FOR DATAFILE 2 TO 'F:\oracle\oradata\cgard\file2.dbs';
    5> SET NEWNAME FOR DATAFILE 3 TO 'F:\oracle\oradata\cgard\file3.dbs';
    6> SET NEWNAME FOR DATAFILE 4 TO 'F:\oracle\oradata\cgard\file4.dbs';
    7> SET NEWNAME FOR DATAFILE 5 TO 'F:\oracle\oradata\cgard\file5.dbs';
    8> SET NEWNAME FOR TEMPFILE 1 TO 'F:\oracle\oradata\cgard\temp1.dbs';
    9> duplicate target database
    10> to cgard
    11> from active database
    12> pfile='F:\oracle\product\11.2.0\dbhome_1\database\initCGARD.ora';
    13> }
    executing command: SET NEWNAME
    starting full resync of recovery catalog
    full resync complete
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting Duplicate Db at 19-NOV-10
    using channel ORA_AUX_DISK_1
    contents of Memory Script:
    set newname for datafile 1 to
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS";;
    set newname for datafile 2 to
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS";;
    set newname for datafile 3 to
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS";;
    set newname for datafile 4 to
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS";;
    set newname for datafile 5 to
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS";;
    backup as copy reuse
    datafile 1 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS"; datafile
    2 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS"; datafile
    3 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS"; datafile
    4 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS"; datafile
    5 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS"; ;
    sql 'alter system archive log current';
    executing Memory Script
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting backup at 19-NOV-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=143 device type=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00001 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    TEM01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:23:
    52
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00004 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\USE
    RS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    24
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00002 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    AUX01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    43
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00003 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\UND
    OTBS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    17
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00005 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\RMA
    N01.DBF
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 11/19/2010 16:25:55
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    55
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    RMAN>
    I did issue the commands:
    C:\Documents and Settings\Administrator>rman target /
    Recovery Manager: Release 11.1.0.6.0 - Production on Fri Nov 19 13:55:40 2010
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: CGARDMST (DBID=3160500813)
    RMAN> connect catalog rman/rman
    connected to recovery catalog database
    RMAN> connect auxiliary sys/**********@cgard
    connected to auxiliary database: CGARD (not mounted)
    So I am not quite sure what it wants. I read somewhere about a password file but I don't understand how it will help, also most things I have looked at wernt clear on how to do it. I took a stab anyway:
    G:\app\administrator\product\11.1.0\db_1\BIN>orapwd file=orapwcgard password=*********** entries=20 ignorecase=n
    Was run on the original database host.
    File was then copied to "F:\oracle\product\11.2.0\dbhome_1\database" on the receiving database's host it was then renamed to PWDcgard.ora as there was file there already with that name.
    It did not help(same error).
    The book I am using mentions the 'PASSWORD FILE' param to be used with the duplicate command but I cant find a example on how to use it so any help with that would be great.
    Thanks for the effort so far guys its really appreciated.

  • Need a tiny bit of help please!

    Hey guys,
    I have a full set of renders for a character. At this time I
    have a 3 point stand and an 8 point walk motion. Basically 3
    separate images for standing and 8 separate images for walking.
    I want to use AS3 and have the character standing and doing
    the 3 point animation. Then I want to make him walk via user
    control with the 8 walk images.
    To this point I have searched everywhere for a tutorial on
    how to do this but all I end up finding is for artists and how to
    draw the animations. But like I said, I have the animation images,
    I just need to learn how to implement them into flash.
    In the end to learn this, all I want to do is to properly
    encorperate the images into flash so that I can do a test movie and
    have the character doing his stand animation and then when I press
    left or right have him do the walk animation. From there I will go
    onto collision and whatever I feel like learning at that time.
    Right now, just getting a standing animation and a user controlled
    walk would be great.
    Could anybody point me towards a good tutorial on how to do
    this?
    Thanks in advance for any help you can give.

    A lot of the avi files made on Windows machines use variable bit rate mp3 audio, which QT will not play. One workaround is to use this freeware Windows video processor to change the format of the avi audio.
    VirtualDub
    Open the avi in VirtualDub, set the video menu to Direct Stream Copy and set the audio to Full Processor Mode. Then choose either uncompressed audio in the compression item in Audio Menu or IMA audio. Now open the avi and then use Save as Avi in the File menu. The video will be passed through with no change to the new avi but the audio will be changed to the new compression setting. The two compression types I mentioned will play in QT Player with no problem. You will need to have the video codec for the avi in Video for Windows form. If you can play the avi in Windows Media Player you have the right codec already.

  • A little bit of help would be appreciated thanks

    well no\w im in calm mode im here to ask how can i fix my iPod.
    problems
    Folder with Exclmation mark (sometimes when i restart my ipod)
    wont connect to itune sor iPod updater (lattest)
    iPod appears as "removable disk (f:) in my computer
    explorer.exe process lags when i connect my iPod into a usb 2.0 port.
    my pc specs
    Intel Pentium 4 2.80ghz
    1024mb or ram
    nvidia GeForce FX 5200 128mb graphics
    Windows Xp Pro SP2
    Asus Motherboard p4v533 mx uayz
    iPod 40gb 4th Genertaion
    noe please im asking niceky can some help me solve my issue.
    I would also want to know how to check if there are any corrupt drivers on ym computer because it might be a usb driver which is stuffing up or a iPod driver.
    - Raph

    if you transport the whole function group then every thing will go automatically. try to create the request for function group .(if you trasnport the function group every thing will be transported along with it)
    many ways..
    1. go to SE80 transaction , enter the function group
    now right click on function group from menu choose 
    Other Functions -> Write Transport Entry
    create the request.
    2.
    go to SE03 transaction
    Include Objects in Transport Request
    in the selection screen choose the radiobutton Selected objects , there you can see some thing like below
    R3TR             FUGR       YMIGO_BADI

  • A little bit of help

    Hey!
    Can somebody help me with something?

    Sure
    How to write a good question
    To help other members answer your question, give as many details as you can.
    Include your product name and specs such as processor speed, memory, and storage capacity. Please do not include your Serial Number, IMEI, MEID, or other personal information.
    Provide the version numbers of your operating system and relevant applications, for example "iOS 6.0.3" or "iPhoto 9.1.2".
    Describe the problem, and include any details about what seems to cause it.
    List any troubleshooting steps you've already tried, or temporary fixes you've discovered.

  • Nokia 720 Problems - Need a little bit of help her...

    Hi,
    Few Problems with a 10 day nokia 720:-
    1. Earphone volume while in a call - I can't change the earphone volume while in a call. This is very frustating. Is this a problem with my nokia 720 or is this a general issue with all 720.
    2. Microphone doesn't work in certain directions, while in a sleeping pose or sometimes sitting. This has never happened to me in around 6-7 phones that I have used. Please tell me if this is a problem for my phone or device issue.
    3. When I switch off mobile data connection, my overall mobile connection is lost after some time. Also I am experiencing too frequent call drops, Also my network just goes out of the picture, it just doesn't detect network. Facing a lot of issues with this,
    4. Sometimes it zooms out and doesn't come back to its original position. I don't know what is the problem with this. I have to restart my phone to get back in normal position.
    5. My bookmyshow app doesn't work after the update [this can be ignored ]
    I expected more out of my nokia lumia but hard to say if the problems are with my phone only or for all nokia 720. Hoping for some help in this forum.
    Also please tell me if nokia will change my device if this is a problem with only my device and not every device. Please help.
    Thanks in advance

    the screen zoom problem and mic problem is there in many phones.
    hv not been able to sort mic /call drop issue, bt for zoom
    the phone zooms by double tap on any screen, this is a feature in ease of access. go to settings->ease of access->screen magnifier->off.
    Pushpender wrote:
    Hi,
    Few Problems with a 10 day nokia 720:-
    1. Earphone volume while in a call - I can't change the earphone volume while in a call. This is very frustating. Is this a problem with my nokia 720 or is this a general issue with all 720.
    2. Microphone doesn't work in certain directions, while in a sleeping pose or sometimes sitting. This has never happened to me in around 6-7 phones that I have used. Please tell me if this is a problem for my phone or device issue.
    3. When I switch off mobile data connection, my overall mobile connection is lost after some time. Also I am experiencing too frequent call drops, Also my network just goes out of the picture, it just doesn't detect network. Facing a lot of issues with this,
    4. Sometimes it zooms out and doesn't come back to its original position. I don't know what is the problem with this. I have to restart my phone to get back in normal position.
    5. My bookmyshow app doesn't work after the update [this can be ignored ]
    I expected more out of my nokia lumia but hard to say if the problems are with my phone only or for all nokia 720. Hoping for some help in this forum.
    Also please tell me if nokia will change my device if this is a problem with only my device and not every device. Please help.
    Thanks in advance

  • Little bit of help

    Hi,
    I wonder if anyone can help me with my problem.
    Here is my piece of SQL.
    I know what I currently have - *(CASE WHEN ITL.FROM_LOC_ID = 'W%' THEN 'D1' OR WHEN ITL.FROM_LOC_ID != 'W%' THEN 'D2' END) Site* is wrong.
    And I was just wondering if anyone could show me how to set out what i'm trying to do in the correct way.
    Basically, all I want is an extra column called 'Site' and if ITL.FROM_LOC_ID = 'W%' then display 'D1' if not then display 'D2'.
    SELECT DISTINCT AU.NAME, ITL.REFERENCE_ID, (CASE WHEN ITL.FROM_LOC_ID = 'W%' THEN 'D1' OR WHEN ITL.FROM_LOC_ID != 'W%' THEN 'D2' END) Site
    FROM INVENTORY_TRANSACTION ITL, ORDER_HEADER OH, APPLICATION_USER AU
    WHERE CODE = 'Pick'
    AND TO_LOC_ID = 'CONTAINER'
    AND ITL.REFERENCE_ID = OH.ORDER_ID
    AND OH.DELIVER_BY_DATE >= TO_DATE($P{Deliver_By_Date},'DD-Mon-YYYY')
    AND OH.DELIVER_BY_DATE < TO_DATE($P{Deliver_By_Date},'DD-Mon-YYYY') + 1
    AND ITL.USER_ID = AU.USER_ID
    ORDER BY ITL.REFERENCE_IDThanks in advance.
    Sam

    Thanks Ibrahim,
    I got some data back, adding that to my query. However I have just realised there may be something else I need to add in..
    With adding that to my query each record displayed D2 in the Site column.
    This is because my live data thats i'm pulling from the database looks like this;
    Reference ID      Name               From_Loc_Id
    0080107253        Sam Mardell        W0001
    0080107253        Sam Mardell        W0003 
    0080107253        Sam Mardell        W0004 
    0080107253        Sam Mardell        W0005 
    0080107253        Sam Mardell        W0008
    0080107253        Dan Smith          A07A 
    0080107253        Dan Smith          A45A
    0080107253        Dan Smith          B37A
    0080107253        Dan Smith          D34A
    0080107253        Dan Smith          E02A   So my output I would like to look like this;
    Reference ID      Name               Site
    0080107253        Sam Mardell        D1
    0080107253        Dan Smith          D2  Currently i'm getting;
    Reference ID      Name               Site
    0080107253        Sam Mardell        D2
    0080107253        Dan Smith          D2  I think because the Reference_ID refers to both sites in the query.
    Hope this makes sense.
    SM.

  • Little bit of help[ with a button.

    Good day all!
    I need help making a button. This is what I want to happen.
    I have a bunch of text, One of the words "merino" is bule as
    to say there is a link hear! And I want an image of the "merino" to
    come up, like a "ALT" box. Or have an image in the "ALT" box?
    I know how to do this in "Flash" i.e just drop in the image
    on the over state of the button event. Easy as pie! This is why I
    cant get to grips with Dreamweaver! I hate it!
    But I am willing to learn and maybe in time love???
    Thanks all!

    "satrop" <[email protected]> wrote in
    message
    news:f0o4t7$954$[email protected]..
    > Good day all!
    >
    > I need help making a button. This is what I want to
    happen.
    >
    > I have a bunch of text, One of the words "merino" is
    bule as to say there
    > is a
    > link hear! And I want an image of the "merino" to come
    up, like a "ALT"
    > box.
    >
    > I know how to do this in "Flash" i.e just drop in the
    image on the over
    > state
    > of the button event. Easy as pie! This is why I cant get
    to grips with
    > Dreamweaver! I hate it!
    >
    > But I am willing to learn and maybe in time love???
    HTML is a lot different from Flash! :-)
    I believe you could do this using DW's Show-Hide layer
    behavior - have
    mousing over the link trigger a layer with the image to
    appear. Someone else
    may have a better idea.
    Just FYI, having to mouse over a link in order to get more
    information about
    it isn't usually appreciated by users. You *might* want to
    re-think this
    plan..
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • A little bit of help to get me start

    Hi,
    I am trying to create a 3D modular CAD application of OS X. I want to be able to grab a table for example from a list. Drop it into the CAD part of the application and then change views, zoom etc..
    I was wondering, is OpenGL the best way to achieve this? or is there other technologies I can use.
    Cheers
    Mic
    (a true cocoa newbie)

    Michael,
    the following links should help you:
    Leopard Developer Graphics & Media Overview
    Matthew Craig of Luxology uses OpenGL and Quartz to build the complex and powerful features of modo.
    Mihalis.

Maybe you are looking for