Setting up excel services on Sharepoint 2010

I am using sharepoint 2010 enterprise version, and needs some advice with setting up excel services.
When installing sharepoint 2010 enterprise, is the service application for excel services already installed. I see it listed so i assume it is, but is it better to setup a new one with its own application pool.
Also is there any thing you need to configure , or is the out of the box settings fine to work with.  I see the trusted file location is set to http://, which includes all specified URL locations as trusted locations to upload workbook from.  I
am fine with that with the moment.
But do i need to setup any data connection libraries, not sure what this is for.  Also for user-defined fujnction assembly either, or trusted data providers.
So on a  site, I can add a new web part, choose business data as the category and then choose the excel web access as the web part, and from their open the tool pane and then upload the workgroup from the document library.  That works for me.  
But is there anything else i need to setup.   Choose want to make sure before i deploy in prod.
Thanks

Hello,
I need help setting up excel services.
Excel service is already running on sharepoint server.
I have one reporting file which is generated by DBA with database connection. i want to upload that file under document library and i want whenever user open it through document library, it gets updated through database connection 
This is my first time, so pls guide me
Reporting file has authentication set to --> None 
Do i require any specific settings for authentication? like unattended account ? which username should i use
Connection String -->
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;User ID=ExcelServices;Initial Catalog=SurveyData;Data Source=jdb1;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=RSTKW7W-06709;Use Encryption for Data=False;Tag
with column collation when possible=False
http://../training/sptestsite/Medication_Audit_Report
http://../training/sptestsite/Medication_Audit_Data_Connection_Library/
Trusted File Location - is this place do i need to upload that reporting file? 
Trusted Data Connection Libraries - is this place do i need to save connection file .odc ?
If i am not wrong, should i put
Trusted File Location = http://../training/sptestsite/Medication_Audit_Report
Trusted Data Connection Libraries = http://../training/sptestsite/Medication_Audit_Data_Connection_Library/
http://../training/sptestsite/Medication_Audit_Report -- Here only reporting file will be uploaded right?
http://../training/sptestsite/Medication_Audit_Data_Connection_Library/ -- Here only database connection .odc file will be uploaded?
what other settings are required. please correct me
my email address - [email protected]
Harsh

Similar Messages

  • Calling an external web service from SharePoint 2010

    Hi Friends,
    Idea is to call an external web service from SharePoint 2010 list.
    Can we do this using visual studio 2010, how.
    another pointers, please advise.

    Hi,
    You can create Windows Communication Foundation (WCF) web services that you can consume as external content types from Microsoft Business Connectivity Services (BCS).
    For more information, you can refer to:
    http://msdn.microsoft.com/en-us/library/office/gg318615(v=office.14).aspx
    http://www.c-sharpcorner.com/UploadFile/Roji.Joy/connecting-to-a-web-service-using-business-connectivity-serv/
    http://blogs.msmvps.com/windsor/2011/11/04/walkthrough-creating-a-custom-asp-net-asmx-web-service-in-sharepoint-2010/
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Problem while refreshing the data for the second time using excel services in sharepoint 2013...

    Hi,
    I have migrated my Sharepoint from 2010 to 2013.I am able to get the data at the first time of refresh when I click on refresh for the second time I am getting the empty the sheet.
    below find the flow of refresh
    First Refresh
    On Click of refresh open the workbook with excel services and return the session id.
    Using that session I am invoking RefrehAsync method of excel services
    After refresh completed I am setting the calculation of workbook as automatic(to calculate the formulas) using the same session id
    After setting the calculation as Automatic I am setting the calculation type as full(recalculate) using the same session id.
    Now I am able to see the data
    Second Refresh
    After clicking on refresh instead of opening the workbook I am using the session id(already opened workbook) and setting the calculation type as manual
    I am following the same process from refresh(RefreshAsync) as I have followed in first refresh.
    This time my formulas are not getting calculated because of that I am not able to see the data.
    Could you please let me know that am I missing anything here?
    Is this know issue in Sharepoint2013 excel services as same code is working fine with Sharepoint2010.
    If I close the workbook(session id null) and opens(new session id) for all the refreshes it is working and I am able to see the data.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

    I am able to see the data for the second refresh  if I change the data source.If I use the same data source which is used in the first refresh I am not getting the data.Excel services will contact the cubes and calculate the formulas in my workbook.
    Could you please let me know what could be the problem at second refresh while contacting the same data source with same session id?
    Please help me asap.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

  • Initiate Excel Refresh with SharePoint 2010

    Hey guys,
    I've got question. I use SharePoint in connection with Excel, but there is a problem. Normally the data is handed over from SharePoint to an Excel Sheet and this Excel sheet does a lot of calculation and then it is shown in the excel webpart. Sometimes the
    data is not up-to-date, then I have to refresh Excel manually.
    Is there any possible way to push this refreshing without a script?Or is a script the best way to handle this?
    Best regards and thanks in advance
    Matthias

    if you are not using the excel services and you want refresh your data from client side.You can do with script and schedule it as task run what ever time you want.
    their are 2 things, again 
    1) the document library which required checkout  before editing.
    # This is the location of the document library that has the Excel files
    # You must have WebDAV enabled on the server (which is default, I think)
    # and the webclient service enabled and running on your workstation.
    $library = "\\sharepoint.ad.local@SSL\DavWWWRoot\Shared Documents"
    # Start Excel (it will be invisible unless you do $excel.visible = $true)
    $excel = new-object -comobject Excel.Application
    # Give Excel time to open or it errors inconsistently
    Start-Sleep -s 3
    $excelfiles = get-childitem $library -recurse -include "*.xls*"
    foreach ($file in $excelfiles)
      $workbookpath = $file.fullname
      if ($excel.workbooks.canCheckOut($workbookpath)) {
        # open the worksheet and check it out
        $excelworkbook = $excel.workbooks.Open($workbookpath)
        $excelworkbook = $excel.workbooks.CheckOut($workbookpath)
        # Don't ask cuz I don't know (yet). You have to open it again.
        $excelworkbook = $excel.workbooks.Open($workbookpath)
        # Refresh all the pivot tables with the new data.
        $excelworkbook.RefreshAll()
        # Save and Check it in
        $excelworkbook.Save()
        $excelworkbook.CheckInWithVersion()
    $excel.quit()
    2) Document library where no checkout required.
    # This is the location of the document library that has the Excel files
    # You must have WebDAV enabled on the server (which is default, I think)
    # and the webclient service enabled and running on your workstation.
    $library = "\\sharepoint.ad.local@SSL\DavWWWRoot\Shared Documents"
    # Start Excel (it will be invisible unless you do $excel.visible = $true)
    $excel = new-object -comobject Excel.Application
    # Give Excel time to open or it errors inconsistently
    Start-Sleep -s 3
    $excelfiles = get-childitem $library -recurse -include "*.xls*"
    foreach ($file in $excelfiles)
      $workbookpath = $file.fullname
        # open the worksheet
        $excelworkbook = $excel.workbooks.Open($workbookpath)
        # Refresh all the pivot tables with the new data.
        $excelworkbook.RefreshAll()
        # Save and Close
        $excelworkbook.Save()
        $excelworkbook.Close()
    $excel.quit()
    further read this blog for more information
    http://blog.netnerds.net/2012/04/client-side-workaround-sharepoint-2010-excel-services-cannot-automatically-refresh-data-when-using-sharepoint-lists-as-a-data-source/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Excel Services with SharePoint List Data in SharePoint 2013 - Chart is not refreshing automatically

    Hi Everyone,
    This is My req: I m going to display pie chart and Bar chart in share point 2013.
    Steps I have follwed:
    1. Export the list to excel.
    2.Using the Power Pivot table I have done the chart.
    3. Uploaded into document Library.
    4. Added into the web part. 
    Chart are displaying. But When ever user added the data into the list chart is refreshing.
    Is there any option to refresh the data in chart? Waiting for valuable replies.
    Regards, Manoj Prabakar

    SharePoint lists as data sources in Excel Services is not supported.That's the reason refreshing is not working. There are some work around you can use  -
    Export as Data Feed - Export your SharePoint list as Data Feed , use this data feed to a PowerPivot for Excel workbook and publish this PowerPivot using Excel Services.
    User-defined functions  - write UDF in C# and extend the Excel Services functionality to work with SharePoint lists.
    https://msdn.microsoft.com/library/bb267252(office.12).aspx#Office2007ExcelServicesUnlimited_SharePointLists
    Web Services API -
    The Web Services API can be used to push data from a database and then refresh the data in a SharePoint Server list by using Excel Services.
    JavaScript Object Model - The JavaScript Object Model for Excel Services in Microsoft SharePoint Server 2010 provides many solutions for Excel Services.
    More details  - 
    https://technet.microsoft.com/en-us/library/gg576960.aspx
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Getting error while submitting data to excel workbook through excel services in InfoPath 2010

    Hi,
    I have a requirement where in have to fetch the calculated values from the excel workbook through InfoPath 2010 form.
    When I am submitting cell value to excel workbook using SetCellA1 by executing following action:
    "Submit using data connection: dataconnection"
    I am unable to submit form. It is giving "there has been an error while processing the form" in the front end. I checked the event viewer and it displayed following exception:
    There was a form postback error. (User: xxxx, Form Name: yyyyyyyy, IP: , Request:
    http://asadadsas Request Form Template.xsn&SaveLocation=/somelocation, Form ID: urn:schemas-microsoft-com:office:infopath:formname:-myXSD-2010-09-20T15-02-34, Type: KeyNotFoundException, Exception Message: The given key was
    not present in the dictionary.)
    I was successfully able to submit the form using InfoPath client but it is giving error in the browser.
    Is there any way or configuration that I should do to resolve this issue.
    Any suggesttion would be of great help.
    Thanks,
    Sharepoint Consultant from NY, USA

    I have exactly the same problem. The form is supposed to be submitted to the SOAP Web service (http://servername/_vti_bin/ExcelService.asmx) using the SetCellA1 operation, works fine in InfoPath Filler, but when I try to submit it in the browser, I get this
    error:
    There was a form postback error. (User: WINGTIP\Administrator, Form Name: NewEventForms, IP: , Request: http://intranet.wingtip.com/et/_layouts/FormServer.aspx?XsnLocation=http://intranet.wingtip.com/et/NewEventForms/Forms/template.xsn&SaveLocation=http://intranet.wingtip.com/et/NewEventForms&Source=http://intranet.wingtip.com/et/NewEventForms/Forms/AllItems.aspx&DefaultItemOpen=1,
    Form ID: urn:schemas-microsoft-com:office:infopath:NewEventForms:-myXSD-2011-12-29T18-18-45, Type: KeyNotFoundException, Exception Message: The given key was not present in the dictionary.)
    followed by
    Unhandled exception when rendering form on postback System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.    
     at System.ThrowHelper.ThrowKeyNotFoundException()    
     at System.Collections.Generic.Dictionary`2.get_Item(TKey key)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.DatabaseHelper.GetSchemaXml(String namespaceUri, Solution solution, String dataObjectName, SchemaNavigator& schema, XPathNavigator& originalSchema, XmlNamespaceManager& namespaceManager)
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.PartFragmentHelper.IsDataSetNode(Solution solution, XPathNavigator node)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.PartFragmentHelper.ApplyPartFragmentGather(DataAdapter adapter, XPathNavigator sourceDOM, DataObjects dataObjects, XPathNavigator targetDOM, PartFragment[] partFragments, Boolean[]& areDataSets)
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.DataAdapterWebServiceSubmit.Execute(Document document, Uri soapAction, Uri serviceUrl, XPathNavigator querySubDOM, XPathNavigator resultsSubDOM, XPathNavigator errorsSubDOM, Int64 timeout, DataAdapterCredentials
    credentials, Boolean useDcl, Boolean useProxy, Boolean useSelf)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.DataAdapterWebServiceSubmit.ExecuteInternal(XPathNavigator queryFields, XPathNavigator resultFields, XPathNavigator errors)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.RuleAction.EvaluateExpression(Document document, XPathNavigator currentTarget)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.RulesRuleSet.EvaluateExpression(Document document, XPathNavigator targetNavigator)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.Document.ExecuteDefaultSubmitAction()    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.ButtonSubmit.Click(Document document, XPathNavigator container)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.EventClick.Play(Document document, BindingServices bindingServices, EventLogProcessor eventLogProcessor)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.EventLogProcessor.ExecuteLog(Int32 expectedEventLogID)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.Document.<>c__DisplayClass13.<PlayEventLog>b__11()    
     at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock)
    What might be wrong? Are there any InfoPath configurations that need to be done? And, do I need to save the connection to the Excel Service Service Application to a connection file?
    Thanks,
             Boris

  • How do you set up excel form in sharepoint server?

    Dear all,
    I am trying to setup an excel form in sharepoint list, basically something that will do a bit of calculation and it has to be in form format. Just like the excel form. Will it be easier to set it up in a web page or in a list? I will need to run some approval
    on this form too, but that's after I figure out how to set this form up first. I tried infopath, it is very confusing in infopath, is there an easier way to achieve this? Thanks.
    Timothy Liu

    Hi,
    It could be achieved with the feature of the SharePoint OOTB List.
    For calculation like excel forms, you can add some Calculated fields to do the calculation firstly, then you can create a DataSheet
    View in the list, it will allow you edit the list like excel form.
    For approval,  you can enable the approval feature in the list as the following steps:
    “List Settings”->”Version Settings”->” Require content approval for submitted items?”-“Yes”.
    Reference:
    http://www.learningsharepoint.com/2012/07/19/sharepoint-2013-datasheet-view-add-items-add-columns-update-multiple-items-etc/
    http://office.microsoft.com/en-us/windows-sharepoint-services-help/examples-of-common-formulas-HA001160947.aspx
    http://yalla.itgroove.net/2012/09/sharepoint-calculated-column-formulas/
    Feel free to reply if you still have any questions.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Cannot publish Excel workbook to Sharepoint 2010 : "You can't open this location using this program. Please try a different location"

    I am trying to save an Excel 2010 file to a Sahrepoint 2010 document library but keep getting the error:
    "You can't open this location using this program. Please try a different location"
    Googling this suggests enabling "Desktop Experience" on the server which I have done. Excel Services Application is Started.
    Has anyone come across this and been able to resolve successfully? I am wondering if this is more security related but the security set-up looks fine.
    Any suggestions?
    Thanks

    Hi Sally, thanks for the response.  Problem is the issue occurs with all users not just me.
    On the server-side do you know if the full Office installation must exist for this to work?
    The reason I think it may be security related in some way is that on another server we can access one site collection but not another.  The first site collection shows the various libraries available and the other gives the same error: "You
    can't open this location using this program. Please try a different location".  
    It's proving to be very frustrating!

  • Power view error while opening excel fine in SharePoint 2010

    I am getting an error while opening an excel file:
    "The following features
    are not supported in the browser and might not display or might display only partially: 
    • Comments, Shapes, or other
    objects 
    Some features, such as external
    data queries, display cached data which can only be refreshed in the client version of Excel."
    Is this issue browser
    related or SharePoint related?

    Hiya,
    it depends what that file contains. There are a lot of new features for Excel, Excel services in the newer versions of SharePoint and SQL server. So it really depends on which of these features your using in your excel file.
    What version is your SharePoint and SQL server(database services) and SQL Reporting?
    There is a pretty specific article for that error message relating to PowerPivot.
    https://msdn.microsoft.com/en-us/library/ff487973.aspx
    And some additional information on Excel services
    http://blogs.office.com/2005/12/01/excel-services-part-12-unsupported-features/

  • Performance Point Services in Sharepoint 2010 getting annotations out of the databasse

    Hi,
    I have a requirement to put in a Reporting Services Report the comments\ annotations from a PPS score card.
    I see the annotations table in the database, but don't see how to connect the GUIDS in the annotations table to the scorecard name. Is there information that can show me how to get this data?
    David Botzenhart

    try this one:
    http://sharepointsolutions.blogspot.com/2008/06/how-do-i-make-our-sharepoint-site-stop_17.html
    if fixed the issue fine other wise could you please check the ULS logs/ application ?IIS logs at the same time user kicked out.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Missing Excel Services in Sharepoint 2013

    Can anyone please help me understand why Excel  services is not available to add as a service?
    What is missing?

    Hi GaryB92,
    Excel Services is an Enterprise feature.  Do you have an Enterprise product key, and has your company purchased Enterprise client licenses (eCALs) for the users that need to use Excel Services? Your Microsoft Account Manager can tell you if you aren't
    sure.
    If you are licensed for it then from Central Admin you can select "Upgrade and Migration" > "Enable Enterprise Features" and then go ahead and select the Enterprise radio button and then ok.  You should note though, that you cannot downgrade the
    farm back to use only Standard features though.
    Note that depending on the key originally entered when installing the product, you may need to select "Convert farm license type" first and put in a correct Enterprise product key.
    Also note that in 2013 there is a new User License Enforcement capability to help ensure that your environment complies with the actual MS user licenses purchased. Here is a useful article on this: http://www.petri.co.il/sharepoint-2013-user-license-enforcement.htm
    There's also an easy to search SP2013 feature matrix by license type here - http://blog.blksthl.com/2013/01/14/sharepoint-2013-feature-comparison-chart-all-editions/
    -Michael.

  • Some Hyperlinks Non Functional in MS Excel Browser App (Sharepoint 2010)

    I have an Excel File that has Hyperlinks that work 100%  in the Desktop App, but only 50% of  them work in the Excel Web App.   The other 50% go to incorrect locations.   I am looking for clues on this very strange behavior......

    Ok, I'll test your file after received.
    ===
    Update, I have received it. I also could reproduce this issue with SharePoint 2010, but the file worked well with OneDrive (SharePoint 2013). I need some time to do further research.
    If I have any update, I'll let you know.
    ============
    Update 2:
    Hello NcAllie,
    Based on my tested with SharePoint 2010, I found the most probably reason.
    The Excel file not loading full columns in SharePoint 2010 (It only loaded half column). Thus, the remaining hyperlink can't go to the incorrect locations.
    This issue might need to troubleshoot with SharePoint 2010, I'm not familiar with it, I recommend open a new thread in SharePoint 2010 forum, it would be give you more light.
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=sharepointgeneralprevious
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Directory not found error occurs while hosting WCF Service in SharePoint 2010

    Hi,
    I have created a sample in share point 2010 along with WCF and while hosting am getting "name of the directory is missing", please find the created sample and error details in below link. could you help me ? 
    https://onedrive.live.com/redir?resid=FE78C65B6E3DB51C%212485
    Thanks,
    Felix M

    Hi Ajay,
    for custom WCF, actually its part of .net and will be deployed to sharepoint. 
    when you deployed, it should change the web.config, and add your endpoint. 
    to try perhaps you can open your endpoint from the web front end server.
    i see from the link that you add, the article already add the example to check this: 
    http://ranaictiu-technicalblog.blogspot.in/2011/03/sharepoint-2010-create-custom-wcf.html
    if should from the web front end is not available, then you need to change the web.config manually and add your endpoint.
    http://msdn.microsoft.com/en-us/library/office/ee535060(v=office.14).aspx
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Cannot open Excel documents in Sharepoint 2010 Enterprise

    We keep having this recurring issue where sharepoint will not allow users to open Excel documents. They receive the error:
    "Unable to process the request. Wait a few minutes and try performing this operation again".
    I did some research and it turns out that a simple reboot causes the issue to subside, but it comes back again.
    Any ideas?

    ProTranslating-Frank,
    Please try these links
    You
    can set the time you want to Recycle under Recycling > Specific Times
    The solution is to disable the ASP.NET Impersonation again.
    Thread 1
    Thread 2
    Similar Blog
    Hope these will help you
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Problem While exporting HTML table to Excel(.CSV) in SharePoint 2010

    Hi ,
    I was exporting HTML table to .CSV file. 
    Problem is if any field contains '>' or '<' symbol then after exporting to .CSV, it was showing like '&gt' and '&lt' and the code is  as below.
    //Export HTML table to CSV 
    function toCSV() {
          var data = document.getElementById('reportstable');
          var csvData = [];
          var tmpArr = [];
          var tmpStr = '';
          for (var i = 0; i < data.rows[0].cells.length; i++) 
            tmpArr.push((data.rows[0].cells[i].innerText || data.rows[0].cells[i].textContent));
          csvData.push(tmpArr.join('\t'));
          for (var i = 1; i < data.rows.length; i++) 
            tmpArr = [];
            for (var j = 0; j < data.rows[0].cells.length; j++) 
            tmpArr.push(data.rows[i].cells[j].innerHTML);
            csvData.push(tmpArr.join('\t'));
          var output = csvData.join('\n');
          SaveContents(output);
    //For saving the file
    function SaveContents(element) {
            if (document.execCommand) {
                var oWin = window.open("about:blank","_blank");
                oWin.document.write(element);
                oWin.document.close();
                var success = oWin.document.execCommand('SaveAs', false, "FilteredReport.xls")
                oWin.close();
    Thanks in Advance

    Hi,
    According to your post, a problem occurred when you exported the HTML table to Excel(.CSV).
    The following code for your reference:
    function toCSV() {
    var data = document.getElementById('reportstable');
    var csvData = [];
    var tmpArr = [];
    var tmpStr = '';
    for (var i = 0; i < data.rows[0].cells.length; i++)
    tmpArr.push((data.rows[0].cells[i].innerText || data.rows[0].cells[i].textContent));
    csvData.push(tmpArr.join('\t'));
    for (var i = 1; i < data.rows.length; i++)
    tmpArr = [];
    for (var j = 0; j < data.rows[0].cells.length; j++)
    tmpArr.push(data.rows[i].cells[j].innerHTML);
    csvData.push(tmpArr.join('\t'));
    var output = csvData.join('\n');
    SaveContents(output.replace(/&lt;/g, '<').replace(/&gt;/g, '>'));
    Best Regards
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • Part 5 - Upgrading your Free Trial Site | Learn Business Catalyst | Adobe TV

    In this last episode, we'll show you how to share your trial site with your client. You'll see how to manage user logins, and how to activate a domain transfer and eCommerce features once you've made the sale. We'll also take a look at defining alert

  • Do not want Quicktime to load automatically

    I have searched the forum for my answer with no luck. I am a Cinematographer, I am putting together my showreel. The reel consists of between 8 or 10 QuickTimes, each between 5 to 8 MB in size. When the page loads all the quicktimes load. That is a b

  • Getting My Music from my iPod to my Library

    I used to have itunes on my computer and it worked fine.. but I had to get my computer cleared out, which erased my itunes... I still have all of my songs on my ipod, but now after re-installing itunes, i no longer have any songs in my library, and I

  • Too many keywords, can't see them all in search?

    Hi all, I am a recent "convert" from the Beastmaster, and am trying to digest iPhoto coming from Adobe Photoshop Elements for PC. My keywords imported fine from PE to iPhoto, but I seem to be having a problem. When I click on the keyword search at th

  • IPhoto won't print in portrait mode

    since upgrading to yosemite, iPhoto won't print in portrait mode; it automatically prints everything in landscape