Nidaq32.bas file is missing

Our installations of Labview are missing the nidaq32.bas include file for visual basic. Does anyone have a copy that you could send me? It should be in the 'National Instruments\NI-DAQ\Include' directory.
Thanks.
Nathan

Hi Nathan,
the nidaq32.bas file is part of the NI-DAQ driver software. In this case, you might have installed LabVIEW but didn't include that driver (or the Visual Basic support of that driver).
Either run the installation wizard again ('Custom' installation), enable 'Device Drivers' on the 'Features' page and when prompted insert the "National Instruments Device Driver CD" that came with your LabVIEW installation CD or download the NI-DAQ driver (~700MB).
Cheers,
-B2k

Similar Messages

  • Smartview.bas file missing from bin.

    Hopefully I'm posting in the correct forum, my appologies if not.
    I understand the VBA functions for smartview are in the "Smartview.bas" file that should be in the program's bin folder. I seem to be missing the file even after reinstalling.
    Could someone direct me to where I can get the file?
    or
    I'm not sure how large the file is, but if the functions were posted to a reply I could capture them there.
    many thanks!

    Attribute VB_Name = "Module1"
    ' Copyright 1992-2006 Hyperion Solutions Corporation. All Rights Reserved.
    ' RESTRICTED RIGHTS LEGEND:
    ' Use, duplication, or disclosure by the Government is subject to
    ' restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
    ' in Technical Data and Computer Software clause at DFARS 252.227-7013,
    ' or in the Commercial Computer Software Restricted Rights clause at
    ' FAR 52.227-19, as applicable.
    ' Hyperion Solutions Corporation
    ' 5450 Great America Parkway; Santa Clara, CA 95054 USA
    ' Function Smartview VBA Declaration.
    ' Global Constants for outline query types
    Global Const HYP_CHILDREN = 1
    Global Const HYP_DESCENDANTS = 2
    Global Const HYP_BOTTOMLEVEL = 3
    Global Const HYP_SIBLINGS = 4
    Global Const HYP_SAMELEVEL = 5
    Global Const HYP_SAMEGENERATION = 6
    Global Const HYP_PARENT = 7
    Global Const HYP_DIMENSION = 8
    Global Const HYP_NAMEDGENERATION = 9
    Global Const HYP_NAMEDLEVEL = 10
    Global Const HYP_SEARCH = 11
    Global Const HYP_WILDSEARCH = 12
    Global Const HYP_USERATTRIBUTE = 13
    Global Const HYP_ANCESTORS = 14
    Global Const HYP_DTSMEMBER = 15
    Global Const HYP_DIMUSERATTRIBUTES = 16
    'Outline member query Constants.
    Global Const HYP_COMMENT = 1
    Global Const HYP_FORMULA = 2
    Global Const HYP_UDA = 3
    Global Const HYP_ATTRIBUTE = 4
    'Outline member query Options
    Global Const HYP_MEMBERSONLY = 1
    Global Const HYP_ALIASESONLY = 2
    Global Const HYP_MEMBERSANDALIASES = 4
    'Supported Providers
    Global Const HYP_ANALYTIC_SERVICES = "Analytic Provider Services"
    Global Const HYP_FINANCIAL_MANAGEMENT = "Hyperion Financial Management"
    'Menu Operations
    Public Declare Function HypMenuVConnect Lib "HsAddin" () As Long
    Public Declare Function HypMenuVRefresh Lib "HsAddin" () As Long
    Public Declare Function HypMenuVRetrieve Lib "HsAddin" () As Long
    Public Declare Function HypMenuVOptions Lib "HsAddin" () As Long
    Public Declare Function HypMenuVKeepOnly Lib "HsAddin" () As Long
    Public Declare Function HypMenuVRemoveOnly Lib "HsAddin" () As Long
    Public Declare Function HypMenuVZoomIn Lib "HsAddin" () As Long
    Public Declare Function HypMenuVZoomOut Lib "HsAddin" () As Long
    Public Declare Function HypMenuVPivot Lib "HsAddin" () As Long
    Public Declare Function HypMenuVSubmitData Lib "HsAddin" () As Long
    Public Declare Function HypMenuVDisconnect Lib "HsAddin" () As Long
    Public Declare Function HypMenuVCalculation Lib "HsAddin.dll" () As Long
    'VBA Functions
    ' Connections
    Public Declare Function HypCreateConnection Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtProvider As Variant, ByVal vtProviderURL As Variant, ByVal vtServerName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtFriendlyName As Variant, ByVal vtDescription As Variant) As Long
    Public Declare Function HypConnect Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtFriendlyName As Variant) As Long
    Public Declare Function HypDisconnect Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal bLogoutUser As Boolean) As Long
    Public Declare Function HypRemoveConnection Lib "HsAddin" (ByVal vtFriendlyName As Variant) As Long
    Public Declare Function HypConnectionExists Lib "HsAddin.dll" (ByVal vtConnectionName As Variant) As Variant
    Public Declare Function HypSetActiveConnection Lib "HsAddin.dll" (ByVal vtConnectionName As Variant) As Long
    'Ad-Hoc operations
    Public Declare Function HypRetrieve Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
    Public Declare Function HypZoomIn Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant, ByVal vtLevel As Variant, ByVal vtAcross As Variant) As Long
    Public Declare Function HypZoomOut Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
    Public Declare Function HypKeepOnly Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
    Public Declare Function HypRemoveOnly Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
    Public Declare Function HypPivot Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtStart As Variant, ByVal vtEnd As Variant) As Long
    Public Declare Function HypPivotToGrid Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtSelection As Variant) As Long
    Public Declare Function HypPivotToPOV Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
    Public Declare Function HypCell Lib "HsAddin" (ByVal vtSheetName As Variant, ParamArray MemberList() As Variant) As Variant
    Public Declare Function HypSubmitData Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
    'Flashback
    Public Declare Function HypRedo Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
    Public Declare Function HypUndo Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
    'POV
    Public Declare Function HypSetPOV Lib "HsAddin" (ByVal vtSheetName, ParamArray MemberList() As Variant) As Long
    Public Declare Function HypSetBackgroundPOV Lib "HsAddin" (ByVal vtFriendlyName, ParamArray MemberList() As Variant) As Long
    'Business rules
    Declare Function HypListCalcScripts Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByRef scriptArray) As Long
    Declare Function HypExecuteCalcScript Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtCalcScript As Variant, ByVal vtSynchronous As Variant) As Long
    'Query members
    Declare Function HypQueryMembers Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByVal vtOption As Variant, ByVal vtDimensionName As Variant, ByVal vtInput1 As Variant, ByVal vtInput2 As Variant, ByRef vtMemberArray As Variant) As Long
    Declare Function HypSetMenu Lib "HsAddin.dll" (ByVal bSetMenu As Boolean) As Long
    Declare Function HypIsUDA Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtUDAString As Variant) As Variant
    Declare Function HypIsAttribute Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtUDAString As Variant) As Variant
    Declare Function HypIsExpense Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant) As Variant
    Declare Function HypConnected Lib "HsAddin" (ByVal vtSheetName As Variant) As Variant
    Declare Function HypFindMember Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtAliasTable As Variant, ByRef vtDimensionName As Variant, ByRef vtAliasName As Variant, ByRef vtGenerationName As Variant, ByRef vtLevelName As Variant) As Long
    Declare Function HypGetDataPoint Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtCell As Variant) As Variant
    Declare Function HypFreeDataPoint Lib "HsAddin.dll" (ByRef vtInfo As Variant) As Long
    Declare Function HypSetCellsDirty Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Declare Function HypOtlGetMemberInfo Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByRef vtMemberArray As Variant) As Long
    Declare Function HypGetParent Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByRef vtParentName As Variant) As Long
    Declare Function HypIsParent Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal ParentName As Variant) As Boolean
    Declare Function HypGetChildren Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal intChildCount As Integer, ByRef vtChildNameArray As Variant) As Long
    Declare Function HypIsDescendant Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtDescendantName As Variant) As Boolean
    Declare Function HypSetSubstitutionVariable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtVariableName As Variant, ByVal vtVariableValue As Variant) As Long
    Declare Function HypGetSubstitutionVariable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtVariableName As Variant, ByRef vtVariableNames As Variant, ByRef vtVariableValues As Variant) As Long
    Declare Function HypGetAncestor Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtLayerType As Variant, ByVal intLayerNumber As Integer, ByRef vtAncestor As Variant) As Long
    'Options
    Declare Function HypSetGlobalOption Lib "HsAddin" (ByVal vtItem As Long, ByVal vtGlobalOption As Variant) As Long
    Declare Function HypGetGlobalOption Lib "HsAddin" (ByVal vtItem As Long) As Variant
    Declare Function HypGetSheetOption Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtItem As Variant) As Variant
    Declare Function HypSetSheetOption Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtItem As Variant, ByVal vtOption As Variant) As Long
    'HFM Functions
    Public Declare Function HypCalculate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypForceCalculate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypCalculateContribution Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypForceCalculateContribution Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypTranslate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypForceTranslate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypConsolidate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypConsolidateAll Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    Public Declare Function HypConsolidateAllWithData Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
    'Dynamic Link Functions
    Public Declare Function HypGetRowCount Lib "HsAddin.dll" () As Long
    Public Declare Function HypGetColCount Lib "HsAddin.dll" () As Long
    Public Declare Function HypGetPOVCount Lib "HsAddin.dll" () As Long
    Public Declare Function HypUseLinkMacro Lib "HsAddin.dll" (ByVal bUse As Boolean) As Long
    Public Declare Function HypSetLinkMacro Lib "HsAddin.dll" (ByVal vtMacroName As Variant) As Long
    Public Declare Function HypGetLinkMacro Lib "HsAddin.dll" (ByRef vtMacroName As Variant) As Long
    Public Declare Function HypSetPOVItems Lib "HsAddin.dll" (ParamArray MemberList() As Variant) As Long
    Public Declare Function HypDisplayTwoDimArray Lib "HsAddin.dll" (ByRef vtMemberList() As Variant) As Long
    Public Declare Function HypGetSourceGrid Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByRef vtGrid As Variant) As Long
    Public Declare Function HypGetPOVItems Lib "HsAddin.dll" (ByRef vtDimensionNames As Variant, ByRef vtPOVNames As Variant) As Long
    Public Declare Function HypDisplayToLinkView Lib "HsAddin.dll" (ByVal vtDocumentType As Variant, ByVal vtDocumentPath As Variant) As Long
    Public Declare Function HypGetRowItems Lib "HsAddin.dll" (ByVal rowID As Variant, ByRef vtDimensionName As Variant, ByRef vtMembernames As Variant) As Long
    Public Declare Function HypGetColItems Lib "HsAddin.dll" (ByVal vtColID As Variant, ByRef vtDimensionName As Variant, ByRef vtMembernames As Variant) As Long
    Public Declare Function HypSetRowItems Lib "HsAddin.dll" (ByVal vtRowID As Variant, ByVal vtDimensionName As Variant, ParamArray MemberList() As Variant) As Long
    Public Declare Function HypSetColItems Lib "HsAddin.dll" (ByVal vtColID As Variant, ByVal vtDimensionName As Variant, ParamArray MemberList() As Variant) As Long
    Public Declare Function HypGetConnectionInfo Lib "HsAddin.dll" (ByRef vtServerName As Variant, ByRef vtUserName As Variant, ByRef vtPassword As Variant, ByRef vtApplicationName As Variant, ByRef vtDatabaseName As Variant, ByRef vtFriendlyName As Variant, ByRef vtURL As Variant, ByRef vtProviderType As Variant) As Long
    Public Declare Function HypSetConnectionInfo Lib "HsAddin.dll" (ByVal vtServerName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtFriendlyName As Variant, ByVal vtURL As Variant, ByVal vtProviderType As Variant) As Long
    Public Declare Function HypDeleteCalc Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtCalcScript As Variant) As Long
    Public Declare Function HypExecuteQuery Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMDXQuery As Variant) As Long
    Public Declare Function HypSetAliasTable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtAliasTableName As Variant) As Long
    Public Declare Function HypRetrieveRange Lib "HsAddin.dll" (ByVal vtSheetName As Object, ByVal vtRange As Object, ByVal vtConnName As Object) As Long
    Public Declare Function HypSetConnAliasTable Lib "HsAddin.dll" (ByVal vtConnName As Variant, ByVal vtAliasTableName As Variant) As Long

  • Problem in creating a new knowledge base file

    Dear experts,
    I should like to create a new knowledge base file. I use the Oracle version 9.2 and the OS is Windows 2000. I have created the thesaurus with
    ctxload -user ctxsys/ctxsys -thes -thescase y -name DEFAULT -file xx.xx
    and the language setting:
    NLS_LANG=HUNGARIAN_HUNGARY.EE8MSWIN1250
    During the compile operation
    ctxkbtc -user ctxsys/ctxsys -name DEFAULT
    i get the following error message:
    DRG-52110: Error in writing extended knowledge base
    DRG-11101: drelcHU.dat open error
    Before the ctxkbtc command execution, I have created an empty directory for the expected .dat file:
    ctx/data/hulx
    with full control for every OS users.
    What is missing or false in the commands? Where could I learn more on this special topic?
    Many thanks for any help.
    Best regards
    Laszlo

    meanwhile i have found the solution :-), The name of the empty directory must be
    xxlx
    and not
    hulx
    Laszlo

  • ITunes 10.6.1.7: "iTunes cannot run because some of its required files are missing. Please reinstall iTunes." ?

    Fakt:
    iTunes 10.6.1.7 Fehlermeldung: "iTunes cannot run because some of its required files are missing. Please reinstall iTunes."
    Jeder Versuch iTunes zu starten war bisher vergeblich: unter anderem auch das Vorgehen nach Artikel HT1925 der knowledge base.
    Frage:
    Windows XP Neuinstallation und/oder Installation einer älteren iTunes-Version als letzter Ausweg?

    Antwort und Lösung eine Woche später:
    Deinstallation und Neuinstallation von iTunes 10.6.1.7 produziert dieselbe Fehlermeldung.
    Es hilft nur eine Reparatur von iTunes unter Systemsteuerung / Software. Allerdings muss hier Windows XP mit Hilfe von Ausführen / msconfig im benutzerdefinierten Modus erneut gestartet werden - ohne APSDaemon, Avira und Skype zu laden!
    Die Fehlermeldung unterblieb, die Reparatur schritt voran, meldete Erfolg und benannte eine wohl defekte Datenenbank unter C:\Documents and Settings\MyAccountName\My Documents\My Music\iTunes um in:
    iTunesLibrary (Damaged).itl

  • When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Roxio Easy Media Centre "the certificate file is missing"

    Having purchased a new Curve 8320 I installed the Desktop Software.  Everything OK until I tried to open the media file application.  Received message - Roxio Easy Media Centre "the certificate file is missing or has been corrupted please reinstall it".  I have been on line and remooved the program as directed.  I have done the HotKey "shuffle!"  I have disabled my Trend security and reinstalled.  Still not worked.  I have downloaded another program and repeated the above.  Still not worked!!  Getting very frustrated.  I am using Windows Vista Home premium with Service Pack 1.  The Desktop Software is (I think) 4.2.2.
    I would be obliged for any help.

    what is your question ?
    do you want to use the Desktop Manager ?
    do you want to use the Media Manager ? And what for ?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Windows 8.1 - T530 - Base Device Driver missing!

    Hi guys,
    Been working to solve this base device driver missing in my T530 image since couple of hours now. I've searched a lot and seen many threads talking about this problem. Tried every solution I ran into but nothing worked so far.
    PCI\VEN_1180&DEV_E822
    Form what I know, this should be a Ricoh Media Card Reader driver. I think I tried like 10 drivers from Windows 7, Windows 8, Windows 8.1, 32 bits and 64 bits and nothing worked so far. Tried Smart Card reader driver too.
    All Windows Update are installed at the moment.
    Any clue to help me?
    Best regards
    Solved!
    Go to Solution.

    I don't know what is the Have Disk...!
    Yesterday... we managed to install the driver using the Ricoh Media Card Reader Driver for Windows 8.1 (32-bit, 64-bit) 25 mars 2014. I could swear I had tried them all... So I took the extracted files and added them to the imaging thingy and it doesn't work anymore!
    I did Windows Update on the T530. I did try to manually and auto install using the same driver but it won't work anymore
    Any clue?

  • Error msg iTunes cannot run files are missing - reinstall itunes

    I keep getting a message when i try to open iTunes 9 telling me to re-install. When I do, large portions of my music files are missing from iTunes on laptop. They are on my iPhone 3G, because I synced them from iTunes before it crashed. How do I get them to sync back into iTunes from the iPhone?

    Have a look at this article in the Apple Knowledge Base and let us know if it brings you any combination of joy and/or satisfaction.

  • After trying to install the new update, I am getting a message from Windows saying that an MC file is missing, reintall Itunes-which I have now done 3 times. How do I fix this?

    I received the new update from Itunes and after installing, I couldnt get into my Itunes.  I get a message from Windows saying that an MC file is missing and  to reinstall I tunes.  I have reinstalled 3 times, the first time I didn't remove the old version, I installed the update over it.  Next I tried the repair function under Control Panel.  After that, I uninstalled Itunes and reinstalled again from the website.  I still get the same message about missing files from Windows.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I can't update Fiefox since update 10.o1 or 10.02. Every time I try to I get the same message, "7 - ZIP File is missing" I don't know how or where to correct this problem. I'd really appreciate any help that corrects this problem. Thanks sovery much,

    Missing "7-Zip File"
    Hello,
    I haven't been able to update Firefox since 10.01 or 10.02 because every time I try I get the same message the "7-ZIP File" is missing. Then the update fails. I've submitted this problem to Mozilla Firefox and, got an immediate reply of " they are researching your problem".
    Well, you can tell how long that has been. Is there anything I can do, or any where I can go to get the file I need?
    Any constructive help would be very much appreciated! I'm not sure If I'll ever be able to find where this is located. But I do appreciate help just the same.

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Disable your anti-virus software temporarily to see if that makes installing work.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 11.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data because all profile folders will be removed.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Index xml file is missing ... does that mean I have lost all my work? HELP!!!!!!!!!

    index file is missing What does that mean?

    You might want to elaborate on exactly what it is you're talking about.

  • ITunes wont open. when I click on it, it says " iTunes can not run because of the required files are missing. please reinstall iTunes.

    iTunes wont open. When I click on it, it says " iTunes cannot run because some of its required files are missing. please reinstall iTunes". PLEASE HELP!

    See the advice given in the user tip:Troubleshooting issues with iTunes for Windows updates for a very workable approach.

  • I saved docs from a iMac to a flashdrive but when I plug the flashdrive into an iBookG4 and try to open the docs on the flashdrive, I get this message: Doc 2 cannot be opened. The required index.xml file is missing.

    I saved docs from a iMac to a flashdrive but when I plug the flashdrive into an iBookG4 and try to open the docs on the flashdrive, I get this message: Doc 2 cannot be opened. The required index.xml file is missing. Does this mean that I can't use the info on the flashdrive with the iBookG4 or can I do something to get the required index.xml file?
    Thanks
    jt

    It appears if you write the document with newer version Pages and try to open it older version Pages.

  • I can't open a file on Pages'09 4.1    I get  window that says "The required index.xml file is missing."  How do I get this file open?

    I have a file that I havel been adding to for years. I opened it a week ago but today I tried and I got the window message
    "the required index.xml file is missing"  How do I get this to open?
    I have Pages '09  4.1  Not sure when that was put on or updated.
    Thanks for any help you can give
    Teacher72

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=308&mforum=iworktips ntrick
    Are you sure you haven't upgraded Pages on your Mac to Pages 5?
    Check your Applications folder and the Applications/iWork folder. You may have 2 versions on your Mac.
    Peter

  • Tried to delete an FM book, but won't delete; however files are missing

    I'm using RH7 in TCS1 in Windows Explorer.
    I imported FM book files by reference into my project. I had forgotten to check abook file prior to import and didn't notice that the book file did not have the necessary graphics.  So I fixed the file, then tried to update the book file in RH7.  The graphics did not import into RH, so I thought I would start over from scratch and delete the book file in RH.  It will not delete and causes RH to crash.  The delete option is available, but it doesn't delete them.
    So I went into Windows Explorer and deleted the files from there.  Then I get a message that says files are missing, and that I need to delete them from Project Manager which is what I was trying to do in the first place.
    Can someone please help me delete these files?

    Just an update to this posting.  I did not have the latest RoboHelp patches installed.  For some reason, RH wouldn't let me install
    them.  So I had to have a complete uninstall of RH, then reinstall it.  Once I did
    that I installed all of the patches and my book files were deleted.
    Case closed

Maybe you are looking for