How to Virtualise Excel Add on

I'm wondering if anyone has any advice. I've just started trying to get to grips with Application Virtualisation.
We use a 3rd party product InfoScheduler, for scheduling reports in Crystal Enterprise. On the machine for the app to work you need Crystal Reports basic tools and Excel. The app is basically a addin into Excel and uses the Crystal dlls to register against the enterprise server. The Excel addin only starts when you open a specific Excel file.
I was thinking of virtualising Crystal tools and Infoscheduler together, having already installed Excel outside of the recording program. But how do I get the virtual app to start for just this one Excel file ?
Or do I get the app to start Excel and then open the Excel from this instance ?

I've had a play and got the app to start Excel on the local device first and this seems to have resolved.

Similar Messages

  • How to install 3 Excel Add-Ins in one deployment ?

    I have 3 excel add-ins which work in conjunction with each other. I want the user to install all 3 at the same time, from one install package. How to do that?
    I am following the steps in "Deploying an Office Solution by Using Windows Installer". 
    This is a single user install.
    Just guessing, I have created a visual studio solution containing the 3 add-in projects as "existing projects".  And the 4th project in this solution is a "setup and deployment" project type. InstallShield Limited Edition Project.
    I am not clear if there should be a different destination folder for the .vsto and .dll.manifest files for each add-in.
    thanks,

    Hi Steve Richter,
    Here is a MSDN article about how to Deploy Multiple Office Solutions in a Single ClickOnce Installer.
    https://msdn.microsoft.com/en-us/library/vstudio/dd465290(v=vs.100).aspx
    The article will tell you the following three points.
    Creating two Office solutions to deploy, and one Office solution as the installer project.
    Modifying the application manifest of the installer project to install two Office solutions.
    Re-signing the application and deployment manifests.
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I got Code and Name in dropdown list of domain-based, how can I only show code without name in MDS excel add-in?

    Hi,
    We can use the setting on MDS webpage's Explorer to change the result of display.
    From Code{Name} to only display Code or Name{Code}
    How could I change the result of display like MDS webpage's Explorer in MDS excel add-in?
    We want the dropdown only show Code in it without Name even do not display symbol of {}.
    Thanks in advance for the help.

    Hi,
    To the best of my knowledge that's not possible.
    You should try to leave some feedback on this part of the product at connect.microsoft.com
    Regards, Fredrik

  • SQL Server Excel Add In for Data Mining: How do I retrieve the coefficients underlying the logististic regression model in excel

    I constructed a logistics regression model inside Excel using the Data Mining Add In.  I would like to see the coefficients for each input variable.  I can't seem to find this inside excel.  I tried running queries in DMX inside
    Mgt Studio but that seems to return multiple coefficients
    for each input  variable.  I am seeking
    ONE coefficient for each variable.
    Other applications I have used in the past provided the intercept and one coefficient for each input variable.  Can someone advise on how I can achieve that inside excel or Analysis Services?
    Thanks
    Rich
     

    We have this problem when we install the add-in using an Administrator's login ID.
    The problem is that the add-in automatically registers the Excel add-in. This causes a whole host of problems, including the one you describe (even when we install with the user as the admin on their own machine). Other problems include conflicts with other Add-ins (e.g. nVision) & utlities that import PDF into Excel.
    For our Citrix environment we do the following:
    · Install Essbase Add-In as Administrator
    · Replace “ntuser.dat” file in Default User profile with the “ntuser.dat” file from Administrator’s profile. (Replace C:\Documents and Settings\Default User\NTUSER.DAT with C:\Documents and Settings\Administrator\NTUSER.DAT).
    · Delete existing user profile from the system
    Once user logs back in, a new profile will be created to work with Essbase add-in.
    Note:
    1. 1. NTUSER.DAT file is a hidden file. It is only visible if show hidden file option is enabled
    2. Deleting user profile from the system remove all user customization such as shortcuts, favorites, pst file etc. as well.
    BUG NOTE: When you try to Unregister the Excel Add-in from your Start button, the shortcut points to the wrong file name. The file name should be "unRegExcelAddin.exe"
    I hope this helps.

  • How to secure data transmission from Essbase Excel add-in to Essbase Server

    I have a requirement to secure the data transmission (encrypt) the data transmission from the Essbase excel add in on the client machine to the Essbase server. I have confirmed with Oracle support that the excel add-in and the API only transmit the data in binary from with no encryption.
    I wanted to see if anyone has implemented this before?
    Thanks,
    Mike

    Technical support gave you the correct answer, it is
    not supported. You might check with Tim Tow
    http://www.appliedolap.com to see if either the
    Dodeca or ActiveOlap products support encryption.Glenn is correct in that Oracle doesn't support it. More specifically, the Essbase server itself does not support it.
    The other products mentioned in this thread, Smartview, Spreadsheet Services, Dodeca and ActiveOLAP, all can talk to the middle tier via https and are thus encrypted through that portion of the transaction. However, the communication from the middle tier, Analytic Provider Services in the case of System 9, talks to Essbase via TCP/IP unencrypted. If your middle tier/Essbase server connections are not 'sniffable', then essentially they are secured (albeit not encrypted).
    Tim Tow
    Applied OLAP, Inc.

  • How I can delete add-in in windows 8.1 ,I see only enable and disable function but I don't see any add-in delete function

    hi,
    how I can delete  add-in applications in add-in applications section ,  I try to delete one but I don't see any delete function, I see only enable and disable function in the manage add-in applications wizard.
    thanks
    johan
    h.david

    Hi,
    If you want to remove the add-ins of Office 2010 programs, you need to remove it from control panel.
    For example, if you use Excel, please try to follow the link to delete the add-ins:
    http://office.microsoft.com/en-us/excel-help/add-or-remove-add-ins-HP010342658.aspx
    If I misunderstand something, please let me know.
    Regards,
    George Zhao
    TechNet Community Support

  • Excel Add-In with WorkbookOpen event causes error in Word

    EDIT: New information
    I have narrowed the problem to a specific code. Following code produces the error message (see below in the original part):
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    void Application_WorkbookOpen(Excel.Workbook Wb)
    int i = 0;
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    It does not matter whether I unregister the WorkBookOpen event in the ThisAddIn_Shutdown method or not. Whenever this piece of code is present Word gives me the error.
    It seems to be a bug in Excel. Can anyone test and confirm my assumption? Does anyone know a workaround?
    ORIGINAL
    I have a problem with my Excel add-in (VSTO) in a very specific situation. For some reason I can't debug the add-in when it is happening.
    In Word it is possible to insert and edit OLE objects. In this specific situation a user wants to insert and edit an Excel sheet (INSERT -> Table -> Excel Spreadsheet).
    Let's say that Excel is not running. In an ideal world the Excel process is started by Word when the user edits the spreadsheet. The Excel process is terminated when the Word document is closed. This works fine, if my Excel add-in is deactivated.
    If the Excel add-in is activated the user cannot edit the spreadsheet in Word. An error with following message is shown within Word: "The program used to create this object is Excel. That program is either not installed on your computer or it is
    not responding. To edit this object, install Excel or ensure that any dialog boxes in Excel are closed". Also the Excel process which was started by Word is not terminated when closing the document or exiting Word. Excel started by the user does not give
    any error message. No dialog is opened. The add-in works fine. So there must be an error with the Excel add-in when Excel is started by Word.
    I can reproduce the error with and without an attached debugger (Visual Studio). But for some reason there is no exception caught by Visual Studio while the error is happening.
    Can anyone help me how to investigate on that error?
    Yavuz

    Hi Yavuz,
    Based on my investigatiton, when the Excel doesn't start up by user the add-in would shut down immediately. So when the workbook open event was fired the callback already be relreased.
    As a workaround, we can use application.UserControl to detect whether the Excel applicaiton was started by user. And here is the code for your reference:
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    if(Application.UserControl)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    Please let me know whether it works for you.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Essbase Excel Add in not working

    Hi All,
    I have installed hyperion 11.1.2.2 version in windows 2008 server(64 bit system)
    Server is up and running fine.!
    I have installed Excel addin, then i got one issue here. When i opened excel, Smartview is displayed on the top but Essbase is not displayed. I tried so many ways, but no use.
    give me some suggestions regarding to solve this issue..!
    Thanks,
    mady
    Edited by: mady on Nov 27, 2012 11:46 AM

    Mady, I hope you were not trying to open the Add-Ins directly from Windows. The Essbase XLL and XLA work within Excel as Add-Ins, not as executables. When I doubled-clicked on the XLL and XLA, I got the Microsoft Security warning, which I assume that is what you were doing wrong. You can also google Excel Add-Ins on how to manage it if you are not sure what to do. It's very straight forward.

  • BPC for excel Add-in Conflict

    Hi,
    I'm trying to find out if there any known excel add-ins that conflict with BPC for Excel (v7) and how the conflicts manifest themselves.
    I am currently specifically interested in conflicts with SAP BW BEx Analyser but would be interested in any others also.
    Would be grateful if anyone could shed some light on this.
    Many thanks

    Usually, Crashing means excel will show crashing error message and restart it.
    Excel will just return excel error message. NOT BPC or 3rd Party ADD_IN error message because it happened at the EXCEL while it is processing request from BPC addin and other 3rd partty Addin. (Of course BEX is SAP product. that's why BPC NW support BEX report in 7.5 but still it is not fully integrated with MS.)
    Sometimes it happens when retriving data from BPC or sending data. As you know those are critical functionality of BPC.
    Again, it depends on the addin but based on my experience, Hyperion Addin and BEX addin had a problem when it runs together with BPC addin.  some simple addin might not have any issue but still recommendation is not using 3rd party addin because we don't know where the error comes.
    Thank you.
    James Lim.

  • ALM Excel Add in error

    Product – ALM
    OS – Windows 7
    MS Office version – 2007
    I have ALM -excel add in installed in my MS excel. When I click on ‘export to ALM’, an error comes up – “compile error in hidden module:CTDServer”
    I went into the VB editor and found that the OTA COM Library is missing. I  tried re-installing the add in and my MS office, but in vain. It seems like the library is getting installed in a different location in XP and in win7. Has anyone installed the add in successfully on a Win 7 machine ? IS there any compatibility issue with Win 7 and MS office 2007 and ALM ?
    Also, i dont have admin rights on my machine.
    Please let me know how to resolve this issue.

    This is rather easy to fix - You may need admin privledges but I dont think do.  Are you familiar with opening up the VBCODE behind MS Excel (Alt + F11)?  We need to make a change there (Refrences change to the TDADDIN) and that will resolve your issue.  I am a QC Admin for a extraordinarily large company with thousands of QC users spread across the globe so I see almost every error imaginable on every type of OS, version of Excel, Windows, you name it and this is a common one but one of the easier ones to fix.  [Personal Information Removed]

  • Essbase Excel add-in error

    We have upgraded to Essbase 6.5.2 and when installing the excel add-in haveencountered the message "R.xls" file cannot be found. Does anyone elseknow anything about this and how to resolve this? The addin works okay,but the users get this message each time they open excel now.JC

    This sounds as if your environment variables are not set correctly or something in your registry has gone astray.I had a similar problem once which was actually caused by another VB application which was removing and adding them back in the add-ins but getting the syntax slightly wrong on the essbase add-in xla's (an extra " being created in the registry).Have you tried completely uninstalling the add-in and re-install?

  • Essbase and Excel Add-in Migration from 6.5 to 11.1.2.1

    Hi,
    Essbase and excel 6.5 Wanted to Upgrade to 11.1.2.1
    since there only essbase we just need to install 11.12.1 essbase and copy the otl files and series of steps
    but how to upgrade the Excel addin 6.5 to 11.1.2.1

    If you are doing a clean upgrade then all you'll need to do is uninstall the excel add-in from 6.5 and then reinstall the 11.1.2.1 version of excel add-in.

  • Removing Members from Excel Add-in (or Smartview) Member Selection Options

    The users of my system have write access to some scenarios, read access to others, and no access to the rest. I would like the Scenarios for which the users have no access to not show up in the member selection options in Excel Add-in (similar to how they will not show up in Forms). Our security settings obviously prevent them from seeing the data itself, but we don't want them to see certain Scenarios at all (even the member names). We've dealt with this issue in Financial Reporting by manually specifying what the POV options are, but we can't do the same with Excel Add-in or Smartview.
    Is this possible, or are these Add-ins just not smart enough to interpret the security?

    I sugget you look at metaread filters. they would prevent users from seeing members they don't have access to (one exception is they might see parents they don't have access to if they are required to navigate to the hierarchy they do have access to

  • IBP 4.0 FP1 Excel Add-in in Mac

    Hi,
    In Mac OS X Yosemite, I'm running a windows VM, which has Office '13 PRO installed on it. When I try to install my IBP 4.0 FP1 excel add-in on to the VM, the installation fails with the attached error:
    Any idea on how to resolve this?
    Regards,
    Chendur

    Downloading and installing the VBA module resolved this issue.
    Installing EPM add-in on Microsoft Office 2013: Fix for Visual Basic For Application 2013 Or Later Needed Error.

  • Remove Excel add-in toolbar in XL 2007

    How can I remove Excel add-in toolbar in Excel 2007, without uninstalling Essbase client ?
    I managed to remove the menu entries, but not the toolbar in the add-in ribon.
    Is XL add-in supported on XL 2007 ?
    Regards
    (Release 9.3.1)
    Edited by: user643304 on 26 sept. 2008 07:11

    Depending on your version, it is not supported (7.1.6 and above are supported, IIRC). They work with relatively minor issues, however (a search of Excel 2007 in this forum will tell you more than I can quickly summarize).
    To remove the customer toolbar, just right click on any of the toolbar's controls -- one of the options should be to delete the customer toolbar. Easy, but not obvious.

Maybe you are looking for

  • My ipod 2g is not showing on my pc and when i try to restore it it says that it can't connect to update server

    my ipod is not working(the itune  say it is in recovery mode) and it ask me to restore it but when i try to restore it the itune says that it can't connect to updateserver ps: i tried to disable my norton software and delete the textin the host file

  • Balance Quota carried forward

    hello gurus, can i get a solution on how to carry forward balance leave quota to the next year, if the balance is negative or positive. Am working on negative time. i went thru many threads but still confused as how to go about it. Do i need to write

  • Help With Creating HR Schema on Oracle 10g

    Hi; I am new to oracle and need help to setup HR schema to practice tutorial for Oracle SQL Developer 1.2. Any help and guidence will be highly appreciated. Found this script "hr_code"in C:\oracle\product\10.1.0\Db_1\demo\schema\human_resources but d

  • CSS- traffic orignating from real server + Virtual interface

    Hi all, I am designing a solution at the moment, in which I shall have 2 servers behind a pair of CSS & their default gateway will be the Virtual Interface ip address of CSS. Is there any problem forseen in traffic getting initiated from the server t

  • Extend WL Authentication Provider Password Validation

    Hi folks I'm looking for any advice on how to extend the OOB password validation that is available and documented here: http://docs.oracle.com/cd/E12840_01/wls/docs103/secmanage/atn.html#wp1212100 Specifically we'd like to test whether the desired pa