Access 2010 Runtime / ACCDE Bug

I have just wasted a day chasing a very silly BUG!
If you install Access2010 Runtime and then try to run an ACCDE database that has a macro that uses Runcode the macro fails!
Verified on 2 different Win XP machines;
An almost blank database with a single macro using RunCode to call a very simple function with just a msgbox function in it results in the error;
"The Expression you entered has a function that Microsoft Access can't find."
The Cure:
Download and install runtime SP1 from http://www.microsoft.com/en-us/download/details.aspx?id=26601
Note that Windows Update does not show or offer this update!
Brian, ProcessIT- Hawke's Bay, New Zealand

The simple and basic issue here is that WHEN you deploy compiled applications, you want to match up the version.
If your dev machine has a SP update, then you need to ensure that the target computers also have that update.
This issue does not occur when you use an accDB since the source code is included, and thus an “automatic” re-compile of the code can occur (even with runtime, such an automatic re-compile of code can occur). Thus the binary resulting machine code matches
the version of Access build. (and when I say version - different SP levels are different versions).
So the symptom pointed out here ONLY occurs when source code is not available, and the binary parts are pre-compiled like they are in a accde.
For Access 2013 runtime, the SP updates are included. For the Access 2010 runtime, the sp updates are NOT included. And installing the office SP update will NOT update the 2010 runtime.
Nor will windows update update 2010 runtime. So install of the SP update to Access runtime has to be downloaded and installed. Or the SP update can be “included” in your copy of the 2010 runtime.
In most cases, NOT having windows update or NOT having someone come along and install office SP not touching the runtime is a “preferred” setup since then windows update, or other things will not update Access runtime and NOT mess things up. So near everything
leaves the 2010 runtime alone as it should.
And while I seen problems like this back in Access 2003 (by trying to run a compiled applications with 2000), the simple lesson here is that compiled applications while often preferable do require more caution and effort to match up the edition of the version
of Access the user is running to the SAME edition that will compile + develop the application.
This is thus mostly due to the simple fact that when souce code is removed from the application, then you cannot re-compile the code to a different binary version of Access.
Regards,
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

Similar Messages

  • Access 2010 Runtime and Custom Ribbons

    I use access runtime extensively.  Most of my clients have one off databases, do not have Access installed and I must rely on Access Runtime.  So I am currently working through the conversion of databases built in Access 97, 98, ... 2003 to Access
    2010.  I (and my clients like the new ribbon UI).  I had great hopes that the new ribbon editor in Access 2010 would make my task straight forward.  Uncheck the check boxes for the ribbons I don't want the user to see, build a ACCDE/R file and
    then would be good to go...But Alas, runtime does not show the custom ribbon built in the full version... so back to the xml.  But this time with some help with building the XML file (intended or not ??).
    I wanted to duplicate the "Print Preview" and "Home" ribbons in Runtime.
    1. Used the custom ribbon tools in Access 2010 (full version), unchecked all ribbons except Print Preview.
    2. Exported the customizations
    3. Changed the extension to *.xml
    4. Opened in VS 2010. Made the required edits (e.g. visible="true", and a couple of changes at the top).
    5. Saved the file
    6. Copied the xml into the USysRibbons table
    7. Selected the new ribbon in the box provided...
    8. Now I have the UI I want.. (XML Code attached)
    <mso:customUI xmlns:mso="http://schemas.microsoft.com/office/2009/07/customui">
    <mso:ribbon startFromScratch="false">
    <mso:tabs>
    <mso:tab idQ="mso:TabPrintPreviewAccess" visible="true"/>
    <mso:tab idQ="mso:TabHomeAccess" visible="true">
    <mso:group idQ="mso:GroupViews" visible="true"/>
    <mso:group idQ="mso:GroupTextFormatting" visible="true"/>
    </mso:tab><mso:tab idQ="mso:TabCreate" visible="true"/>
    <mso:tab idQ="mso:TabExternalData" visible="true"/>
    <mso:tab idQ="mso:TabDatabaseTools" visible="true"/>
    <mso:tab idQ="mso:TabSourceControl" visible="true"/>
    <mso:tab idQ="mso:TabAddIns" visible="true"/>
    <mso:tab id="mso_c1.3B5D035D" label="Print Preview">
    <mso:group idQ="mso:GroupPrintPreviewPrintAccess"/>
    <mso:group idQ="mso:GroupPageSize"/>
    <mso:group idQ="mso:GroupPageLayoutAccess"/>
    <mso:group idQ="mso:GroupZoom"/>
    <mso:group idQ="mso:GroupPrintPreviewData"/>
    <mso:group idQ="mso:GroupPrintPreviewClosePreview"/>
    </mso:tab>
    <mso:tab id="mso_c2.3B5D1FAF" label="Home">
    <mso:group idQ="mso:GroupClipboard"/>
    <mso:group idQ="mso:GroupSortAndFilter"/>
    <mso:group idQ="mso:GroupRecords"/>
    <mso:group idQ="mso:GroupFindAccess"/>
    <mso:group idQ="mso:GroupWindowAccess"/>
    </mso:tab>
    </mso:tabs>
    </mso:ribbon>
    </mso:customUI>
    If anyone knows a more direct "proper" way to get there, please chime in...
    I am not saying this is a good way to accomplish the task. However, it appears to work.
    Ed Warren Raising sails on masts not masts on sails

    First of all thanks for sharing that solution with us, I think it's kind of creative and quite cool on your part.
    I suppose quite a few of us had some high hopes that the new built in ribbon customize was going to be a developer's tool for building new ribbons. 
    As you are demonstrating here, the built in customization system is really more of a end users tool.
    I am quite comfortable stating that this tool is not really developers tool for building ribbons from scratch.
    However the procedure you've outlined hints that it would not take an access developer a lot of VBA to "cook up" some VBA code that allows one to "shuffle"
    the ribbon customization in and out of the USYSRibbons to a file. This would presumably allow one to kind of cobble together a system that would let one pretty much build ribbons with the customizer.  
    We could even add a new ribbon button to allow this. I think having this setup to push + pull ribbons in and out of the USYSRibbons table would work well
    indded, and it based much on what you showen above.
    However, I going to share my suggestion and approach anyway.
    Just like the query builder for SQL, as a general rule for years I hardly ever look at the SQL code in the SQL view. In fact still even to this day as a general
    rule I build my queries using the query builder.  And, my view of this process is much the same for the ribbon. Why bother to look at SQL or in this case xml?
    So, right from square one just like you (and I) lamented the fact that prior to access 2007 I could build custom menus using the built in tools and not have
    to resort to code or reading something to creating those menus.
    However at the end of the day, all as I did was take a good part of a day off, and build a couple ribbons that I need. At that point, for the next year
    or so all I did was raid those ribbons and use cut and paste to pull that xml to create additional buttons. In fact I've been doing this for so long now, I've actually forgotten pretty much how the original xml even works!
     I don't read nor care about the xml very much at all.
    In a nutshell what I'm saying is, it's really not that big of a deal to build a few ribbons and then just cut + copy them over and over again. In fact I
    actually find this new system significantly superior to the old systems of access menu bar buttons. The problem in the old menu system I could NOT go to three or four previous existing applications and go on an Easter egg hunting raiding party and pull out
    a "few" buttons here and there. (The import option is all or nothing, and it not a clean process at all).
    With xml, it is simple matter to simply just cut and paste these "parts" them into ONE new ribbon. The key concept here is "parts". In other
    words once you get a system in place and get used to doing this, you really never want to go back to using a user interface to build each ribbon up from scratch, or even anything like the old system which while did the job for me for years, but was hard to
    use.
    So, I learned and found that this development paradigm of using cut and paste and pulling out stuff you need from a base set of ribbons that you have is
    really good. In fact, I find it far better then using a graphical interface for building those ribbons.
    At the end of the day, there has to be a significant gain that makes the pain worthwhile. So I used access for more then 10 years, and I STILL don't write the
    SQL by hand. I would never suggest that you start writing SQL by hand because you can cut and paste the SQL? The whole development model of suggesting to cut+paste SQL really doesn't help, and as a general rule I still suggest one would use the query builder
    for building that SQL.
    However in the case of building ribbons, I found the exact opposite and reverse here. So I do think it's worth the while to adopt a cut+paste development
    model. And I think it's a superior development approach that with great ease allows one to pull JUST ONE button, or part out of a existing ribbon, and you can do it far faster then what I good UI would allow.
    Your mileage may vary on the above, but I'm just suggesting that the above approach works well for me, and this is coming from a person that refuses to write
    SQL code by hand .
    By the way if you are looking for something to help you with menu bar mightation that allows enable and disabled buttons (or hide buttons) on a ribbon,
    I have a little ribbon class that I've put together here that allows one to use the old style menu bar syntax to accomplish these things.
     You can find that code here:
    Albert's Tame the Office Ribbon Class for Access
    http://www.kallal.ca/Ribbon/ribbon.htm 
    Albert D. Kallal 
    (Access MVP)
    Edmonton, Alberta Canada

  • Install Access 2010 Full and Runtime together on one machine?

    Hi,
    a client at my company has many access database projects. They run mostly fine with Access Runtime. We provide the Apps with a Server 2008 R2 via Terminal Services as RemoteApp. Is there a way to install the Full Access Version parallel to the Runtime? So
    if i publish a RemoteApp i just can choose between the two paths for Runtime or Full and provide the AccessApp either with one of both?
    AFAIK if i install the full Version of Access 2010, it overwrites the Runtime and uses the same paths as the Runtime used before (something like C:\Program Files (x86)\Microsoft Office\Office14\MSACCESS.exe)
    Thanks in advance for your hints,
    Rolf

    Hi,
    Yes, of course you could install the Access 2010 and Access Runtime 2010 in the same machine.As you know the Access Runtime 2010's detail imformation, you could choose to distribute those Access 2010 solutions so that they run without requiring
    a full installation.
    And the Access 2010 full version is also included in Office 2010, you could choose only install the Access 2010 and change the install path by using OCT.
    Regards,
    George Zhao
    TechNet Community Support

  • How to deploy a Desktop Access 2010 app via Azure and RemoteApp?

    I currently sell an Access 2010 app that uses the 2010 Access Runtime for deployment on desktop PCs. I very much would like to make it available over the internet on PC/Mac/iPad using the Azure RemoteApp, if possible. The Access app has a number of supporting
    files- it’s not just an Access accdb or accde file. For it to work correctly all the supporting files need to be in folders related to the main accde/accdb fie. Those files are a few other accde files, csv, pdf, and some folders.
    Each of my clients (a company) may have 1-15 simultaneous users. On the Desktop Access version, I have a Front End accde installed on each workstation and a single Back End accdb data file installed on a shared drive. Each FE workstation is linked to the
    single BE data file. I would need to replicate this somehow on an Azure VM (like perhaps have a designated folder for the BE data file that each user account’s FE is linked to?).
    I created an Azure VM (server 2012 R2) and installed the Access Desktop App on it. I can access that full VM with RDP (and see the whole desktop, not just my Access app). What I’m trying to figure out is a way to do this with RemoteApp- can RemoteApp use
    my Access 2010 app as an available ‘app’ or does the user need to see the whole VM desktop? 
    As well, in my Azure portal the ‘RemoteApp’ option is grayed out ‘pending approval’ so I can’t test it. 
    Any help figuring this out would be great. Thanks- 

    N8827N
    I ended up a great solution for this. I'm using 3 Windows Server 2012 R2 VMs to run it as a RemoteApp program. It's set up sort of like this:
    VM 1: RD Broker
    VM 2: Active Directory (where Users/Groups are created)
    VM 3: AppServer (where the Access app is actually located and run on- the VM2/Active Directory 'talks' to the AppServer to create/validate users but all the action happens on VM3).
    RemoteApp requires Windows Server 2012 so I don't think it'll work with Server 2008. The great thing about RemoteApp is it opens the Access 2010 Front End in a unique window, all on its own. The user doesn't need to see the Desktop of the server- they just
    see the Access Navigation Form(s). 
    In brief, on the VM3/AppServer I have a  unique folder for the backend Access data file and a User Account (created in the VM2 Active Directory) for each user with the frontend Access file in C/Users/Username/AppData.
    RemoteApp- when the user logs in via the RemoteApp app- points to that specific user profile's frontend Access db in that location and opens it in its own window on their host computer. And since each FE is linked to a common BE data file everyone uses the
    same data, just like in a regular LAN Server FE/BE setup. 
    It required some changes in the Access app to deal with it- uploading images and files, emailing straight from the app, etc but it was worth it. I also had to pay a development company to set up the 2012 R2 Servers, as I didn't know the details of how to
    do that myself. But I'm managing the setup, ongoing, and it's not so hard to do.
    So now my customers can run the Access app on a PC, Mac, or iPad pretty much anywhere. Excellent way to extend an Access application.. 

  • Add-in for Access 2010/2013 with Visual Studio 2012 (2013 Preview)

    Hello!
    Am i right: Microsoft wants to kill Access in favor of Azure/SQL stuff?
    I was unable to find any Projects in Visual Studio 2012/2013 to create an Addon for Access 2010 or 2013 (only Word, Excel, Outlook).
    There is even no Microsoft.Office.Tools.Access.ApplicationFactory
    to install add-in to Access App.
    Any solutions for VS 2012?
    Or i should use outdated Shared Add-in with VS 2010?
    Thank you!

    Sorry Donald M from Microsoft,
    You need to rethink that response.  IDTExtensibility2 is an outdated Office 2003 technology. 
    Everything EXCEPT the ThisAddIn.designer.cs reference to ApplicationFactory _factory compiles when you switch references in another Office application's VSTO project template to msaccess and dao libraries.  Even the Access icon shows up in Visual
    Studio 2013.  The only reason a Ribbon.xml project will not load into Access is that Microsoft hasn't provided the Microsoft.Office.Tools.Access DLL for it.  If you leave the Factory reference pointing to global::Microsoft.Office.Tools.Factory,
    the add-in compiles but will not load.
    MICROSOFT: Please provide us the missing Factories for MSAccess and OneNote.
    Could not create an instance of startup object AccessRibbonAddin.ThisAddIn in assembly AccessRibbonAddin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=664b6483efff25e6.
    ************** Exception Text **************
    Microsoft.VisualStudio.Tools.Applications.Runtime.CannotCreateStartupObjectException: Could not create an instance of startup object AccessRibbonAddin.ThisAddIn in assembly AccessRibbonAddin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=664b6483efff25e6.
    at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.CreateEntryPoint(String entryPointTypeName)
    at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.Microsoft.VisualStudio.Tools.Office.Runtime.Interop.IExecuteCustomization2.LoadEntryPoints(IntPtr serviceProvider)
    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18052 built by: FX45RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
    Microsoft.VisualStudio.Tools.Office.Runtime
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Office.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Office.Runtime.dll
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18021 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18060 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18060 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Security
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18055 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Security/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Security.dll
    Microsoft.VisualStudio.Tools.Applications.Hosting
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Hosting/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Hosting.dll
    Microsoft.VisualStudio.Tools.Applications.Runtime
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Runtime.dll
    System.Deployment
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Deployment/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll
    Microsoft.VisualStudio.Tools.Applications.ServerDocument
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.ServerDocument/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.ServerDocument.dll
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18036 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18021 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
    Microsoft.Office.Tools
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.dll
    Microsoft.Office.Tools.Common.Implementation
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common.Implementation/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.Implementation.dll
    Microsoft.Office.Tools.Common
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.dll
    AccessRibbonAddin
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Source/Home/Access/bin/Debug/AccessRibbonAddin.DLL
    Microsoft.Office.Tools.Common.v4.0.Utilities
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.30319.1
    CodeBase: file:///C:/Source/Home/Access/bin/Debug/Microsoft.Office.Tools.Common.v4.0.Utilities.DLL

  • Windows 7 64 bit, Access 2010 32 bit, Oracle 10G client 32 bit, Oracle database 10.2.0.4 64 bit

    I am trying to connect to an Oracle 10.2.0.4 database from Windows 7 OS - 64 bit using
    Access 2010 32 bit and Oracle 32 bit client version 10.2.0.1 installed on PC.
    My user requires a 64 bit Windows 7 OS for other needs.
    Oracle ODBC driver is 32 bit from Oracle 32 bit client.
    In Windows 7 OS 64 bit, ODBC DSN setup software is located in:
    C:\Windows\system32\odbcad32.exe for 64 bit drivers - all DSN types setup and
    C:\Windows\syswow64\odbcad32.exe for 32 bit drivers - USER DSN setup
    When I run the ODBC Data Source Administrator, I see the Version number is 6.1.7601.17632
    I setup a User DSN using the 32 bit odbcad32.exe with a 32 bit ODBC driver.
    Our Oracle TNSnames.ora file has our standard entries which have worked for years
    (Windows 7 OS 32 bit and everything 32 bit has connected for years too)
    So when I configure an ODBC User DSN and leave all the default settings and press the TEST Connection button, it says it works.
    But when I open the existng Access 2010 database (which does connect to Oracle in a Windows 7 32 bit PC environment),
    1. I go to Access External Data ribbon tab / Link to the Data Source by creating a linked table / press OK
    2. I select the Machine Data source = to the USER DSN name / press OK
    3. The Oracle ODBC Driver Connect Window opens with Service Name = USER DSN and User Name and it wants a Password
    4. I enter the correct password and I get the following error message:
    ODBC call failed
    [Oracle][ODBC]{Ora]ORA-12154: TNS: could not resolve the connect identifier specified
    (#12154) [Microsoft][ODBC Driver manager] Driver's SQLSetConnectAttr failed IM006 0
             [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed (#0)
    I have tried a quite a number of fixes:
    I have gone into the PC registry and cleaned out most or all off the Oracle client keys and
    reinstalled the Oracle 32 bit 10g client. It didn't fix the error.
    I read about the Oracle instantclient-basic-win32-10.2.0.4.zip with ODBC modules but I have Windows 7 64 bit.
    Anyone experienced a problem like this and have a fix?

    Thank you for your reply.
    I did not get to try it because after I entered my question, I did a lot more internet Googling.
    I found this small comment:
    “There's a known issue where you get a 12154 error message running 32 bit software on a 64 bit OS using client 10201, and
    It should be resolved by patching the client to 10204, which you do by applying the 10204 database patch to it.”
    I searched around for the 10.2.0.4 patch for 10.2.0.1 Oracle 32 bit client.
    When I contacted my Oracle DBA to ask if he had that patch, he said that I should try the 11g 32 bit client on the Win 7 64 bit PC.
    We have a 10.2.0.4 Oracle database but he said the 11g client should work fine.
    I tried it and it solved the problem!
    With so many settings, configurations and permissions involved in ODBC, I am inclined to think that I missed a setting but
    it was a bug in the 32 bit client 10.2.0.1.
    Solved.

  • Access 2007 Runtime & Windows 8.1

    Has anyone had success installing Access 2007 Runtime on Windows 8.1? (This particular computer only has Office Home installed).
    When I attempted this, the Runtime program seemed to install okay (opened a copy of AccessRuntime.exe as Administrator) -- at least there were no error messages, but there was also no "installation completed" message at the end (should there
    have been?)-- the status bar completed to 100% and then the installation window closed.
    When I attempted to open either an mdb or accbd file by double-clicking the file, the 2007 Runtime installation window opened and upon completion of the installation followed by a window asking "How do you want to open this file?"
    A box was checked for "Use this app for all .mdb files" (or accbd files). You could either check or uncheck this line.
    Below that line was the icon for Access and "Keep using Microsoft Office Access". Clicking this option started the Runtime installation process again, then returning to this same window asking how I wanted to open the file.
    There was a third option -- "more apps". Navigating to Program Files / Microsoft Office / Office12 and selecting msaccess.exe returned me to the same loop -- Runtime installation and "How do you want to open this file?".
    Have I missed something in this process?
    (Edit: maybe I should have made sure I unchecked the option to "Use this app to open all .mdb files"
    before choosing "more apps" and then Office12/msaccess.exe?)
    -- I'm hoping this has nothing to do with it, but this was being done on a new Dell laptop, which happened to be sitting next to a Windows 7 desktop, which was on at the time and which does have the full version of Access 2007 installed. During the above
    process I noticed a lot of hard drive activity on the desktop computer. Coincidence? Related somehow to the laptop's wireless capabilities? arrgghh.
    Thanks for any help,
    Mark

    I doubt the desktop is connecting to the laptop. What I suspect is that the office version is not the same version as Access. This might cause what we developers call the coffee break install. Access 2007 and Office 2010 or later have conflicting DLLs so
    Access has to write to the registry every time it opens.
    Match the runtime version to the current Office version and I bet that problem goes away.
    Bill Mosca
    www.thatlldoit.com
    http://tech.groups.yahoo.com/group/MS_Access_Professionals

  • Access 2010 InfoPath Data Collection Export Fails Due to Date Format That Includes Time Zone

    I created an Access 2010 database that has multiple data collection (InfoPath) forms that were generated from Access and have been in use for about 1.5 years.  Starting in 2013 (for about a week now), the submitted data fails to Export due
    to a "data type conversion error" with the date fields.  Prior to 2013, the date string returned in the InfoPath form looked like this: "2013-01-07T00:00:00", but now it looks like this: "2013-01-07T00:00:00-05:00".  The time zone is appended
    to the string and it kills the Outlook Export feature.
    To test this, I created a new database with one table and one date time field.  I generated an InfoPath template and emailed it to myself.  I entered the date into the template and submitted it (tried manually entering the date as well as
    using the date time picker control - made no difference).  The InfoPath template now contains "2013-01-07T00:00:00-05:00" and will not Export from Outlook to Access.  I tried manually pasting the string into the Access table and it would take it,
    but would show "1/7/2013 5:00:00 AM" in the date time field (which isn't correct either but at least it took).  Note: This problem has appeared at my office (Win 7 with Office 2010), but my testing was done on my personal laptop using Win 8 with Office
    2010.
    It looks like Microsoft has created a bug and now all of my data collection forms are unusable.  Any help will be appreciated.

    Microsoft confirmed that the issue was introduced with MS12-066 as follows:
    ***Start Quote
    We have been able to identify that this issue was introduced with the change made for the hotfix detailed in KB 2687395. This update was included in the security update MS12-066 when you installed KB 2687417.
    2687395          Description of the InfoPath 2010 hotfix package (ipeditor-x-none.msp): August 28, 2012
    http://support.microsoft.com/kb/2687395/EN-US
    2687417           MS12-066: Description of the security update for InfoPath 2010 Service Pack 1: October 9, 2012
    http://support.microsoft.com/kb/2687417/EN-US
    Investigating workarounds I've only come up with using HTML forms or changing the datatype of the control to text.
    ***End Quote
    My own testing also indicates that if you are using InfoPath with SQL Server, you may be able to change the Date/Time picker control in InfoPath to a Date only picker control (if the SQL Server data
    type will support that).

  • MS Office Access 2010 - Copy to Oracle?

    Hi,
    Does the "Copy to Oracle" functionality in SQL*Dev 4 work for an Access 2010 database source?
    Thanks
    Joel

    Hi willjamu ,
    Do you mean right click "copy to Oracle"?
    Blob seems the only thing slightly unusual and I though that was handled.
    Can you make a complete test case - including table name so I can duplicate it and log a bug.
    Note there may be warnings/errors in the 'Logging Page' user interface area.
    -Turloch
    SQLDeveloper Team

  • Access 2002 Runtime detected as full version

    Hi
    We have recently noticed that ZAM is reporting "Access 2002 Runtime" as "Access 2002". These reports would obviously cause a Microsoft licencing issue.
    Can someone explain how ZAM incorrectly reports this. I have noticed that there are TallyProduct text files which have a string of numbers/letters associated to the software, but I haven't been able to find where this links to on the workstation - ie Windows registry etc.
    We are running ZAM 7.5 IR20, and the last PRU was 1/12/2009. I intend on upgrading to IR21 & April 2010 PRU to see if that fixes it, however considering it's an old product, I am assuming it may not fix it.
    Any info?
    thanks

    rts,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Unable to read data in Excel 2010/2013 from encrypted Access 2010/2013 database

    A customer has an Access database (.accdb), which was encrypted/given a database password in Access 2013. It should be possible to read that data from Excel 2010/2013, but when clicking on Data-->From Access
    and the correct path is put in and the correct database password has been entered, Excel just keeps prompting for the database password. This happens with both Excel 2010 and 2013.
    The database password supplied is correct as evidenced by opening the database in Access 2013 using the same database password.
    A colleague in a separate company has found that a separate .accdb file he has recently encrypted also has the same problem as above, yet a .accdb file encrypted ages ago
    is readable from Excel.
    How do I get Excel 2010/2013 to read the data from the encrypted .accdb file, please?

    Since Access 2010 the encryption algorithm has changed:
    Source
    Follow the next steps to apply an encryption method that will allow you to (programmatically) connect to the database:
    1. Decrypt the database
    2. Change the encryption method:
        - In Access Options select 'Client Settings'
        - Scroll down to section 'Advanced'
        - 'Encryption Method': select option 'Use legacy encryption (..'
        - Click 'OK'
    3. Encrypt the database
    Hope this helps.
    Emiel Nijhuis

  • MS Access 2010 and Oracle SQL Developer Version 4.0.3.16 Error

    OS: Windows 7 Enterprise
    System Type: 64-bit Operating System
    I can not get MS Access 2010 to work/open with SQL Developer version 4.0.3.16.
    ERROR when testing connection to MS Access 2010
    "Status : Failure -Test failed: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"
    I added the 32-bit ODBC data source for the MS Access I am trying to use with SQL Developer version 4.0.3.16 with the "C:\Windows\SysWOW64\odbcad32.exe" application, but I still get the same error.
    I appears that SQL Developer version 4.0.3.16.is looking at the 64-bit driver (ODBC Data Source) and I have no idea to direct SQL Developer version 4.0.3.16 to use the 32-bit driver (ODBC Data Source) when opening MS Access 2010.
    Thank you in advance for your advice.

    I downloaded the SQL Developer version 4.0.3.16 "sqldeveloper-4.0.3.16.84-x64.zip" that included the jre.
    How do I check which Java JDK I am running (32-bit versuns 64-bit)?
    In the command prompt I use "java -version" and I get this message "java is not recognized as an internal or external command"

  • MS Access 2010 and TFS problem when I try to "create form team foundaition"

    I am using MS Access 2010 and trying to use TFS for source control.
    I installed MSSCCI for 2010 and the "Access Developer Extensions"
    I am able to create a project in TFS and check in and check out access objects.
    My only problem is when I click on "Create from Team Foundation" it asks me to specify the server and when I click OK it gives me the following error message:
    "Cannot create a new Microsoft Access database from this source code control project. It contains neither a Data and Misc. objects file nor a database name file."
    I have tried different ways and could not get it to work.
    Thanks for your help

    Did you figure out a solution for this!>?
    I am having the same issue.  I can issue a GET and bring down all the objects (including the very files that it says it can't find) - then when "creating from team foundation" I get the same problem.
    https://social.msdn.microsoft.com/Forums/en-US/704a18d7-6687-49c2-8830-a24aa794303e/tfs-2013-with-access-20072010-cant-create-a-local-tfs-copy?forum=tfsgeneral

  • Adding data to multiple tables using one form in Access 2010?

    Hi All,
    I have a access database with two tables and I want to create a single form to enter data into that tables.
    How to adding data to multiple tables using one form in Access 2010?
    I don't have to much knowledge of access database?
    Please help me
    Thanks
    Balaji

    You really don't enter identical data into 2 tables.  You enter dat into one single table, and then you have an unique identifier that maps to another table (you have a unique relationship between two tables). 
    Maybe you need to read this.
    http://office.microsoft.com/en-001/access-help/database-design-basics-HA001224247.aspx
    Think about it this way...  What is you update data in 2 tables, and then the data in one of those tables changes, but the data in the other table does NOT change.  WHOOPS!!  Now, you've got a BIG problem.  For instance, you have a customer
    named Bill Gates.  In one Table you update Bill's address to 1835 73rd Ave NE, Medina, WA 98039 and in the other table you accidentally update Bill's address to 183 73rd Ave NE, Medina, WA 98039.  Now you have 2 addresses for Bill.  Why would
    you want that???  Which is right?  No one knows.  If you have one address, you just have to update one address and if there is a mistake, you just have to update one address, but you don't have to waste time trying to figure out which is right
    and which is wong...and then update the one that is wrong.
    Post back with specific questions.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • Insert into Microsoft access 2010 Database on sharepoint using OLEDB

    Hi,
    want to insert data into a microsoft access web db using oledb object. but the i am unable to open the database.
        dbLoc = "http://XXXX.com/project/design/Test_Web_DB
        Dim strConnection As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source= " & dbLoc
        Try
                con = New OleDb.OleDbConnection(strConnection)
                If con.State = ConnectionState.Closed Then con.Open()
        Catch ex As OleDbException
               MsgBox("OleDbException: Unable to Open DB")
        End Try
    it always go to the exception. is there any problem with the above code??

    Hey Bala,
    Browsing the link (as shown below) on the browser doesnt open the DB.
    http://XXXX.com/project/design/Test_Web_DB.accdb
    Instead, without ".accdb" works.
    my requirement is something like below, please recommend your suggestion
    1. i have a DB on access 2010, which gets updated on regular basis (currently db is on common location) by different VB.net application client my the network
    2. i want to create various reports out of the data and want them visible available on sharepoint.
    please help
    -Manash

Maybe you are looking for

  • How do I get my apps back after uninstall of Mtn Lion?

    After I uninstalled Mtn Lion my Migration asst won't recover certain applications from Time Mach  backup. Says apps on Time Mach drive are 'newer' unreadable versions. How do I recover? Apparently I should not have let the Lion anywhere near my white

  • HTML file in a table

    I am a photographer - I use lightroom to create html browsers for my clients. These files are posted in a the web with unique URLs. I have created seperate HTML file in Dreamweaver that contains indexes to these URLs for clients to scroll through. Wh

  • What is Error 1418 or 14118?

    My Ipod 30GB Video died on Weds. and it came back to life on Sunday. Ever since Sunday, I have been trying to rstore it!!! BUT Itunes says, that an error occurred and request can not be completed. The error # is 1418 or 14118? Good thing I saved the

  • [SOLVED] Hibernate works when using rmmod, but not SUSPEND_MODULES

    I've been having trouble hibernating (or suspending) an ASUS U36JC laptop. Running pm-suspend causes the computer to hang on a blank screen with an unblinking cursor. I have found that this is caused by two modules not suspending properly, ath9k and

  • Sharing Office 2011 on network

    I have three macs that need office 2011 and was wondering if i could buy the one that only has the one install and install it onto an external hard drive, then plug the external hard drive into my airport extreme, where everybody could access the sam