MS office report function does not work after building the appication

I use the MS office report function  with a custom excel template my application.
It works properly in de developstate, but after building the application it does not work .
I use office 2000  and Windows XP

jmq wrote:
I use the MS office report function  with a custom excel template my application.
It works properly in de developstate, but after building the application it does not work .
What error message if any did you get? It could be a couple things:
1. Did you include the Report Toolkit's dynamic vis in the app's build process?
Ref: Error 7 when Running an .EXE Using VIs from Report Generation Toolkit for MS Office
2. How are you giving the path to you custom template, as a relative or an absolute path? The path will be different for the .exe. You have to strip twice.
Ref: Why Can't My Executable Load My Included File When I Use Relative Path Encoding?
=====================================================
Fading out. " ... J. Arthur Rank on gong."

Similar Messages

  • Mail search function does not work after reinstalling

    Hello!
    I recently had to re-install Leopard on my MacBook Pro.
    I made a clean install so, I manually copied the Mail folder and preferences from my old home folder to the new one.
    All mails are present, and everything works great, apart from the fact that the search function does not work.
    I can search for new mails (that came after the reinstall) but the old ones "dont exist" as far as the mail.app goes.
    What can I do about it ?

    It would probably be easier to do the entire hard drive. The App Store also uses Spotlight, so updating it will help there also. It takes some time to re-index and your computer will/may run slower until it is done.
    Direct answer to your question is go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Then go to System Preferences/Spotlight per the linked article and in your user folder, select Library/Mail/V2.
    Thanks to leonie for some information contained in this.

  • Print VI front panel to file does not work after building executable.

    I am using a property and invoke node to print the front panel of my VI to an HTML file.  It works fine in the development mode. After Building the application, this subvi will no longer
    print the front panel.  Is there some special files that included in the build??

    You can use the Report Generation VIs to generate the HTML report.  Specifically, you could use Append Front Panel Image to Report.vi and Save Report to File.vi to save the image of the panel to an HTML report.
    Check out the examples in examples\reports to get a better idea how to use these VIs if you've never used them before.
    Good luck,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Program does not work after build

    Hi,
    I have built a program today that builds fine (no errors or warnings) but it fails when running the exe.  I am using drivers for a spectrum analyzer (Rohde & Schwarz FSG) and when one of these drivers is called, it returns an error.  Other drivers are run before this particular vi.  Anyone have any idea how to troubleshoot this?  I'm going to try and build the vi on its own and see if it works.  In the mean time, if anyone has any suggestions, please let me know.
    UPDATE: I built the file on its own and it still does not work.  Again, when I run it in developer mode, it works fine.
    VISA Write in rsspecan_core_write.vi->rsspecan_core_attribute_wr​ite_int.vi:3->subrsspecan_core_attribute_express.v​i:2->rsspecan Configure Averaging Type.vi:Instance:Instance           1 41Saved   rsspecan Configure Averaging Type .vi:1->rsspecan Configure Averaging Type.vi
    Thanks.

    I've decided to post the vi since it is free to download.  If anyone has an FSG and wants to build this file and see if they can run it, please do so.
    Attachments:
    rsspecan Configure Averaging Type.vi ‏31 KB

  • Cross Dissolve transition does not work after cutting the tails of both ends.

    I used to apply the Cross Dissolve video transition a while ago and never had any problems. My Cross Dissolve is not working for whatever reason. I usually split parts of the movie using the razor tool and cut the tail of both parts I just split, than apply the Cross Dissolve, but it does not work at all. I dont know if I am doing something wrong here, I need your help if you can help me with that. I have also tried to apply Film Dissolve but I have the same problem.
    Thank you very much!!
    Renata

    I am trying to put together a recruiting video. I was out recording a bunch of people talking about the organization, when I am working with something like this I usually try to shorten the 3 or 5 minute clip I have from one person and just connect the parts of the clip that need to be on the screen, that requires several cuts during the clip and merge the good parts together using the cross dissolve. It is very simple and I have done several times, but for whatever reason during certain parts of the clip when applied will not work. The clips are usually 1 to 3 minutes long and I need to extract the good parts making no more than 1 minute for each peson talking.
    Thanks!
    Renata

  • Passing arrays with Call Library Function does not work after application builder

    Calling a DLL with Call Library Function which requires an array of data works correctly in Labview, but after building an exe with application builder, the call no longer works.  Dereferecing the pointer in the DLL retuns all 0s and not the actual values.
    Solved!
    Go to Solution.
    Attachments:
    TEST.zip ‏28 KB

    I did not run your code because it is a little unclear to me what it does.
    Two things:
    First, is the DLL you are calling the DLL-ified version of PopUpNames.vi? Then the problem is likely that the panel is not being built into the DLL.
    When LabView builds an application / dll, it strips the front panel and block diagram from all VIs that it doesn't think need to show a panel at run time. This reduces file size and increases code security. The App Builder's panel inclusion logic can be overridden by Build Specifications -> Source File Settings -> Remove front panel. A better method is to put a property node on a control in a window you want to show marking it "visible"; this is sufficient to tell the App Builder it should keep the panel.
    Currently Source File Settings shows "no dependencies" (clearly incorrect---another evil side effect of Express VIs I guess) but if you change the settings as shown below to keep ALL panels, one might hope the App Builder can figure it to keep the panel when it deconstructs the Express VI. (Alternatively convert the Express VI into a regular one.)
    A second comment: I am a bit flummoxed at the larger goal here. You are calling LabView DLL from LabView, which doesn't make a lot of sense, so I assume your larger goal is to call LabView from C or vice-versa. In that case be aware that your DLL is x86 (32-bit) but you are passing 64-bit ints as your pointers. In this case it is 32-bit LabView with 32-bit pointers in embedeed in 64-bit containers calling 32-bit LabView with 32-bit pointers in embedeed in 64-bit containers, so it all works, but if your going to call this from C or whatnot you're going to have to follow that same design.
    When calling C code the LabView Call Library Function does have a "unsigned pointer-sized integer" data type that always appears to be 64 bits in the dev env but which actually passes a 64 or 32-bit int to the DLL depending on the environment. The "pointer sized int" has to be 64 bits in the "LabView" part of the code because LabView's strong typing requires the data type to be determined at compile time. Casting all pointers to the largest data type in LabView makes it possible to write platform-independent code, but down at the Call Library level you still have to put the right number of bytes on the stack.

  • HT1192 caps lock function does not work after latest update

    Hi there,
    I have a Macbook 13" Early 2011 and recently after updating my operating system to Mac OS X 10.7.4, i have found that the caps lock button isn't functioning.
    At present if i hold or press the button, it is failing to light up or function at all.
    Is there a fix for this issue, as i have read that there was an update by Apple to stop accidental pressing of this key, however not being able to access its function at all seems to be unusual.
    Your thoughts and opinions would be much appreciated,
    Thanks,
    Robsterhill101

    My Macbook Pro Early 2011 15"  (base model) did this to me last night.
    I did a PRAM Reset, the generic "Cure All Procedure" for Macs. It worked after, but I noticed that the button had to be pressed at just the right angle and with enough pressure. The light would come on and off and Caps Lock functions properly. Continued as normal.
    I put the computer to sleep by simply closing the lid, and then put myself to sleep as well.
    This morning, just before I came on here, my computer would NOT wake from sleep (a whole other issue). Would not wake up by pressing the power button. So I had to do a hard reset, hold the power button down, and press it again after...grrr I never feel good being forced to do this.
    Anyways long story a little bit shorter, I restarted my computer and low-and-behold the Cap Lock is not working again. No Bueno, Cupertino.
    No, sorry, no liquid damage on the keys, and I don't have kids, nor share my computer with anyone but myself.
    Its one of the few things that bug me about this computer. The other is the issue of the computer not being able to wake from sleep. Too often.
    SHOULDA BOUGHT THE APPLE CARE
    Simply Because, perfect timing after the years original warranty, you will experience problems. After all, they do want you to be a repeat customer. IYKWIM

  • Report Generation for Excel does not work after using the Application Builder

    I have a VI that writes data to an Excel file using the Report Generation Toolkit. I recently compiled the VI into a single Application (EXE) using the Application Builder. My VI runs its tests properly, but no data is written to Excel. What could be the cause? I don't receive any error messages.

    Hi
    I usually build exe-files, which sometimes also have report functionality.
    Open the Application Builder and check the following things:
    1. Add the following vis: _Word Dynamic VIs.vi, _Excel Dynamic VIs.vi They should be located in the directory ..\LabVIEW X.X\vi.lib\addons\_office in the llbs _wordsub.llb and _exclsub.llb (report1.jpg)
    2. If you use an Installer, go to the Advanced Settings. There you can select some things to include in the Installer. Check if "NI Reports Support" is selected. (report2.jpg)
    These are the things I always do, if I need reports and I never had problems up to now. I made two screen-shots of these settings.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    report.zip ‏25 KB

  • The "New Tab" function does not work either from the tab bar, the File drop down menu or using CTRL+T

    The new tab is visible on the the tab bar but clicking on it does not open a new tab.Neither can I open a new tab from the File drop down menu, nor the Ctrl+T method as indicated in the troubleshooting guide.

    Un-install the '''''Ask Toolbar''''' which many users have reported causing that problem.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Shockwave Flash 10.1 r102
    *Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • My iphone 3g does not work after updating the software through itunes

    Some days ago I made a security copy of my iPhone 3G at iTunes. Today when I conected my iPhone to iTunes I had a message saying I had to update the software of my phone. I accepted and after around 30 minutes of update I got another message saying there had been a problem restarting my phone. The screen of my mobile was showing the iTunes icone and the USB icone and I can't access to the content of it. So I disconnected the mobile from iTunes and connected it again and I got another message saying iTunes has detected a mobile phone in recovering process and it says I have to restaure the iPhone to be able to use it in iTunes. And, by the way, before all this when I connected my phone to iTunes the iTunes recognized the name of my mobile. It doesn't anymore, it just says "iPhone" on the left column.
    My question is: Should I restaure the iPhone? Will I be able to recover the security copy I made some days ago? Where can I access that copy?
    Thank you so much in advance!
    B

    You're welcome.
    Already answered.
    When restoring the iPhone with iTunes, the iPhone is completely erased first folllowed by the current iOS version being re-installed. After iOS is reinstalled, you are prompted to restore from your iPhone's backup, which is the default selection. The other available selection is to restore as a new iPhone or not from the backup.

  • New iMac (10.9.4) & now my HP Photosmart 6520 "scan to computer" function does not work

    Recently upgraded to a new iMac running 10.9.4.  Printing works well from this computer and all other devices (iPad, iPhone, etc.).  However, the "scan to computer" function does not work.  In the "Scan" section of HP Utility when I click on "Scan to Computer" the error message reads "Scan to Computer Cannot Be Enabled. The software required for Scan to Computer could not be located on this computer. Please download and install the latest HP recommended software for your device from http://www.hp.com/support, and then try again.
    Of course I have done this... twice... still no luck.  Also ran Software Update and there was an update, but it made no difference.

    Yes, did all that... in order.  It did not resolve the problem.  However, I did find what appears to be the answer.  After re-installing the driver software DO NOT immediately follow the prescribed steps.  Instead, quit the installer, restart the Mac, and an Apple software update will appear after restart.  Install that software update, and even though the computer and software do not call for it, restart the Mac again.  Only then add the printer and follow the balance of the steps.  It works!   Thank you for your help.

  • Crystal Report for VS2010 - The Go To Page function does not work

    When running a report into Crystal(VS2010), the Go To Page function does not work.  Typing in a page number and pressing Enter does not take you to that page.  The report remains on the current page. I'm not sure if there is suppose to be a button like the one in Crystal 8.5(VS2008).

    As long as you are using the CR assemblies for VS .NET, the viewer (Win) should look like this:
    Remember, the ActiveX viewer based on the Report Designer Component (RDC, referencing craxdrt.dll) is not supported in VS 2010.
    - Ludek
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Share Your Knowledge in SCN Topic Spaces

  • Card slot does not work after update (14/10/2011)

    Card slot does not work after yesterday update (14/10/2011)! It works with my SD card month ago, but now it dosn't!!!
    MacBook Pro 13 OS ver. 10.6.8

    Thanks for your suggestion. I downloaded OnyX and ran the cleaning function. After restarting, I opened Help and once again the first screen appeared fine. But again most of the links did not work, though those under the "What's New" heading did work. I might add that I had previously tried a variety of suggestions posted in another thread, which included deleting from the caches folder in Home>Library several files such as com.apple.helpui and help.plist in the Preferences folder. (As noted in my previous post this evening, I also created another user but that also did not have any effect.) Any other ideas? Thanks

  • Since I installed Lion on my macbook the LED light does not pulse when I close the screen - the sleep function does not work.

    Since I installed Lion on my macbook the LED light does not pulse when I close the screen - the sleep function does not work neither when chosen after pressing the button nor chosen in the apple menu..

    I have had the same problem but on another forum it was suggested that disabling internet sharing would solve this. This fix seems to work on my machine - why it works I do not understand

  • Crstal Report Server does not working on installation of Crystal Design

    Hi,
    I had installed Crystal Report Server 2008 on a machine, I was able to login and open the CMC console as well but on installation of Crystal Desing the CMC and inforview are not opening. its displaying some dll file is missing.
    Kindly inform whether Server does not work after installation of Design on the same machine.
    Thanks & Regards
    PNN  Murthy

    Questions related to ASP.NET should be posted in the ASP.NET forums (http://forums.asp.net ).

Maybe you are looking for

  • Unable to update iPhoto and iMovie since Mountain Lion and Mavericks

    It has been over a year since it happens, I was hoping it could be solved after i updated to the new mavericks system.. "This update is for an app downloaded with a different Apple ID. Sign in with that Apple ID and try again. " It has not been bothe

  • In Vista,  Applet isn�t able to read the property files

    I�m working on internationalization; the Applet which I�m using wasn�t able to read the property files properly in windows Vista machine. But if I create a jar which contains all the classes and property files, Applet works fine. This problem is only

  • File not able to pick while using FCC at sender channel

    Hi Experts , we design one scenario that we need to process flat file to ECC. So we have used FCC at sender channel. while we testing ,  only its showing as successfull logs in channel , but we not able to pick the file. could you please check the be

  • Streaming video in web site?

    I have a real estate client who wants to show 2-3 minutes snippets of the homes he's selling. I'm not sure of the best way to do this, as far as streaming the video. A previous client who used a lot of video got me hooked up with a special hosting co

  • How do I find an audio file that I put on an iPod from a non-iTunes software?

    I'm talking about on the iPod itself, not looking at the folders when it is connected to the computer. I've put some audio files, podcasts and songs, that transfered from a non-iTunes podcast aggregator and songs that weren't in my iTunes library, bu