How to code on button click how to increase row height in iphone/ios/uitableview

how to code on button click how to increase row height in iphone/ios/uitableview
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
    pppp=[postText objectAtIndex:indexPath.row];
    CGSize maxSize = CGSizeMake(280, MAXFLOAT);//set max height
     CGSize cellSize = [pppp sizeWithFont:[UIFont systemFontOfSize:14]
                       constrainedToSize:maxSize
                           lineBreakMode:NSLineBreakByWordWrapping];//this will return correct height for text
    // return  cellSize.height+115;
    BOOL isSelected = [self.selectedIndexPaths containsObject:indexPath];
    CGFloat maxHeight = MAXFLOAT;
    CGFloat minHeight = cellSize.height+115;
    CGFloat constrainHeight = isSelected?maxHeight:minHeight;
   CGFloat constrainWidth  = tableView.frame.size.width - 20.0f;
    NSString *text       = hChildPost[indexPath.row];
    CGSize constrainSize = CGSizeMake(constrainWidth, constrainHeight);
     CGSize labelSize     = [text sizeWithFont:[UIFont systemFontOfSize:15.0f]
                            constrainedToSize:constrainSize
                                lineBreakMode:NSLineBreakByCharWrapping];
   // return MAX(labelSize.height+75, 100.0f);     return MAX(labelSize.height+75,cellSize.height+115);    
i used this code but it crashed app

On what line did it "crashed app" and what was the exception? The line within this function, not in main.m. If you haven't figured this out yet: view the debugger output, try single stepping, and/or add NSLog messages in the function.

Similar Messages

  • How to code on button click increase cell height ?

    hi,
    Am new in development .Am creating app same like facebook.i have table view controller in that every cell having button .on perticular button click i want to add view to that cell .on same same when i click second time then it hide the addded view.then accordinly its rezise the row.
    plz help out how to to?

    On what line did it "crashed app" and what was the exception? The line within this function, not in main.m. If you haven't figured this out yet: view the debugger output, try single stepping, and/or add NSLog messages in the function.

  • How to code a button to play and pause sound using load sound?

    how to code a button to play and pause sound using load sound?I have used load sound methos to attach the sound.Can anyone help me?

    Hey thnx,
    I have used this code on sound's button's frame.and my stop n play button is on another screen.main sound button and stop button is on diffrent screen.
    Here is my code-
    stop();
    adaDrut1.onRelease = function () {
              mySoundC = new Sound(this);
              mySoundC.loadSound("F#/Bhajni1.ark", true);
    mySoundC.onSoundComplete = function() {
    _root.mySoundC.start(0,999); }
             gotoAndPlay("play2");
            _global.myTaalLaya = "Low1";
    adaDrut1 is a sound button.And there are lot of buttons with diffrent sound.
    Thanks..

  • How to increase row height in table control?

    Hi experts,
    We have a push button in table control created using screen painter. Since this is a touch screen transaction, the default height is very small for the worker in the plant to click on a specific row, i would like to know if there is any way to increase the row height in the table control. There is no attribute in Screen painter for increasing row height in table control. I did try "import dynpro", hoping to increase the row height and export the dynpro, but that doesn't seem to have row height attributes. Any help in this regard is highly appreciated. Thanks,
    Raj

    Using a new technology means you have to recreate your screen: you may create an HTML using CL_DD_* classes (that's called "Dynamic Documents"). See [SAP Library - DD programming guide|http://help.sap.com/saphelp_nw2004s/helpdata/en/13/12284b019511d4a73e0000e83dd863/frameset.htm]. Demos are provided in SDYNAMICDOCUMENTS package. Or I think you may create web dynpro and define a CSS style to enlarge objects.
    If you don't want to create everything, maybe you can find out a workaround with GuiXT, for example creating a big button in each row (for example, with BUTTONSIZE, but don't know if it changes the height of rows but that's worth trying).
    Well, [Synactive documentation about table controls|http://www.synactive.com/docu_e/specials/tables.html] does not seem to allow that.
    Maybe you can move your question to the "scripting" forum and ask about how to do it with GuiXT...

  • How to code 2 buttons with mouse events

    I am trying to code two buttons, both with mouse down events, but perform different functions. When I coded the script, I received the following error message:
    1021: Duplicate function definition.

    use different function names.

  • How to make a button click make text appear elsewhere on the screen

    I have a map of the US and  each state has a rollover that changes the color of the state...what i  am trying to figure out is how to click on the state and have text  appear to the side of the US map and have that text stay up until the user clicks on another state. Any help will be greatly appreciated. Thanks

    Good... keep working at it... I was already preparing the following for you, but if you pursue your own solution you will learn more and become more comfortable with working with Flash.
    If you want to look at what I was going to offer to possibly streamline what you end up with, or just have trouble, here it is...
    Select one of your states and give it an instance name in the properties panel... let's say you pick Utah and you name the instance "utah"  For example sake, let's say you also do the same for Ohio (naming it "ohio").
    Create a dynamic textfield where you want the text to be displayed and assign it an instance name, let's say you name it... "stateInfo"
    Create a new layer for actionscript so that you can assign some code for teh states.  In that layer, in the frame where the states are, select the empty keyframe, open the Actions panel, and place all of the following code there...
    var utahInfo = "Whatever text you want to display when you click Utah";
    var ohioInfo = "Whatever text you want to display when you click Ohio";
    utah.addEventListener(MouseEvent.CLICK, showInfo); // assigns a listener to the button
    ohio.addEventListener(MouseEvent.CLICK, showInfo);
    // for the above you will do the same for the rest of the state buttons... they can all share the following event handler function because it uses their names to identify the text variable that will be assigned to the textfield
    function showInfo(evt:MouseEvent):void {
         stateInfo.text = this[evt.currentTarget.name+"Info"];

  • How to code a button to check all input fields at once?

    I have made an interactive math problem that has the user go through about a dozen steps.  One of the steps requires the user to complete the problem on their own.  In order to fill out the problem, I have created multiple input text fields so that they can be filled with the correct answers.  In this problem, there are about 23 of these text fields.  After all of these inputs are filled in, I would like to find a way to display the correct answes with the click of a button.  Once, the button is clicked, I would like to have the correct answers to have a highlight of green or some other indicator behind it to indicate to the user that it is correct.  I have tried to find an if statement to statsify these conditions but I have not been successful at doing so.  In other words, I know what I want to do but I do not know how to tell actionscript 3.0 and flash to do so.  Could someone please help me in figuring this out?

    I added my code that I am using now but obviously I do not want to go this certain route to check all the answers at once.  If you could please explain to me how some of your code would work as I only have basic experience with ActionScript. Also can I just Google how to create a glow filter?  I would appreciate your help.  Thank you
    Code:
    /*-------------show correct answers---------*/
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredo);
    function onehundredo(e:Event):void {
           if (fourteenthinput.text == "0") {
        gotoAndStop("label100") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredone);
    function onehundredone(e:Event):void {
           if (fifteenthinput.text == "40.25") {
        gotoAndStop("label101") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwo);
    function onehundredtwo(e:Event):void {
           if (sixteenthinput.text == "0") {
        gotoAndStop("label102") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredthree);
    function onehundredthree(e:Event):void {
           if (seventeenthinput.text == "-52.5") {
        gotoAndStop("label103") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredfour);
    function onehundredfour(e:Event):void {
           if (eighteenthinput.text == "26.25") {
        gotoAndStop("label104") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredfive);
    function onehundredfive(e:Event):void {
           if (nineteenthinput.text == "-78.75") {
        gotoAndStop("label105") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredsix);
    function onehundredsix(e:Event):void {
           if (twentyinput.text == "0") {
        gotoAndStop("label106") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredseven);
    function onehundredseven(e:Event):void {
           if (twentyoneinput.text == "0") {
        gotoAndStop("label107") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredeight);
    function onehundredeight(e:Event):void {
           if (twentytwoinput.text == "0") {
        gotoAndStop("label108") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundrednine);
    function onehundrednine(e:Event):void {
           if (twentythreeinput.text == "40.25") {
        gotoAndStop("label109") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredten);
    function onehundredten(e:Event):void {
           if (twentyfourinput.text == "0") {
        gotoAndStop("label110") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredeleven);
    function onehundredeleven(e:Event):void {
           if (twentyfiveinput.text == "0") {
        gotoAndStop("label111") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwelve);
    function onehundredtwelve(e:Event):void {
           if (twentysixinput.text == "-385") {
        gotoAndStop("label112") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredthirteen);
    function onehundredthirteen(e:Event):void {
           if (twentyseveninput.text == "-8.75") {
        gotoAndStop("label113") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredfourteen);
    function onehundredfourteen(e:Event):void {
           if (twentyeightinput.text == "227.5") {
        gotoAndStop("label114") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredfifteen);
    function onehundredfifteen(e:Event):void {
           if (twentynineinput.text == "-175") {
        gotoAndStop("label115") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredsixteen);
    function onehundredsixteen(e:Event):void {
           if (thirtyinput.text == "7") {
        gotoAndStop("label116") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredseventeen);
    function onehundredseventeen(e:Event):void {
           if (thirtyoneinput.text == "140") {
        gotoAndStop("label117") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredeighteen);
    function onehundredeighteen(e:Event):void {
           if (thirtytwoinput.text == "0") {
        gotoAndStop("label118") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundrednineteen);
    function onehundrednineteen(e:Event):void {
           if (thirtythreeinput.text == "0") {
        gotoAndStop("label119") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwenty);
    function onehundredtwenty(e:Event):void {
           if (thirtyfourinput.text == "40.25") {
        gotoAndStop("label120") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwentyone);
    function onehundredtwentyone(e:Event):void {
           if (thirtyfiveinput.text == "268800") {
        gotoAndStop("label121") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwentytwo);
    function onehundredtwentytwo(e:Event):void {
           if (thirtysixinput.text == "2450") {
        gotoAndStop("label122") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";
    }fourteenthreset_btn.addEventListener(MouseEvent.CLICK, onehundredtwentythree);
    function onehundredtwentythree(e:Event):void {
           if (thirtyseveninput.text == "97300") {
        gotoAndStop("label123") ;
    } else {
      fourteenthresponse_txt.text = "Incorrect. Please try again.";
    function fourteenthfocusInListener(e:FocusEvent) {
    fourteenthinput.text = "";
    fourteenthresponse_txt.text = "";

  • How to listen to button click in a panel?

    I need to create actionListenr in a JFrame for two buttons inside of a JPanel.
    The JPanel is in the JFrame
    The JPanel has two buttons which will import/export stuffs.
    The JFrame will be updated when the buttons import/export.
    I already finished the JPanel part, the buttons work well and are able to do what I want them to do.
    But how do I make the JFrame to be able to listen to what's going on with the JPanel? How does the JFrame know when the buttons are clicked and there is something new imported?
    Thank you if anyone has some advice to offer and please feel free to ask me if something i said is not clear enough.

    ttback wrote:
    I need to create actionListenr in a JFrame for two buttons inside of a JPanel.
    The JPanel is in the JFrame
    The JPanel has two buttons which will import/export stuffs.
    The JFrame will be updated when the buttons import/export.
    I already finished the JPanel part, the buttons work well and are able to do what I want them to do.
    But how do I make the JFrame to be able to listen to what's going on with the JPanel? How does the JFrame know when the buttons are clicked and there is something new imported?
    Thank you if anyone has some advice to offer and please feel free to ask me if something i said is not clear enough.I'm not sure about anyone else, but I'm not clear at all. What do you mean by JFrame "listening"? What does the JFrame do? Actually, they shouldn't be "doing" much of anything at all. JFrames should be part of the visible portion of a model. I recommend that you post your code. You should compress it so that it is as small as possible yet still illustrate your problem / question, and yet still compile so we can run it, a so-called SSCCE. You can read up more on this construct here:
    http://homepage1.nifty.com/algafield/sscce.html
    Remember, this code must be compilable and runnable for many of us to fully understand it.
    Also, if you do post your code, please use code tags so that your code will be well-formatted and readable. To do this, either highlight your code block and press the "code" button at the top above the message block or place the tag [code] at the top of your block of code and the tag [/code] at the bottom, like so:
    [code]
       // your code block goes here
    [/code]Good luck

  • How to script a button click on a warning dialog in Keynote

    I am scripting an import of a PowerPoint file into Keynote ('08), and I encounter this dialog about reviewing warnings. I need to just click one of the buttons, "Don't Review", but I don't know how to do that. I've tried application clicks and window 1 clicks, but they do not work. I couldn't find a way to suppress warnings anywhere. Suggestions, anyone? Thanks.

    Hi Cole and welcome to the forum
    You could try using UI Browser
    http://prefabsoftware.com/uibrowser/
    download version 1.4.1, very handy application for GUI scripting
    oh, and dont forget to turn on "Enable access for assistive devices" in the universal access prefs pane.
    Budgie

  • How to code a button to enable the user to download music?

    I am trying to build a site where you can download music.  Has anyone done this before in AS3?  Any tips?
    Thanks
    m

    use the filereference class to download files.

  • Executing javascript code for button click

    in my application i have report page where i am displaying table data when i click a button it selects first row and returns it using htp.prn() now i m getting that record in jvascript now i want to execute this java script code when the button is clicked i tried using onClick attribute but it didn't work can anyone tell me how to do it?

    Hi,
    I think this is related to Application express, right ?
    You could post your question in Application Express forum
    Oracle Application Express (APEX)
    Also please give more detail about your issue. Post e.g. code (pl/sql & javascript) you try to use.
    Also if you setup sample about your problem to http://apex.oracle.com will help others to help you.
    Help us to help you =)
    Br, Jari

  • WD ABAP - Need to have application kick off tran code on button click

    I need to be able to kick my user into VA02 (change order, passing in the order number and skipping the first screen) when they click a button.  Could someone recommend the best way to do this?  Thanks.

    Hi,
    I suppose that you use WDA as you would like to switch to va02. The best way is to use portal navigation to show a new iView containing the va02 running within ITS (in case your application runs inside of the portal). The solution for a stand-alone application would be to display it as an external window using CREATE_EXTERNAL_WINDOW of the IF_WD_WINDOW_MANAGER interface again by supplying the ITS URL.
    Best regards,
    Thomas

  • How to redirect to library on button click in sandbox visual web part solution for office 365

    Hi,
    I have created a sandbox solution for Office 365 with one text box and a button. 
    On button click i am creating a library with name from text box. 
    So, what i want is redirect to newly created library as soon it get created on button click.
    how could i do that?
    Thanks

    Got the solution
    <asp:Literal ID="litRedirect" runat="server" />
    string redirectURL =
    listurl;
    litRedirect.Text = "<script type='text/javascript'>window.location = '" +
    redirectURL + "/';</script>";

  • How to decrease the row height in ALV Grid (OOPS).

    HI Experts,
    I have displayed ALV Grid using CL_GUI_ALV_GRID=>SET_TABLE_FOR_DISPLAY.
    I want to decrease the row height and width.
    Can any one suggest how to do this?
    Regards,
    Kumar.

    Hi Kumar,
    Row height it predefined and you won't change it, but you can adjust column width.
    For that use field COL_OPT of layout structure ( type LVC_SLAYO ) to optimize all columns width, or set explicit width using field catalog, setting field OUTPUTLEN for certain column.
    Regards
    Marcin

  • How to find function code for buttons on toolbar in oops alv

    Hi experts,
    I want to remove some buttons from toolbar in oops alv, i know the procedure like get function code and pass the value in a table and pass that table to IT_TOOLBAR_EXCLUDING of
    method set_table_for_first_display but I WANT TO KNOW HOW TO FIND FUNCTION CODE FOR BUTTONS ON TOOLBAR IN OOPS ALV

    Hi Prakash,
    -->First you have to set the pf status in your alv program by,
    {FORM pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'FIRST'.
    ENDFORM.                    "PF_STATUS}
    -->Pass this Subroutine name in the Function module, Reuse_alv_grid_display's parameters i.e,
          i_callback_pf_status_set          = 'PF_STATUS'}
    *-->Then doble click on that pf status,
    From the menu bar, select Extras->Adjust Template->List Viewer,
    This will give you the existing statndard gui status of the program*
    ->Then catch that function codes in the User command Parameter of the Function module Reuse.. i.e,
          i_callback_user_command           = 'COMM'
    And make a subroutine of the name 'COMM'i.e,
    FORM comm USING ucomm LIKE sy-ucomm selfield TYPE slis_selfield.
      DATA: okcode TYPE sy-ucomm.
      okcode = ucomm.
      CASE okcode.
        WHEN 'REF'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            titel         = 'MANSI'
            txt1          = 'CREATED BY'
            txt2          = SY-UNAME
          TXT3          = ' '
          TXT4          = ' '
    endcase.
    Hope it helps you
    Regrds
    Mansi

Maybe you are looking for

  • Upgrading from iPhone 5 to iPhone 6 Plus after Water Damage

    My iPhone 5 fell in water back in October of 2014. I placed the phone in a bag of rice for 3 days straight when it happened. It dried out fine and worked like nothing happened. Didn't matter I had to upgrade to the iPhone 6 Plus anyways since it was

  • Payment Run FPY1: Cheque request file to external system

    Hi, My business requirement is that in IS-U sometimes customers makes over payments which needs to be refunded back in case If they close the utility connections. In our case we need to make this payment by cheques. Technical requirement: Refunds wil

  • BAFF Format - Bank of America Format - Any SAP program to generate it

    One of customers have a requirement to make electronic payments to vendors. The DME file should be in Bank of America format (BAFF). The guide reads : Welcome to the STP Guide for the BAFF Payment file format. This guide has been customized to provid

  • Ipod Restore - Unknown Error

    I turned on my ipod this morning, and updated it from my library, on unpluggin my ipod from the USB, it stopped working, it then began to display the message "Connect to computer, use iTunes to restore". So i did, My computer didnt recognise my ipod.

  • How to use dropdown list in module pool

    Hi guys, I have provided  a dropdown list in my  screen in my module pool program. How should I insert values in the dropdown list. Regards Mac