Annoying iphone problems, help plz?

well, I'm having two annoying problems with my iphone, the first is that when I record a video or a photo, it does not save and the second is that it does not appear as a removable drive on the pc, SOMEBODY HELP ME PLZ :/

You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

Similar Messages

  • Annoying podcast problem help plz

    hi guys,
    first if this is in the wrong place, i apologise, as you can see a new user.
    anyway, heres my problem,
    i just got hold of an ipod mini, and i use my itunes extensively for podcast listening,and i have a problem regarding when it comes to syncing them with my ipod.
    basically i would like my ipod to put any podcast that is listed as new in itunes on my ipod when i connect it.
    and yes it does that fine.
    but what problem i have is, when i come to syncing again, it will get the new ones ok, but it will remove all the ones previously put on there, and its annoying, as there are some i have not listened to yet.
    is there a setting were i can get my ipod/itunes to put all new podcasts on automatically, but leave them on until i decide to remove them.
    i have tried all the settings in the ipod/podcast settings, but none do that.
    so any help guys appreciated.
    is there a way to get my new podcasts on my ipod, but leave the others on.(and then what would be the easiest way to remove them when i do want them off??)

    You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
    iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
    As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
    It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

  • Table Control Text  fields problem , help plz

    Hello Anand , Rich , John & All
      I hav problem with Text 3 fields( type c)(either L or R aligned )  , it is not geting updated , otherwise everything else is perfectly fine(scrolling,sorting etc ....) .
    Fields giving problem are
    1. Status(20) type c
    2. Fdat  type date
    3. Remark(100) type c
    All numerical fields are working fine .
    <u><b> My yahoo messenger-id is [email protected]</b></u>
    <b>Any light on this will be awarded plz .</b>
    FLOW LOGIC
    PROCESS BEFORE OUTPUT.
    MODULE SET_STATUS.
    LOOP AT      ITAB
          WITH    CONTROL TCL1
          CURSOR  TCL1-CURRENT_LINE .
       MODULE SET_LINE_COUNT .
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE UPD_OK_COD.
    MODULE EXIT_COMAND AT EXIT-COMMAND.
    MODULE SCROLL_SORT.
    LOOP AT ITAB.
          MODULE UPDATE_ITAB.
    ENDLOOP.
    MODULE UPDATE_TABLE.
    REPORT ZSD_REP_ORDER_BANK_CHANGE NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES: VBAK,VBAP,VBRK,ZSD_TABL_ORDBANK,MARA,KONV.
    CONTROLS: TCL1 TYPE TABLEVIEW USING SCREEN 0200.
    DATA: ITAB LIKE ZSD_TABL_ORDBANK OCCURS 0 WITH HEADER LINE,
          WA_ITAB LIKE ZSD_TABL_ORDBANK,
          OK_CODE LIKE SY-UCOMM,
          SAVE_OK_CODE LIKE SY-UCOMM,
          UPD_OK_CODE LIKE SY-UCOMM,
          ANSWER TYPE C,
          I LIKE SY-LOOPC ,
          J LIKE SY-LOOPC,
          V_LINES LIKE SY-LOOPC,
          LINE_COUNT LIKE SY-LOOPC,
          STS  TYPE N,
          EMGRP LIKE MARA-EXTWG,
          QTY LIKE ZSD_TABL_ORDBANK-QTY,
          UPRICE LIKE ZSD_TABL_ORDBANK-UPRICE,
          TOT LIKE ZSD_TABL_ORDBANK-TOT,
          INO LIKE VBAP-POSNR,
          COL TYPE CXTAB_COLUMN,
          COPIED_ONCE ,
          FLDNAME(100),HELP(100).
    FIELD-SYMBOLS:
         <FS_ITAB> LIKE LINE OF ITAB,
         <FS_TCL1> LIKE LINE OF TCL1-COLS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
      SELECT-OPTIONS: S_CCODE FOR ZSD_TABL_ORDBANK-CCODE
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_SORG  FOR ZSD_TABL_ORDBANK-SORG
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_DCHAN FOR ZSD_TABL_ORDBANK-DISTCHAN,
                      S_DIV FOR ZSD_TABL_ORDBANK-DIV,
                      S_MATNO FOR ZSD_TABL_ORDBANK-MATNO,
                      S_CUSTNO FOR ZSD_TABL_ORDBANK-CUSTNO ,
                      S_QTNO FOR ZSD_TABL_ORDBANK-QTNO,
                      S_QTDAT FOR ZSD_TABL_ORDBANK-QTDAT,
                      S_QTVDAT FOR ZSD_TABL_ORDBANK-QTVALDAT,
                      S_SONO   FOR ZSD_TABL_ORDBANK-SONO.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN.
       SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
             REFRESH ITAB.
             CLEAR COPIED_ONCE.
             CALL SCREEN 0200.
          ELSE.
             MESSAGE E012(ZQOTBANK) .
          ENDIF.
    *&      Module  SET_STATUS  OUTPUT
    *       text
    MODULE SET_STATUS OUTPUT.
      SET PF-STATUS '0200'.
      SET TITLEBAR '0200'.
        IF COPIED_ONCE IS INITIAL.
          SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
            DESCRIBE TABLE ITAB LINES V_LINES.
            TCL1-LINES = V_LINES.
          ENDIF.
          COPIED_ONCE = 'X'.
          REFRESH CONTROL 'TCL1' FROM SCREEN '0200'.
       ENDIF.
          LOOP AT ITAB.
             QTY = ITAB-QTY.
             UPRICE  = ITAB-UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-CGL_QTY.
             UPRICE  = ITAB-CGL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-CGL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-BHEL_QTY.
             UPRICE  = ITAB-BHEL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-BHEL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-ALSTOM_QTY.
             UPRICE  = ITAB-ALSTOM_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-ALSTOM_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-SIEMENS_QTY.
             UPRICE  = ITAB-SIEMENS_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-SIEMENS_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-TELK_QTY.
             UPRICE  = ITAB-TELK_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TELK_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-OTH_QTY.
             UPRICE  = ITAB-OTH_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-OTH_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             MODIFY ITAB.
          ENDLOOP.
    ENDMODULE.                 " SET_STATUS  OUTPUT
    *&      Module  SET_LINE_COUNT  INPUT
    *       text
    MODULE SET_LINE_COUNT OUTPUT.
      LINE_COUNT = SY-LOOPC.
    ENDMODULE.                 " SET_LINE_COUNT  INPUT
    *&      Module  UPD_OK_CODE  INPUT
    *       text
    MODULE UPD_OK_COD INPUT.
    IF OK_CODE = 'SAVE'.
        UPD_OK_CODE = OK_CODE.
    *    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.                 " UPD_OK_CODE  INPUT
    *&      Module  EXIT_COMAND  INPUT
    *       text
    MODULE EXIT_COMAND INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
        WHEN 'BACK'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Go BacK ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
        WHEN '%EX'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Exit ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " EXIT_COMAND  INPUT
    *&      Module  UPDATE_MOD  INPUT
    *       text
    MODULE UPDATE_ITAB INPUT.
        MODIFY TABLE ITAB FROM ITAB.
    ENDMODULE.                 " UPDATE_MOD  INPUT
    *&      Module SCROLL INPUT
    *       text
    MODULE SCROLL_SORT INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
      WHEN 'P--'.
          TCL1-TOP_LINE = 1.
      WHEN 'P-'.
          TCL1-TOP_LINE = TCL1-TOP_LINE - LINE_COUNT.
          IF TCL1-TOP_LINE LE 0.
             TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'P+'.
          I = TCL1-TOP_LINE + LINE_COUNT.
          J = TCL1-LINES - LINE_COUNT + 1.
          IF J LE 0.
             J = 1.
          ENDIF.
          IF I LE J.
             TCL1-TOP_LINE = I.
          ELSE.
             TCL1-TOP_LINE = J.
          ENDIF.
      WHEN 'P++'.
          TCL1-TOP_LINE = TCL1-LINES - LINE_COUNT + 1.
          IF TCL1-TOP_LINE LE 0.
              TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'SORTUP'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB ASCENDING BY (FLDNAME).
          ENDIF.
      WHEN 'SORTDN'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB DESCENDING BY (FLDNAME).
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND  INPUT
    *&      Module  TABL_UPD  INPUT
    *       text
      MODULE UPDATE_TABLE INPUT.
       CASE UPD_OK_CODE.
       WHEN 'SAVE'.
         UPDATE ZSD_TABL_ORDBANK FROM TABLE ITAB .
         IF SY-SUBRC EQ 0.
             MESSAGE I002(ZQOTBANK) .
             CLEAR  UPD_OK_CODE.
         ELSE.
             MESSAGE E003(ZQOTBANK) .
         ENDIF.
       ENDCASE.
      ENDMODULE.                 " TABL_UPD  INPUT
    Thnx
    moni<b></b><b></b>
    Message was edited by: md monirujjaman
    Message was edited by: md monirujjaman

    Hi Moni,
    The problem as I had replied in your earlier post is with the MODIFY statement.
    MODIFY TABLE ITAB FROM ITAB. This statement will do the modifications based on the table key. When you have character fields as editable, then some problems are to be anticipated. In such a scenario, you must update the internal table based on the <i>index</i>, rather than based on <i>key</i>.
    So consider using
    MODIFY ITAB FROM ITAB INDEX TCL-CURRENT_LINE.
    Where TCL is the name of the Table Control. Also observe the difference in syntax here, don't use the TABLE keyword for the MODIFY statement.
    Please try it out and let me know.
    Regards,
    Anand Mandalika.

  • Nokia 5220 WHITE SCREEN PROBLEM *Help plz*

    hello guys ... my phone's (5220) screen has gone White ... !! i have absolutely no idea what the problem is ! i took out the battery and put it back again .. but when i turn it on ..after the nokia logo the screen goes white again !! i cant do anything except for looking at the white screen...! the phone doesnt even turn off until you take out the battery !
    I tried to connect it to my PC (via data cable) but the phone does not get connected with the PC suite !!  PLZ HELP ME  !!

    Jimmyireland is right - anything that you could do yourself requires the phone to at least boot up properly, at the moment your phone is like PC with no Windows involved, it can't find its OS to start.
    The 5220 is a series 40 phone, there is facility for a forced reboot, it needs its software to be reflashed which is why you need the Nokia service point.

  • WRH54G linksys setup problem help plz

    i just bought the WRH54G linksys wireless-G home router. I put the cd rom in and i followed every step and i have everything in the right place but when it is at step 9 when u have to choose between DHCP, PPPoE, or Static Ip i dont know which one to choose so i go with DHCP then step 10 after i put in the passwords and click next and it is checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?. that is where i get stuck and i have tried to turn it off and back on again and i doesnt work. can anyone help me out?

    I HAVE A DSL .. ROUTER PROBLEM
    STAYS IN STEP 9 AS WELL .. 
    checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    after some research am going to try to put MY MODEM in brigde Mode. maybe that'll fix the problem... Since it apears the linksys WRH54G is trying to connect to the internet DIRECTLY...  i dont knoe .... first time newbe  , i have a high level of computer experties.. but am having pro with dis NAW 25$ discounted outer.lol
    I have DSL from verizon... in there instusction on how to.. the first thing is to put the MODEM that they issued A WESTELL into brigde mode .. and setup..
    if anione gat this thing working after u gat this CANT CONECT TO INTERNET
    the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    please e-mail me with anifinding..
    .thanks in advance

  • Displaying problem Help Plz !!!

    Hi all
    For some reason i cant seem to get any applets to run on my computer, they just wont show up, if any one could help, sorry now if i am in the wrong room for this
    Thanks

    Go tp this Sun website http://java.com and click on Verify Installation. If it does not verify that Java is installed, try clicking on the install arrow, and start an install. If you have any problems, review the help pages there.

  • Syncing problem help plz....

    i keep getting the "disc cannot be read from or written to" message and its really annoying i cant sync any videos

    I did it
    1st got my ipod reset completely (took 2 hrs)
    Then Uninstalled previous version of itunes, installed new one
    After dat updated my touch
    Now its working

  • IPod Problems help PLZ

    i have a 80gb classic and it just stopped working all of a sudden. When i turn it on all it does is go to the apple logo and turn off. When i try to connect it to my computer it doesnt reconize it. what should i do.
    Please help

    Hello OZ1989,
    And welcome to Apple Discussions!
    With the iPod hooked up, I would try putting the iPod into [Disk Mode|http://support.apple.com/kb/HT1363] to help the iPod stay powered on and mounted in Windows "My Computer" as an external drive. If you are able to get it to stay mounted, I would attempt to reformat the iPod using the tools provided by Windows, and then [Restoring|http://support.apple.com/kb/HT1339] the iPod via iTunes.
    Here are instructions on how to reformat your iPod.
    http://www.methodshop.com/gadgets/ipodsupport/erase/index.shtml
    Hope this helps.
    B-rock

  • Dv6 pavilion hardware problem HELP PLZ

    My hard drive makes a clicking noise. I know its wrecked but i want to know where i can get a new hardrive that fits my laptop. Please help

    You will need to call AppleCare and talk to a Customer Service representative. This is a user-to-user forum, and we cannot help you with this issue.

  • MSI Neo2-FR Raid problems help plz

    ok well me and msi are not getting along...well i'm tring to install a raid-0 ...in the bios i changed it to boot raid instead of ide....then i went and made a raid 0 array...well i go to try to install windows and i press f6...then when its time to install the drivers from the floppy, it dont see the dam drivers on the floppy so i can get no further...and its weird because from the time i boot up the comp the floppy light stays lit the whole time whether there is a floppy in or not...it did not do that on my other motherboard...msi is a weird board...im ready to break it....can anyone help here

    If you can't get your floppy drive/disk to work properly with Windows Setup, you can integrate the ICH9R RAID drivers into a self-made install CD using NLITE or XP ISO BUILDER.  Both tools are easy to use and the procedure shouldn't take longer than 15-20 Minutes.

  • Big problems help plz

    Since upgrading to a MSI K8N Neo Platinum nForce3 250 (Socket 754)  and a A64 3000..the rest of my system is in sig
    i didnt think it was running that fast..and when i did a benchmark with 3d mark 01 it showed up with 17700...and that was with the gfx card overclcoked
    i tried messing about with memory timings and overclocking the rig a bit but was still far from impressed....anyway
    i bought a new heatsink/fan and a raptor grive to use for my O/S after i had put it all together and switched on the comp it just didnt boot ....all i got was one longish beep the a pause followed by another and so on .
    i tried reseating the cpu and heatsink tried the memory in different slots checked gfx card etc still nothing...
    anyway i went back to my n/force 2 and barton 2500@3200 with the same memory and gfx card i used on the A64 and it works fine....i benchmarked it with 3d mark 01 and got a score of about 16700...without the gfx card overclocked.....
    so have i got a borked mobo or borked chip the new system should be a lot faster than a barton 2500..can anyone tell me what the beep means off this mobo....
    cheers in advance for any replies Bram

    You can find BIOS beep codes at: http://bioscentral.com/beepcodes/awardbeep.htm
    It's not clear to me whether any of those apply to you...are you having a repeating long beep or is it long then short?
    Does your CPU fan appear to be running at its full speed? Did you make sure to clean off the old thermal compound fully? Is the new thermal compound applied properly? (don't use too much!)
    Have you tried clearing the CMOS? Unplug, and remove the battery for a minute or two. Try also to startup with nothing connected but the CPU, graphics card, and 1 stick of RAM. Before anyone else says it, as it seems to be the answer to end all answers for any problems in this forum, what is your power supply rated at? Not just watts but each rail...for example my PSU: 3.3v 30A 5v 38a 12V1 18A 12v2 15A
    Finally, you're not going to see much of an increase in 3dMark tests just because you're on a faster CPU. It's almost completely based off your graphics card. I have a 9800PRO that tests at about 2% faster going from 200mhz to 220mhz for example on my A64 3200+.
    Just some general ideas to try based on my recent experiences...in the last month or so I've built 3 PCs, 2 for relatives and 1 for myself. I think about every problem you can have I encountered but it was a great learning experience and a lot of fun!

  • IPad & iTunes problem, help plz?

    when I connect my iPad 2 to itunes, there are no screens showing in the apps section

    I suspect you may be using an old version of iTunes. Check to be sure you are running the most recent version. Update if necessary and try again.

  • Notification of Storage Full on iPhone problem Help!

    Whenever I get the notification that my storage is almost full it takes me into General > Usage where I will delete some apps that have accumulated data (with the plan of re-installing them). Every time I do this I get stuck in Settings and it will not let me return to the home screen. Both the Home button and Power button become unresponsive and I am forced to reset (it will let me manoeuvre within Settings which is odd). This would be fine if it only happened  occasionally but I get this notification weekly when I have only used up 13 of the 16gb on my phone. Is this a factory defect or is there a way to fix it apart from removing more gigs (I'm really down to the bare minimum and would like to not have to delete even more stuff)?

    This is the iPad forum.

  • Iphone 4 hotmail imap account getting problems! plz help

    iphone 4 hotmail imap account getting problems! plz help

    when i am creating IMAP hotmail account with no limits email option on iphone 4 IOS 6.1.3,, it can not sync recent five months email and old emails. It is only syncing the middle ones

  • I couldn't log into my apple account on my iPad, then i couldn't unlock it resulting in it being disabled, however it's the same as my iPhones password, I then called apple, i was hung up on twice and they said it will cost £70 to fix THEIR problem, help?

    I couldn't log into my apple account on my iPad, then i couldn't unlock it resulting in it being disabled, however it's the same as my iPhones password, I then called apple, i was hung up on twice and they said it will cost £70 to fix THEIR problem, help?

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad/iPod into Recovery Mode
    http://support.apple.com/kb/ht4097

Maybe you are looking for

  • Mavericks Apple Mail update

    Hi, As part of the update, at first launch Mail rebuilds its databases for better use with Gmail. However, I had my account inactive because of the problems. Does Mail rebuild this database when I make it active again? It doesn't seem so, because I s

  • Oracle Express Error while building the cube

    When we try to build the Express cube using Relation Access manager's Hybrid Maintenance, We encountered the following error raised by the exception manager. "SYSTEM ERROR RSALOC02" We are using ODBC drivers for connecting and fetching data from orac

  • Safety of MS Sharing on LAN over TCP/IP via NetBIOS and/or Direct SMB

    Shalini Sampath Kumar at http://answers.microsoft.com/en-us/windows/forum/windows_7-security/ suggested I post this question over here: What is the safest recommended way to set up MS File and Printer Sharing on a LAN with both Windows 7 Pro and XP P

  • SAP ECC Installation struck at Import ABAP

    Hi All, I am currently installing SAP ECC 6.0 EHP 7 on Suse Linux 11 SP3. The database is SAP HANA Rev 82. The installation is hung at import ABAP and log files are also not being updated at the OS level. Currently SAPSSEXC is being imported. Please

  • Updating an image in the Library through ActionScript

    In Flash, you can select an image in the library and update it's path to a different picture, in turn affecting anything on the stage that uses that image. Can this be done with ActionScript? I know you can export the bitmap, but how do I address thi