SSRS 2008 R2 - Try to do some changes on an existing rdl - unexpected erro "External Component Has Thrown an Exception"

Hi, 
I am working on SSRS 2008 R2 -  Tried to do some changes on an existing rdl & save -  An unexpected error "External Component Has Thrown an Exception"  pop up 
Any suggestions please to resolve it.
thank you !!!
best regards,
Venkat

Hi Venkat,
The issue may be caused by the Visual Studio tried to close an invalid handle. This problem may happen if the operating system is a debug version, not a retail version. Please refer to the following steps to check.
1. Right-click on "My Computer".
2. Click "Properties".
3. Make sure there is no "Debug" words at the end of the "Windows edition" section.
Reference:
http://connect.microsoft.com/SQLServer/feedback/details/467954/sql-server-2008-install-on-windows-server-2008-fails-with-external-component-has-thrown-an-exception
If the operating system is debug version, please re-install the operating system with retail version to solve the issue.
Hope this helps.
Regards,
Alisa Tang
Alisa Tang
TechNet Community Support

Similar Messages

  • SSRS 2008 R2 - Try to Open RDL - I got an error saying "Failed to open report 'reports_List.rdl' ... "Invalid character in the given encoding. Line 1, position 1".

    Hi,
    I am working on SSRS 2008 R2.
    My Colleague gave me one RDL. I have added it to my SSRS project on BIDS  & Tried  to Open by double-click on that RDL.
    I got a popup error saying "Failed to open report 'reports_List.rdl'. clicked on
    Details button & noticed error explanation as . "Invalid character in the given encoding. Line 1, position 1". 
    When i try to View Code of this RDL, I got another error message saying "Exception from HRESULT: 0x80041FEB"
    Can anybody suggest me ... what exactly the root cause of it?  how can i resolve it ?
    thanks a lot in advance !
    best regards,
    Venkat

    Hi Venkat,
    Did you use Visual Studio 2010 on your test? It is a known issue of Visual Studio 2010. Please refer to the following document. It has fix method provided by the Microsoft Web Development Tools team to work around the issue.
    https://connect.microsoft.com/VisualStudio/feedback/details/552134/hresult-error-creating-timetracking-sample-web-site-project
    Since the issue related to Visual Studio. I suggestion you post the question in the following forum:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=Vsexpressvb 
    It is appropriate and more experts will assist you.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Creating snapshot in SSRS 2008 R2 report will disable some parameters.

    Hi guys.
    I'm new to SSRS, so the question that I'm going to ask might sound stupid, hope you guys don't mind.
    I have a few reports that display data based on the snapshot. I found out that some of the parameters on certain reports were disabled and some are not. When I removed the snapshot setting and display the report based on latest data, those disabled parameters
    will be enabled again.
    After some search from Google, I understand that when using snapshot, the parameters will be disabled. But in my case, not all parameters are disabled. And there is some reports with snapshot, all of their parameters are enabled. Please help me on this if
    there is any settings that I need to do to enable all of the parameters.
    Thanks and have a nice day.

    Hi engloon,
    According to your description, you want to enable parameters when creating a snapshot. Right?
    In Reporting Services, Snapshots can be created manually or at scheduled intervals for any report that can run unattended. Furthermore, if the report uses parameters, you must specify default values to use when the report runs. You can specify stored credentials
    and parameter values in the property pages for the report.
    In this scenario, you may have default values for parameters in some reports so that it looks those reports have parameters enabled. So if you want to have snapshot rendered with parameter selection, you can specify the default values in Parameter tab. Please
    follow the steps below:
    Open Report Manager, and locate the report for which you want to modify parameter settings.
    Hover over the report, and click the drop-down arrow.
    In the drop-down menu, click Manage. This opens the General properties page for the report.
    Select the Parameters tab. If the Parameters tab is not visible, the report does not contain parameters.
    Reference:
    Create, Modify, and Delete Snapshots in Report History
    Add a Snapshot to Report History (Report Manager)
    Parameters Properties Page (Report Manager)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • [svn] 3410: Here are some changes to DataGroup.

    Revision: 3410
    Author: [email protected]
    Date: 2008-09-29 15:27:50 -0700 (Mon, 29 Sep 2008)
    Log Message:
    Here are some changes to DataGroup.
    The big change is the way we instantiate components. We aren?\226?\128?\153t re-using the Group logic anymore. This means there?\226?\128?\153s no display object sharing going on, which reduces the complexity of the code. It also treats renderers differently now. Basically anytime a renderer is specified, it?\226?\128?\153ll attempt to wrap you up in that renderer, even if you are a GraphicElement or a DisplayObject and may not need one.
    There are some other changes, like changing an itemRenderer at runtime now works. It?\226?\128?\153s a bit heavy in what it invalidates right now, but I?\226?\128?\153ll go back and revisit some of this logic.
    Also, when no dataProvider is given, we don?\226?\128?\153t automatically create one for the user. This means I had to add some defense mechanisms where we were relying on the dataProvider, but doing a check for dataProvider != null was all that was really needed.
    QE: Yes
    Doc: Yes
    Bugs: SDK-16809, SDK-16983
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16809
    http://bugs.adobe.com/jira/browse/SDK-16983
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/component/Selector.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/core/DataGroup.as

    Hi there,
    We had a glitch on our side that was causing some accounts to not be able to log in properly. It should now be resolved. Please clear your browser's cache and try it again. Let us know if it's working for you.
    Regards
    Mike

  • Ssrs 2008 r2 report dataset call a stored procedure

    I am modifying an existing SSRS 2008 r2 report. In a dataset that already exists within the ssrs 2008 r2 report I need execute
    a stored procedure called StudentData and pass 3 parameter values to the stored procedure. The stored procedure will then return 5 values that are now needed for the modified ssrs report. My problem is I do not know how to have the dataset call the stored procedure
    with the 3 parameter values and pass back the 5 different unique data values that I am looking for.
    The basic dataset is the following:
    SELECT  SchoolNumber,
            SchoolName,
            StudentNumber,      
     from [Trans].[dbo].[Student]
     order by SchoolNumber,
              SchoolName,
              StudentNumber
    I basically want to pass the 3 parameters of SchoolNumber, SchoolName, and StudentNumber to the
    stored procedure called StudentData from the data I obtain from the [Trans].[dbo].[Student]. The 3 parameter values will be obtained from the sql listed above.
    The  columns that I need from the stored procedure called  StudentData will return the following data columns
    that I need for the report: StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName.
    Thus can you show me how to setup the sql to meet this requirement I have?

    Hi wendy,
    After testing the issue in my local environment, we can refer to the following steps to achieve your requirement:
    Create three multiple parameters named SchoolNumber, SchoolName and StudentNumber in the report. Those available values from the basic dataset SchoolNumber, SchoolName and StudentNumber fields.
    If you want to pass multiple values parameter to stored procedure, we should create a function as below to the database:
    CREATE FUNCTION SplitParameterValues (@InputString NVARCHAR(max), @SplitChar VARCHAR(5))
    RETURNS @ValuesList TABLE
    param NVARCHAR(255)
    AS
    BEGIN
    DECLARE @ListValue NVARCHAR(max)
    SET @InputString = @InputString + @SplitChar
    WHILE @InputString!= @SplitChar
    BEGIN
    SELECT @ListValue = SUBSTRING(@InputString , 1, (CHARINDEX(@SplitChar, @InputString)-1))
    IF (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar))>(LEN(@InputString))
    BEGIN
    SET @InputString=@SplitChar
    END
    ELSE
    BEGIN
    SELECT @InputString = SUBSTRING(@InputString, (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar)) , LEN(@InputString)-(CHARINDEX(@SplitChar, @InputString)+ len(@SplitChar)-1) )
    END
    INSERT INTO @ValuesList VALUES( @ListValue)
    END
    RETURN
    END
    Use the query below to create a stored procedure, then use it to create a dataset to return 5 values:
    create proc proc_test(@SchoolNumber nvarchar(50),@SchoolName nvarchar(50),@StudentNumber nvarchar(50))
    as
    begin
    select StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName
    from table7 where SchoolNumber in (SELECT * FROM SplitParameterValues (@SchoolNumber,','))  and SchoolName in(SELECT * FROM SplitParameterValues (@SchoolName,','))  and StudentNumber in (SELECT * FROM SplitParameterValues (@StudentNumber,','))
    end
    Right-click the new dataset to modify the parameter value in the Parameters pane as below:
    =join(Parameters!SchoolNumber.Value,",")
    =join(Parameters!SchoolName.Value,",")
    =join(Parameters!StudentNumber.Value,",")
    For more details about pass multi-value to stored procedure, please see:
    http://munishbansal.wordpress.com/2008/12/29/passing-multi-value-parameter-in-stored-procedure-ssrs-report/
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Pass values between ssrs 2008 r2 reports

    In a  ssrs 2008 R2 report, I need to pass parameters to existing subreports that are currently called.  Basically there is a main sssrs 2008 r2 report and there are 3 subreports. I would like subreports #1, subreport #2, and subreport #3 to receive
    the value values of customer number and customer name. I am hoping you can tell me and/or show me code that would tell me how to add parameters parameter values that are used to call these subreports.

    Hi wendy,
    According to your description, it seems that you want to pass parameter values from main report to subreport1, from subreport1 to subreport2, and from subreport2 to subreport3. If in this scenario, you can refer to the following steps about the sample test
    (from main report to subreport1) in my environment:
    Create a parameter named ID in the main report, adjust the report body and tablix with the same size.
    In the subreport1 report, right-click one cell to insert a subreport.
    Right-click the subpeort to open the Subreport Properties, and select the main report name in the drop-down list.
    In the left panel of the Subreport Properties dialog box, click Parameters.
    Select ID in the drop-down list of Name, and select [ID] in the drop-down list of Value.
    Considering your question, because I have create a parameter in the main report and specify the parameter in the subreport1, the main report will be passed by the parameter to subreport1.
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine xiong
    If you have any feedback on our support, please click here.
    Katherine Xiong
    TechNet Community Support

  • External component changed

    Hi all,
    Could anyone help me on this ?
    When opening this VI (see attachement) on one computer it says that the VI was changed (external component changed) and that I have to save it. When I save it and open the VI again on a second computer, LabView outputs the same message, an external component has changed... so I have to save it... Back on the frist computer same message again... etc...
    I still don't know what's the 'external component' that changes from one computer to another... and how to find it.
    Thanks in advance for any help or hint...
    Attachments:
    untitled.JPG ‏119 KB

    Ok, this is one of these VI's that have an external component changing...
    As I said Before, when I open this Vi in two different computers, LabView tels me each time that an external component has changed and that I have to save it. I don't know what is the external component changing... how to find it ?
    Thanks.
    Attachments:
    ADO Connection Open.vi ‏14 KB

  • Only query on existing form without any changes on the existing records?

    Dear all,
    I am working a brand new form. The form is able to query all the records from the table. However, when I leave the form, it will ask me "Do you want to save the changes you have made?" everytime. I didn't make any changes on the existing records.
    My form only has 2 fields (one with LOV and one without).
    Does anyone know what went wrong?
    Thanks.

    How do you populate your datablock? Do you query one of your values in a Post-Query trigger?
    However you are populating your datablock, Forms is detecting that the status of the Form, Block or Record is changing.
    Also, please let us know your Forms version.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Unable to backup/delete/change encryption key after SSRS 2008 R2 installation

    Hi,
    I am having issue with SSRS 2008 R2 Std installation with Sharepoint integration. hope may get some help from here.
    During the SSRS configuration in the SSRS Config Mgr
    the following error message come up when access web service URL/backup/delete/change encryption key:
    Report service error
    •An internal error occurred on the report server. See the error log for more
    details. (rsInternalError) Get Online Help
    ◦The profile for the user is a temporary profile. (Exception from HRESULT:
    0x80090024)
    I can avoid the issue when use Local system account to run the SSRS but domain account is required for Sharepoint integration.
    Does this have something to do with how the windows user profiles are configured?

    Hi Gone_Fishing,
    Reporting Services uses encryption keys to secure credentials and connection information that is stored in a report server database. In Reporting Services, encryption is supported through a combination of public, private, and symmetric keys that are
    used to protect sensitive data. As to access Web Service URL, we can try to cope the URL, then run it in IE as administrators.
    About the error”The profile for the user is a temporary profile”, Windows will create a temporary profile when it is unable to read the user profile files. For more details, we can refer to the following blog:
    http://journeyintobi.com/2013/11/the-profile-for-the-user-is-a-temporary-profile-or-how-simple-solutions-are-sometimes-really-the-answer-to-a-given-problem/
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Ssrs 2008 r2 writing mode rotate270 has changed

    On an SSRS 2008 R2 report that is executed on  report server 2012, I have a report that uses writing mode Rotate270 to change the direction of the label of columns. This worked fine until a month or two ago. No code was changed.
    Now when the report is executed the following occurs:
    1. When the report is accessed by the following browsers the writing mode is ignored. The following is the differences between browers:
    a. When the ssrs report is accessed by Firefox or Opera, the direction of the labels are displayed as horizontal.   b. When the ssrs report is accessed by Internet Explorer, the direction of the label is vertical.
    The report servers that uses reporting services 2012, has a 64 bit Windows R2 Enpterprise Operating System.
    I am assuming that there is some windows update that caused this problem to occur. Thus I am wondering if you can tell me what could of caused this problem to occur? I am also wondering what you suggest to fix the problem? Do I need some kind of a Microsoft
    update, if so which one? Should I change the SSRS report, if show can you show me what code to change?

    Hi wendy,
    After testing the issue in my local environment, I can reproduce it. As per my understanding, the issue is caused by this property is not supported in Firefox or Opera browser with 64 bit Windows R2 Enterprise Operating System. For more details, please
    see the document below:
    http://msdn.microsoft.com/en-us/library/ms156511.aspx
    The following workaround with change “=Code.Create_RotateAndStreamImage("Hello Word!", "Arial", 10, -45)” to “=Code.Create_RotateAndStreamImage("Hello Word!", "Arial", 10, 90)” is for your reference:
    http://social.technet.microsoft.com/Forums/en-US/fc6316a1-6362-4485-8d64-a8c03be1b424/rotate-header-text-to-45-degrees-in-ssrs-2008r2-ssrs2012?forum=s
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • Ssrs 2008 r2 keep objects in fixed locations when report is executing

    In an exisitng SSRS 2008 r2 report there are currently 5  tablixes. Right now in one of the tablixes, I am adding rectangles and textboxes to the one tablix. As I am adding these items to the SSRS 2008 r2 report, new items that I am adding to the report
    do not stay where I placed them originally. In addition, some of the other tablixes are moving around (floating).
    Thus may questions are the following:
    1. In one particular tablix, is there a way to anchor the rectangles and texboxes (keep them from floating)? If so, would you tell me how to keep fixed point locations?
    2. For all the tablixes on the report, is there a way to keep each tablix from flaoting (staying anchored to a fixed location? If so, would you tell me how to keep the various tablixes from floating?

    Hi wendy,
    Just as you said, the location of report items would be changed depends on the data in other items and page size. There are no such property that can directly make an item stayed at a fixed location. While, if the issue is caused by the page size, we can
    change it to an appropriate page size. If the issue is caused by other item data, we can try to use a rectangle to contain those items. Because rectangle is s object container, it can keep objects together on a page and control how object move and push each
    other. For more details, please see the following document:
    http://technet.microsoft.com/library/Cc966445#XSLTsection132121120120
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSRS 2008 - ServerReport.SetParameters() suddenly extremely slow

    Hi,
    We have been using SSRS 2008 R2 for quite a while now but 3 weeks ago we started to notice some performance problems when generating SSRS reports. We have a .NET client which gets the list of reports from the server and then the end user can select a report,
    enter the parameter and then view the report in our client.
    So 3 weeks ago users started to notice that when they clicked on a report (and in the background we load the parameter prompts etc.) it took almost a full minute. When normally this would only take a few seconds. I have narrowed it down to the method mentioned
    in the title. When we call the method ServerReport.SetParameters(parameters) our client has to wait for that one minute.. This also does not go away when you run the report a second time. This is becoming a real problem as our users produce a lot of reports
    during the day and every time that method is called the client has to wait 60 seconds. This was not the case 3 weeks ago, I have already checked if something was changed on the server etc. but everything looks okay. Went through the logs etc.
    Could it be that our ReportServerTempDB is getting too big? When I checked the logs I saw that the Clean Batch() is running every 10mins so this looks ok. Will check with our Infrastructure Team later to see how big the ReportServerTempDB is and if it is
    possible to purge some of the data.
    I also read a about report caching but I am unsure if this helps at all and/or which form of caching to use. Our users run a certain amount of reports on a daily basis where only the date range changes (today they run it for 01.08.2014, tomorrow maybe for
    02.08.2014 and so on). Would caching help in this case?
    Any other things I might be overlooking or that you think could cause the problem?
    Thanks a lot!
    Fabian

    Hi Fabian,
    According to your description, the reports performance become poor in the latest three weeks. And you think the issue is caused by the ServerReport.SetParameters Method. As per my understanding, there does not performance concern of SetParameters or other
    method among Report Manager, Report Viewer or URL Access. Because every call to Reporting Services will use the same Programmatic interface to render a server report. We can try to directly render the report in report server to check whether it related to
    the method.
    Besides, I think the problem is duo to the cache of the .NET compilation or the HTML render. We can try to clear the cache and restart the server to check the issue again.
    The following similar threads are for your reference:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/cced1e18-bba0-4d2c-98a1-d245cc2c2b13/reportexecutionservice-vs-reportmanager-performance
    http://stackoverflow.com/questions/2274317/c-sharp-winforms-reportviewer-performance-issue-using-refreshreport-and-server
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Ssrs 2008 export to csv file display issue

    In a new SSRS 2008 report, I would like to know if there is a way to automatically expand the width of some of the rows when the data is exported to a CSV file so the data is displayed correctly. Here are examples that I am referring to:
    1. In one column where there is suppose to be a date that looks like 12/11/2014, the value of ########## is displayed. The value of 12/11/2014 is what is setup in the SSRS formatting option.
    2. In a number field that is suppose to look like 6039267049 the value that is displayed is 6E+09.
    Basically if I manually expand the width of the columns that I am referring to above, the data is displayed correctly. Thus can you tell me what I can do so that the data is disaplayed correctly in the CSV file and ther user does not need to manually expand
    the column to see the data?

    Hi wendy,
    After testing the issue in my local environment, I can reproduce it when use Excel to open the csv file. As per my understanding, there is no width when we export the report to csv, Excel is just using the default cell sizes when we open the csv. So when
    a date value is wider than the default cell size, it would be displayed as ##########. When a number value is wider than the default cell size, it would use Scientific format.
    As to the date value, we can use the expression =cstr(Fields!Date.Value) to replace the former one =Fields!Date.Value. In this way, the width of the value is narrower than the default cell size, so that the date value can be displayed correctly. For the
    number value, it already narrow down the width with Scientific format. Or we can Select all the cells in the csv file, then click Format| AutoFit Column Width to change all the cells width to fit its corresponding values in Excel level.
    Besides, we can try to export to excel instead of csv. Excel format can inherit the column width in the report. So in this way, we can directly change the width to fit the values in Reporting Services level.
    Hope this helps.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Repeat a Header on each page of a Report that includes expressions - Report Builder 3.0

    Is there a way of repeating an header on each page of a report with the built-in expressions representing the new value on each header.  Example, Page 1 is correct but page 2 - the permit number, address and Tract does not match up, it repeats all th

  • How to add integratio​n to a Labview 2.2 applicatio​n

    I run a labview 2.2 application and I want to work out the integral (numeric) of a waveform between two time points. Is it possible? How can I connect the waveform to the intergral VI?

  • Z10 water damaged

    Hi,  I have dropped my Z10 into the toilette. It was on, but when I've took it out it was off already. When I've tried to turn it on, red light appeared and for some seconds Blackberry logo appeared on the screen. The logo never reappeared again duri

  • How do I import photo booth video to FCP7?

    I recorded 6 or so 5 minute videos and i want to edit them in FCP7, i also have an audio track mixed down to mp3 from logic pro so the goal here is to match up the video with the audio(the videos have the same audio playing in the background of the v

  • Restored photos do not appear in Organize window

    I have done a full restore of my laptop, and I have just reinstalled all the software, including Elements 8. I had a backup of my photo catalog on an external hard drive, and I am now tring to restore the photo catalog. I have run Restore, and the ph