Download Error with TI DSP Toolkit with Code Composer

I have used TI DSP Toolkit with Code Composer to interface with code composer and LabVIEW. I am able to open the project, build the project etc. When I am downloading my binary to the DSP, the application is throwing error saying memmory address could not be validated. I am using emulator to download the code. I am able to download the code when I am using flash programmer option available with the code composer IDE. Any help to resolve the issue is highly appreciated.
Best Regards,
Anurag

Hi Anurag,
The DSP toolkit is only compatable with a few pieces of hardware.  You can find that information at this link.  If you are not using the mentioned hardware then there is no guarantee that it will work.  The reason you get the memory error is because MAX, and hence LabVIEW, does not recognize the device.  It makes sense that it works when you use your own software to flash the program because you are bypassing the NI software that is not compatable with that device.  Unfortunately, unless you are using one of the specific pieces of supported hardware there isn't much more we can do.  I would recommend that if you are able to get your program to work using the flash mode, then just continue to do that way instead of trying to download it with the emulator.  Thanks and have a great day. 
Stephen S.
National Instruments
1 Test is worth 1000 expert opinions

Similar Messages

  • TI DSP Toolkit with Code Composer Platinum

    I've been using the LV DSP toolkit for TI with Code Composer 2.2x for some time with no problems.  Recently upgraded to CCS Platinum and the DSP VIs aren't behaving as they used to.  Primary problem is trying to open CCS, looks like it tries to open then immediately closes back down. 
    Has anyone else used the DSP toolkit with CCS Platinum?  I may just switch back to CCS 2.2x.
    Best regards and thanks,
    Matthew

    Hi Anurag,
    The DSP toolkit is only compatable with a few pieces of hardware.  You can find that information at this link.  If you are not using the mentioned hardware then there is no guarantee that it will work.  The reason you get the memory error is because MAX, and hence LabVIEW, does not recognize the device.  It makes sense that it works when you use your own software to flash the program because you are bypassing the NI software that is not compatable with that device.  Unfortunately, unless you are using one of the specific pieces of supported hardware there isn't much more we can do.  I would recommend that if you are able to get your program to work using the flash mode, then just continue to do that way instead of trying to download it with the emulator.  Thanks and have a great day. 
    Stephen S.
    National Instruments
    1 Test is worth 1000 expert opinions

  • I want to download a report into Excel sheet with color Heading..Is it Poss

    Hi All
    I want to download error records into Excel sheet with color Heading..Is it Possible to download into excel with Color Heading?
    here i am <b>using the 3 sheets in one</b>
    t_error-bkpf -> Sheet1
    t_error-bseg-> sheet 2
    t-error-bsec -> sheet3.
    Rgds
    Raghav

    <b>The following thread has the code which will put data into multiple sheets</b>
    Download to multiple sheets in Excel
    FOR COLOR LOGIC  JUST REFER THIS PROGRAM
    *& Report  ZNEGI17                                                     *
    REPORT  ZNEGI17  NO STANDARD PAGE HEADING.
    * this report demonstrates how to send some ABAP data to an
    * EXCEL sheet using OLE automation.
    INCLUDE OLE2INCL.
    * handles for OLE objects
    DATA: H_EXCEL TYPE OLE2_OBJECT, " Excel object
    H_MAPL TYPE OLE2_OBJECT, " list of workbooks
    H_MAP TYPE OLE2_OBJECT, " workbook
    H_ZL TYPE OLE2_OBJECT, " cell
    H_F TYPE OLE2_OBJECT. " font
    TABLES: SPFLI.
    DATA H TYPE I.
    * table of flights
    DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    *& Event START-OF-SELECTION
    START-OF-SELECTION.
    * read flights
    SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
    * display header
    ULINE (61).
    WRITE: / SY-VLINE NO-GAP,
    (3) 'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (4) 'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (8) 'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
    ULINE /(61).
    * display flights
    LOOP AT IT_SPFLI.
    WRITE: / SY-VLINE NO-GAP,
    IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
    ENDLOOP.
    ULINE /(61).
    * tell user what is going on
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
    * PERCENTAGE = 0
    TEXT = TEXT-007
    EXCEPTIONS
    OTHERS = 1.
    * start Excel
    CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
    * PERFORM ERR_HDL.
    SET PROPERTY OF H_EXCEL 'Visible' = 1.
    * CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:kis_excel.xls'
    * PERFORM ERR_HDL.
    * tell user what is going on
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
    * PERCENTAGE = 0
    TEXT = TEXT-008
    EXCEPTIONS
    OTHERS = 1.
    * get list of workbooks, initially empty
    CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
    PERFORM ERR_HDL.
    * add a new workbook
    CALL METHOD OF H_MAPL 'Add' = H_MAP.
    PERFORM ERR_HDL.
    * tell user what is going on
    * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    * EXPORTING
    ** PERCENTAGE = 0
    * TEXT = TEXT-009
    * EXCEPTIONS
    * OTHERS = 1.
    * output column headings to active Excel sheet
    PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
    PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
    PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
    PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
    PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
    LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
    H = SY-TABIX + 1.
    PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
    PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
    PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
    PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
    PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
    ENDLOOP.
    * changes by Kishore - start
    * CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
    CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
    PERFORM ERR_HDL.
    * add a new workbook
    CALL METHOD OF H_MAPL 'Add' = H_MAP EXPORTING #1 = 2.
    PERFORM ERR_HDL.
    * tell user what is going on
    SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
    * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    * EXPORTING
    ** PERCENTAGE = 0
    * TEXT = TEXT-009
    * EXCEPTIONS
    * OTHERS = 1.
    * output column headings to active Excel sheet
    PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
    PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
    PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
    PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
    PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
    LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
    H = SY-TABIX + 1.
    PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
    PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
    PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
    PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
    PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
    ENDLOOP.
    * changes by Kishore - end
    * disconnect from Excel
    * CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'C:SKV.XLS'.
    FREE OBJECT H_EXCEL.
    PERFORM ERR_HDL.
    * FORM FILL_CELL *
    * sets cell at coordinates i,j to value val boldtype bold *
    FORM FILL_CELL1 USING I J BOLD VAL.
    data : color(5) type x value 'H80000008'.
    CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_ZL 'Value' = VAL .
    PERFORM ERR_HDL.
    GET PROPERTY OF H_ZL 'Font' = H_F.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_F 'Bold' = BOLD .
    PERFORM ERR_HDL.
    SET PROPERTY OF H_F 'ColorIndex' = 3 .
    PERFORM ERR_HDL.
    ENDFORM.
    *& Form ERR_HDL
    * outputs OLE error if any *
    * --> p1 text
    * <-- p2 text
    FORM ERR_HDL.
    IF SY-SUBRC <> 0.
    WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
    STOP.
    ENDIF.
    ENDFORM. " ERR_HDL
    *&      Form  FILL_CELL1
    *       text
    *      -->P_H  text
    *      -->P_1      text
    *      -->P_0      text
    *      -->P_IT_SPFLI_CARRID  text
    form FILL_CELL  using   I J BOLD VAL.
    CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_ZL 'Value' = VAL .
    PERFORM ERR_HDL.
    GET PROPERTY OF H_ZL 'Font' = H_F.
    PERFORM ERR_HDL.
    endform.                    " FILL_CELL1
    kishan negi

  • Why do I get a class conflict between the Prepare SQL.vi and the Get Column Name.vi with the SQL Toolkit compatibility vis from the Database Connectivity Toolkit?

    I have done extensive programming with the SQL Toolkit with LabVIEW versions through 6.1. My customer now wants to upgrade to Windows 7, so I am trying to upgrade to LabVIEW 2009 (my latest purchased version) using the Database Connectivity Toolkit, and the SQL Toolkit Compatibility vis. Everything seemed to be going okay with the higher level SQL operations, but I ran into trouble with the Get Column Name.vi. 
    The pictures below show the problem. The original SQL Toolkit connected the Prepare SQL.vi with the Get Column Name.vi with a cluster of two references, one for connection, and one for sql. The new compatibility vis have a class conflict in the wire because the Prepare SQL.vi contains a cluster with connection, and command references, but the Get Column Name.vi expects a cluster with connection and recordset references. 
    How do I resolve this conflict?
    Thank You.
    Dan

    I've never worked with the old version of the toolkit, so I don't know how it did things, but looking inside the SQL prep VI, it only generates a command, and the the column name VI wants a recordset. I'm not super familiar with all the internals of ADO, but my understanding is that is standard - you only have the columns after you execute the command and get the recordset back. What you can apparently do here is insert the Execute Prepared SQL VI in the middle and that will return what you need.
    I'm not sure why it worked before. Maybe the execute was hidden inside the prep VI or maybe you can get the column names out of the command object before execution. In general, I would recommend considering switching to the newer VIs.
    Try to take over the world!

  • Hardware or Software? Download Errors.

    The problem is downloading, the question is whether the Touch is faulty.
    Using the machine as it was - many apps - tried to download a track into Tap Tap Revenge from a local Borders store and I got the same download error I have been having with it. Safari worked well. (I have also tried with another network in the city where I know for afact it has no restrictiuons).
    Came back home, restored the machine to as new (no backup used)
    Installed TTR
    Try to get a track - Download error
    Open iTunes (I have never used this on the Touch before), went to download a video podcast (It was 3.1mb). This downloaded around 200kb then the Time remaining extended to several hours before giving an error.
    I restarted the download, got another ~200kb, error.
    (This was the most useful thing I have done because I could actually see the problem, see the time going from 60s to 60mins and more)
    Open App Store, found Trism (8.7mb) and clicked Install. I then thought it could be the phones in the house so went downstairs. By the time I had unplugged the phones Trism had installed.
    Opened iTunes, tried the podcast again, got the same 200kb then error.
    (The following was all without and with the phones. I did what I could twice)
    Open App Store, found Google Earth. Now... this said 'Installing' but the throbber was not appearing. I went to Safari and downloaded a web page. Because these are going to be fairly light a 200kb limit probably will not affect it, but the page worked. back to check the install, nothing. Opened Settings, checked those (I use mac filtering and static ip's so have no encryption). All was good. But still no throbber.
    And it's now 15 mins later, the Google Earth icon has 'Loading...' and the App Store tells me it is installed. (And I have tried walking around the house holding it to see if there is a signal sweet spot).
    So... it cannot therefore be a TTR error because iTunes and now the App Store are both doing the same. I have done everything I possibly can to isolate a cause and if there IS a cause then it is out of my control. But to me this now seems like a machine problem, that the Touch is faulty in some way.
    Router is Belkin, I have tried all channels. It uses g&b normally but Auto 108mps gave no improvement. This router supports several devices without any problems including macbook, PS3 and Xbox
    So, given the fact an app can install, the web works but the podcast download and tracks stall, is it the Touch or something I can cure?
    All advice welcome

    have you tried apple's suggested troubleshooting techniques?:
    http://www.apple.com/support/ipodtouch/troubleshooting/ipodtouch/
    these will solve many common errors with the ipod.

  • Cannot download a movie i recieve a constant download error with no code

    Trying to download a movie from itunes after a few minutes of downloading I receive a constant download error message with no error code, trying again several times in different days and is the same, I have tryed with two different connections and the problem remains.

    Hey 321Tammy,
    Thanks for the question, I can definitely understand how frustrating this situation can be. What is the error message you receive when you attempt to download the movie? You can check the following resource for possible errors and solutions:
    iTunes: Possible iTunes Store errors
    http://support.apple.com/kb/TS1424
    Additionally, you can report a problem with your purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Thanks,
    Matt M.

  • VB ActiveX User Control fails to install on Windows 8 using IE10 with Code Download Error: (hr = 80070005) Access is denied.

    I have a VB VS2008 (.Net 2.0) ‘pure’ .NET based user control which used to be hosted in Internet Explorer.
    Because that approach is no longer possible in VS2013 (.Net 4.5) I have converted it to an VB ActiveX user control.
    This process involves digitally signing the user control DLL.
    Creating a setup project resulting in a setup.exe and MyUserControl.msi.
    Digitally signing both those components and then producing a cab file (which again is digitally signed).
    IE10 should then be able to install this using an object tag as follows
    <object id="editor" height="100%" width="100%"
     classid="clsid:EA47DB16-9272-4CB3-A800-C369A479396A" codebase="cab\MyUserControl.cab#Version=6,0,11,1" VIEWASTEXT>
    If I use the setup.exe and MyUserControl.msi directly on the client windows 8 machine before starting IE10 then the control is already installed (shows up in Programs and Features) and it works.
    If I don't do this and let IE install the control then it doesn't work.
    What I see is the IE prompt
    This website wants to install the following add-on: 'MyUserControl.cab'
    Clicking on install produces the User Account Control MsgBox
    Do you want to allow the following program to make changes to this computer
    Clicking yes doesn't install the control as expected
    The inf file that I'm using is currently
    [version]
    signature="$CHICAGO$"
    AdvancedINF=2.0
    [Add.Code]
    setup.exe=setup.exe
    MyUserControlSetup.inf=MyUserControlSetup.inf
    MyUserControlSetup.msi=MyUserControlSetup.msi
    [setup.exe]
    file=thiscab
    [MyUserControlSetup.inf]
    file=thiscab
    [MyUserControlSetup.msi]
    file=thiscab
    [Setup Hooks]
    RunSetup=RunSetup
    [Deployment]
    InstallScope=user
    [RunSetup]
    run="%EXTRACT_DIR%\setup.exe"
    I have defined the registry setting ForceCodeDownloadLog
    Examining the temporary internet files location after trying to install using IE10 I can see the following
    *** Code Download Log entry (15 Jan 2015 @ 11:49:18) ***
    Code Download Error: (hr = 80070005) Access is denied.
    ERR: Run Setup Hook: Failed Error Code:(hr) = 80070005, processing: %EXTRACT_DIR%\setup.exe
    LOG: Reporting Code Download Completion: (hr:80070005 (FAILED), CLASSID: ea47db16...,

    The problem here was the cab file.
    Using ProcessMonitor I found that the following entry was generated at the time of failure
    16:48:00.9222751            2920      IEInstal.exe         CreateFile              
    C:\Users\Jim\AppData\Local\Temp\IDC2.tmp\setup.exe             NAME NOT FOUND               Desired Access: Read Attributes, Read
    Control, Synchronize, Dis, Options: Synchronous IO Non-Alert, Non-Directory File, Disallow Exclusive, Attributes: n/a, ShareMode: None, AllocationSize: n/a
    Analysis of the contents of the cab file using PeaZip indicated that it didn't contain setup.exe which confused me for a while as the makecab /f MyUserControlSetup.ddf produced no errors.
    The MyUserControlSetup.ddf contained
    .Set DiskDirectoryTemplate=cab
    .Set CabinetNameTemplate=DocEditor.cab
    MyUserControlSetup.inf
    MyUserControlSetup.msi
    setup.exe
    Using makecab /f MyUserControlSetup.ddf /v3 I saw that the output was being written to 3 'disk' files but only one was present in explorer after it finished.
    So I guessed that the output was for floppy disks and changed MyUserControlSetup.ddf to contain
    .Set MaxDiskSize=CDROM
    .Set DiskDirectoryTemplate=cab
    .Set CabinetNameTemplate=DocEditor.cab
    MyUserControlSetup.inf
    MyUserControlSetup.msi
    setup.exe
    PeaZip now indicated that the cab file contained the 3 files I expected and using that cab in the codebase attribute installed my ActiveX control

  • TS1539 How do we deal with Error 50 when downloading a movie rental then stopped with error 50 and when I try to resume the downld, it doesn't do it?

    How do we deal with Error 50 when downloading a movie rental then stopped with error 50 and when I try to resume the downld, it doesn't do it?

    Yeah this "fix" is bunk. The movie is downloading just fine, but the extra features is the one giving me this error code. It is NOT my firewall. If it was, then both files wouldn't download. Plus, I already have the firewall "issue" tacked down and fixed. Have had it fixed for months now. No, this is due to the "new" itunes version 11 software. The only conclusion to fix this issue is UPgrading from 11 back to 10.7 which is what I am going to do. This is completely ridiculous! Come on, Apple, get itunes working once and for all, and fire the people responsible for itunes 11, just like you did to the guy who was responsible for apple maps. Thankfully Google came back to the rescue with google maps app.

  • What to do with download error. tap to try

    I rented a movie last night, so it went to my downloads. after a few minutes, it stopped downloading and "download error. tap to try" appeared. What should I do? How do I redownload it?

    Hi, I have no problem with executing your source after copy paste to netbeans.
    Is "for example" code the same as code with error result?

  • I am trying to reinstall Creative Cloud with all my apps, however I have a download error: Please retry and try again or contact customer support??

    I am trying to reinstall Creative Cloud with all my apps, however I have a download error: Please retry and try again or contact customer support??

    WHAT download error?
    A12... download & install error http://forums.adobe.com/thread/1289484
    -more A12... discussion http://forums.adobe.com/thread/1045283?tstart=0
    or
    Code 6 & Code 7 http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    or
    Error 46 may be caused by Comodo internet security
    -Comodo may kill install https://forums.adobe.com/thread/1460361
    or
    What is the exact error code that you see?
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • I have a error with downloading: Error getting license: license server communication problem?

    How can I solve this problem..Trying to download ebooks. finding error with downloading: Error getting license server communication?

    Hi,
    Could you please post the error code. It will be something like this :"E_ADEPT_CORE_KEY_MISMATCH"
    Thanks!

  • After downloading itune to my dell computer (with windows vista), the DVD RW drive is disabled. The device status shows "device can not start (code 10)" Any suggestions? Thanks.

    after downloading itune to my dell computer (with windows vista), the DVD RW drive is disabled. The device status shows "device can not start (code 10)" Any suggestions? Thanks.

    additional info.
    I have found the correct error definition in english.
    "can not start the device (Code 10)"
    I have updated my bios to the latest version.
    I have just tried to uninstall all USB-drivers, and reinstall them.. Still no luck
    I have tried to uninstall and reinstall all webcam drivers - no luck

  • Been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft? Help me please.. getting a bit bored?

    been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft version? Help me please.. getting a bit bored?

    i have this problem too
    my dad thinks its because itunes is getting overloaded

  • HT201272 I just updated to itunes 10.3 & iOS 6.1 and I cannot download a song to my library! I get the error "This computer is already associated with an Apple ID. You can download past purchases on the computer with just one apple ID every 90 days..." WH

    I just updated to itunes 10.3 & iOS 6.1 and I cannot download a song to my library! I get the error "This computer is already associated with an Apple ID. You can download past purchases on the computer with just one apple ID every 90 days. This computer can be used with a different Apple ID in 75 days." WHAT??
    I've never had problems before - my husband and I have used the same library for years.  My daughter also has her own Apple ID... are we going to have trouble with that, too?  Actually we have 4 Apple IDs - somewhere around 8 Apple devices... this is a huge issue for us... HELP

    Just to be clear - I just bought a new song and can't download it into the library because of this error message.

  • I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. H

    I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. Have Disabled UAC and Startup items and Services with no success. Please help - frustrated to no end. Can someone help me?

    make sure you're using the adobe cleaner, not crap cleaner, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    copy the installation files to a desktop folder and install from there.

Maybe you are looking for

  • Norton password manager does not work on 8. How do I return to a previous version?

    when I updated to firefox 8, Norton password manager does not work. How can I return to a previous version. I am surprised that you introduced an update missing this.

  • [Bash] How to `declare` a global variable inside a function?

    #!/bin/bash # Not using declare -A, array will be treated as indexed array rather than an associative array seta() for ((n=0;n<$1;n++)); do printf -v a_$n[k] %s k$n printf -v a_$n[j] %s j$n eval echo inside seta: a_$n[k] = \$\{a_$n\[k\]\} done seta 3

  • If I restore iPhone, there won't be any way to get photos back?

    I was trying to update my phone to the 6 update, but then it said there was an error. Now my phone won't let me get inside of it at all. It's making me restore the whole phone (I haven't clicked the "yes, restore phone" button yet because I'm trying

  • Drop down list issue

    Hi I am working on form which has a drop down box with 3 different values. Different textfield Item have to appear on the page according to the value selected in dropdown list. Problem is that I have to select each value from the dropdown list TWICE

  • Reinstall questions

    Recently I replaced my hard drive. I was pretty well backed up, but I had to reinstall the OS that came with the machine (10.4.3) and then update it to 10.4.11. There were some glitches and I sought the assistance of the Genius Bar people. And ended