Error running an excel xlsm file version office 2010

Microsoft Visual Basic for Applications
Compile error in hidden module MainControl
this error commonly occurs when code  is incompatible with the version platform or architecture of this application
The excel macro file was runnuning in windows vista with office 2003, but not now in windows 7 64 bits with office 2010 profesional plus 2010.
thanks

Bonsoir Enrique,
If the code is hidden it has been made so by someone. Do you know this person?
Is this commercial software? Can you upgrade?
As you understand, I cannot know all facts but I have given you a few hints how to solve this ...
Best regards George

Similar Messages

  • Opening an Excel 2003 file in Office 2010 Universal Data Connection error when opening the file from a domain.

    Hi.
    One of my users are having  problem with old accounting files in Excel 2003 when opening Excel 2010.
    The user experience that linked information is not being updated properly.
    And suspects that it something do with Universal Data Connection .
    How can an Excel 2003 spread sheet be converted to Excel 2010 spread sheet and still contain active links?
    When the user is opening and converting the file as mention in your suggestion, on the common share on a common domain, the links "breaks".
    we are not using SharePoint on our domain.
    But when doing it on a local machine, the links does not "breaks".
    Looking forward to get solved to this problem.
    Thank you in advance.
    Rgds

    it sounds link, the links changed from relative paths to absolute path. You need to use absolute path in original file.
    KR

  • Unable to add PST file in office 2010

    Hello - -
    I cannot add the PST outlook file in my outlook 2010, probably for 2-3 months now....I researched the web and found the link describing exactly my issues-----
    I followed exactly what they said in the discussions - - apply "fix it" tool....theirs issues resolved in the end.  Mine still didn't.   Anybody knew how to fix this issue?  Help will be much appreciated - - PLEASE HELP!!
    Here was the message posted in the link:
    When I try to add a PST file into Outlook 2010 I get this error message: "an unknown error occurred, error code: 0x8007002". I've tried repairing and re-installing the Office suite but
    no luck. 
    When I click "Add" under "Data Files" tab on "Account Settings" window I get this error message.  I've also tried opening the PST files from "File"
    -> "Open" -> "Ope Outlook Data files (PST)" and I got a different error as below.
    "Cannot find this file. verify the path and file name are correct."
    There is no problem with the PST files as I get these errors as soon as I click the "Add" button.
    Any suggestions would be appreciated!!
    Another message: "An unknown error occurred,
    error code: 0x80070002

    Hi
    As per the information and details provided by you, to add a PST file in Office 2010, please follow these steps: -
    Are you trying move this file to
    some directory in your profile? May be you using some protected path.
    And also check this file
    Properties/Security/Full Control = Allow – If you have not, then set it using admin rights.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

  • Issue with Excel .xlsm file

    I wrote a program in Excel using VBA and embedding controls such as Spin Buttons and ComboBox, etc. The file was saved with extension .xlsm. I use Windows 7 Professional 64-bit OS in a virtual machine under Mac OS. The Office version is Office 2010 but it
    uses 32-bit code [Version: 14.0.6129.5000 (32-bit)]. The program runs the way I want both on my Desktop and on my Laptop (both Windows running as Virtual Machines).  I have sent this program to three of my colleagues who use stand-alone PC with Windows
    OS. When they try to open the file, it throws a "Run-time Error '438' - Object doesn't support this property or method. When one goes to debug, the VBA is stuck inside the Workbook_Open () code on a line
         Worksheets("Mission").sbLN2Eff.visible = False
    The spin button sbLN2Eff is visible in the worksheet, but it is not working for my colleagues. The object associated with the SpinButton seems to be missing for them. What is going on here?  I alone seem to have the ability to run the program while
    all others are unable to run the program. One would think that the Office or Excel settings in my computer are somehow different than that of my colleagues. Has anyone encountered similar problems?

    See https://support.microsoft.com/kb/3025036/en-us for a possible cause and a fix.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Unable to open excel file in office 2010 client.

    Greetings All,
    User is unable to opne excel file from a document libraryof sharepoint online. In advance settings of the document library I set files to be opened by Office client application. Because there was an issue to open the files in browser. So I decided to open
    the files in client application. I changed the settings in advacend settings in the document library so that user can open the files in client applicationtill users are facing issue. Below is the screen shot.
    user is having office 2010 and IE11 installed in his computer. Could you please help me how to get rid of this empty login screen?
    Kind Regards,
    Supriyo Manna

    Pagi Supriyo,
    Tools>Internet Options>Security tab, click "reset all zones to default"
    Trusted Sites Icon>Sites button...
    Does the user have your sharepoint site listed there? Do you use Group Policy to map it to the Trusted Sites list? Do you have
    http://microsoft.com listed(server versions of windows do)?
    MS Online services (or any https site) will work just as well if they are mapped to the internet zone.. try removing them from the Trusted Sites list.. There are IE security zone settings preventing navigation into a zone of lower integrity....
    If you require the site to be in your Trusted Sites list, then you need to add the following entries...
    *.Microsoft.com
    *.live.com
    *.outlook.com
    *.Microsoftonline.com
    (the * notation includes all subdomains)...so that all the services from msonline are in the same security zone.
    You may get better answers from a sharepoint support forum.
    Regards.
    Rob^_^

  • CAN AN EXCEL XLSM FILE READ FROM A CSV AND WRITE BACK TO THE SAME XLSM -VBA

    Hey Carlos- Here's the repost. 
    Could an XLSM file read a line from a CSV file in "A1" and depending on what was in the first column in the XLSM, search the CSV file and find the indexed item in the second column or third? I've done it before with standard VLookup functions and it was cumbersome and very slow, and for some reason, everytime I would save the file it would take forever although the xls file was a single sheet.
    i've attacthed a sketch of what I'm talking about, because it's hard to explain and I think the sketch explains it better. Here it is, sorry if it is blurry, it looked fine before I posted:

    ok, use this version, I changed it a bit. To accommodate the issue with the single cell, I moved the main procedures to a function for a more efficient use.
    Sub xlsmCsvLookup()
        'have both your xlsm and your csv files open
        'in the xlsm file, select a range of cells to look up
        'run the script to search all selected cells and get the values from the csv file
        Dim csvDataRange As Range 'csv file data column
        Dim selRange As Range 'to hold selected cells
        Dim foundRange As Range
        'get the source range
        Set csvDataRange = Workbooks("Book2.csv").Sheets(1).Range("a:a") ' replace "Book2" with yourCSVfile.csv
        'check for selection, only one cell, ceck that cell and exit, otherwise loop thru selection
        If Selection.Count > 1 Then
            'loop thru all selected cells, ignore empty cells
            For Each selRange In Selection.SpecialCells(xlCellTypeConstants)
                findSelection selRange, csvDataRange
            Next
        Else
            findSelection ActiveCell, csvDataRange
        End If
        Set foundRange = Nothing
        Set selRange = Nothing
        Set csvDataRange = Nothing
    End Sub
    Function findSelection(selRange, csvDataRange)
            'try to find it in the csv file
            Set foundRange = csvDataRange.Find(selRange) 'if found, assign it to foundRange
            'if no match highligh cut
            If foundRange Is Nothing Then
                selRange.Interior.ColorIndex = 34
            Else
                'if found, get the value in next cell
                selRange.Offset(0, 1) = foundRange.Offset(0, 1)
            End If
    End Function

  • How can i run an excel(PC) file with macros on numbers

    I am new to mac OS. I am trying to run an excel file that was created for windows and has macros on either numbers or or ms excel for MAC and it does not work. Help?

    You cannot.  You shold purchase MSExcel for Mac (after you confirm that is also runs macros, there was a period of time where it didn't so I am not sure).
    Numbers will not run macros and it the wrong tool for your case.  It is possible to create similar behavior if you are willing to port the Excel macros to Applescript.

  • Running Microsoft Script Editor after installing Office 2010

    As per this link:
    http://office.microsoft.com/en-us/excel-help/use-office-excel-2010-with-earlier-versions-of-excel-HA010342994.aspx
    Microsoft Script Editor is installed along with Office 2010, even though it cannot be accessed from the UI. However, I cannot find it. I've looked in the installation folder, and in Program Files\Common Files for MSE7.EXE, and could not find it.
    Previously, when I encountered a Javascript error, I would get a window prompting me to choose a debugger. Now I get a window saying no debuggers are found.
    I would use IE8's built-in developer tools, but that doesn't help when debugging an HTA or under WSH.
    I am using Office 2010 Professional Plus on Windows XP SP3.

    Microsoft Script Editor (MSE) seems has been removed from Office 2007 and Office 2010.
    That means MSE will not install when you have installed office 2010.
    Microsoft Script Editor (MSE) has been removed from Office 2010 from what I can tell; however, it is still installed in Office 2007. There isn't a default botton configurationm to bring it up like in Office 2003. If you want to access it make sure it is installed
    with the installation of Office 2007 and make a shortcut going to "%programfiles%\Common Files\Microsoft Shared\OFFICE12\MSE7.EXE". If anyone finds where it is in office 2010 please let me know or has a definitive "no it is not a feature."
    Thanks.

  • Unknow error occured while Updating Mpp file to sharepoint 2010 list

    Hi , 
    Any body can help me here whenever i am syncing any mpp file to sharepoint 2010 list  i am getting error that 
    "Please check SharePoint  site is running or not "
    Thanks
    Abhishek 
    Abhishek Tiwari

    1- once you are done with creating MPP file save as .MPP file Type in all files and store in the same site where you would like to view/see.
    3- create new project task.
    4- now open the file and start syncing give the site name only  there you will get a drop of your project task in second column which you just created.
    5- validate and start syncing .
    NOTE :- whenever you are making any modification in file make sure that you haacve saved the file  by slecting as .MPP  in all file & stored in the same site .  
    Abhishek Tiwari

  • Cant print from Word/Excel/Outlook to Onenote (Office 2010)

    Have a weird problem. The problem started quite resently....for a lot of users in our domain!
    As the title says I cant print from word/outlook/... to onenote.....the only thing i can print from is IE10 to onenote (all other printers work ofc pdf/physical and so on). But if someone has IE8 I doesn't work for them either...
    I have the printer under "printers and fax" so its not "gone"....I have tried to repair Office 2010+reboot with no success. AND i have the XPS document Writer present/working aswell.
    When i try to print i can see the "printing-icon" in the lower wright corner, so something is obviously "happening"....but if i put my marker there it only says "0 printing jobs for %username%"....and yes i'm currently sitting
    in a domain, i'm admin at my computer to(Windows 7 Enterprise).
    I'v tried almost everything i could find i terms of repairing and checking the HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Ski&cka till OneNote registry key (but that's for IE...and that's working correctly).
    Now here's the fun part....if i run winword.exe as administrator (rightclick+Run as administrator) it works!
    But that's not a solid workaround....
    Anyone knows how to fix this?  And as i'v explained...tried to repair several times....restarted services....check so XPS function is enabled and so on and so on...
    //Regards Andreas

    Hi,
    According to your description, I selected the situations which your said above.
    1. A lot of Domain account could print from is IE10 to Onenote, but IE 8 not.
    2.When Domain account print to Onenote, but it hanged.
    3. Word works well if runned as administrator.
    From above, I think the printer setting was Ok, beacuse you could print something by using Onenote to physical printer.
    As far as I know, OneNote stores a raster and a vector format for the printout images. It will first load the raster image (quicker to load) then quickly switch to vector image (hi res/sharper). The image you see for a split second is the raster
    image and then vector format fails to render. I believe you did not lose any data, just that it fails to render due to a configuration issue.
    OneNote uses .NET to render the vector format and I have seen cases where the installed .NET version or not installed .NET updates would be a problem. I recommend you first make sure you have
    Win7 SP1 and Office and .NET updates that show up in Windows Update are all installed and retry after that.
    And then,please check the link:http://www.onenote-tips.com/printfails.html, it may be help for you.
    If the issue exists, Please use process monitor to selcet the log when the issue occurs.
    Regards,
    George Zhao
    TechNet Community Support

  • Export to Microsoft Excel opens empty - IE11, Office 2010, Win 7

    Hi,
    I am using IE11, Office 2010 and Win7 64bit. When I open IE, navigate to a webpage and click "Export to Microsoft Excel" from the context menu of IE, Excel opens and the "New Web Query" dialog has an empty address (http:///). The content
    is
    "This page can`t be displayed"
    Does anyone know what might be the cause of this problem and how can I fix it?
    Best Regards,
    Jordan

    Hi,
    Please include a link to any webpage you are having issues with your questions so we can test the page....:
    Any webpage ... it is not webpage specific rather an environmental problem.
    javascript:alert(navigator.platform); :
    Message from webpage
    Win32
    OK   
    Open Excel, switch to DATA, choose From Web , then try to import the website for test if it had same problem.:
    It works unsurprisingly ...
    When I open IE I can see in the Windows Task Manager there are 2 processes - a 64bit (~8MB RAM) and a 32bit one (~70 MB RAM)
    My Office 2010 is a 32bit.
    If I open it directly a 32bit excel process is stared.
    If I open it via the "Export to Microsoft Excel" menu two 32bit excel processes are started. I believe one is for the New Web Query and another one for the Excel itself ..
    Best Regards,
    Jordan

  • Problem repairing excel file in office 2010

    Hello,
    I have a problem with one of my excel file, I was working on file in excel and computer suddenly restarted due to electricity fluctuation. After computer restarted, I try to open the file but it gives error. 
    "Excel cannot open the file 'myfile.xlsx' because the file format or file extension in not valid. Verify that the file has not been corrupted and that the file extension matches the format of file."
    I try to repair the file using repair tool of Excel 2010 but it is useless.  I also tried different software to recover corrupted excel file but all useless.
    Does anyone has solution to make my file useful.
    Regards,
    Syed Muhammad Ali

    Hi,
    In Windows 7,
    Right-click on the workbook and then select Properties. Select and restore the file under Previous Versions tab.
    Best regards,
    Rex Zhang
    TechNet Community Support

  • Error when posting Excel Journal file.

    My Journal file checks in correctly, but I receve this error when I post.
    Unable to copy archive File
    to ArchiveID: 29740
    I have checked the archive table and this line item exists. Also, if I continue with validation and export, everything works correctly. Does anyone know why I get this error message?

    Yes, This error is displaying for syntax in the multiload script. Any Idea's
    ERROR: Code............ -2147217900 Description..... Incorrect syntax near the keyword 'Where'.Update tDataSeg19 Set Account = 'JV' + Account, Entity = 'JV' + Entity, ICP = 'JV' + ICP, Where JournalID = '07880ICP' and PeriodKey = '5/31/2010' and CatKey = 34 and PartitionKey = 814; Procedure....... clsDataManipulation.fExecuteDML Component....... upsWDataWindowDM Version......... 810 Thread.......... 2668

  • Opening xlsm files created in 2010, not supported in 2013

    When opening an Excel 2010 document ending in xlsm in Excel 2013, there are columns missing. Something is happening to the macros. I'm not sure what to do and I'm getting the run-around from Microsoft direct, nobody can help. I cannot believe that I'm
    the only person that's had this error.

    This forum is for Microsoft Project related questions. I'd recommend posting the same question in a more appropriate Excel forum.
    Andrew Lavinsky [MVP] Blog: http://azlav.umtblog.com Twitter: @alavinsky

  • Missing PDFMaker-files - Acrobat 7.0 / Office 2010

    Hi,
    I have a problem to create PDF files from Office documents.
    Acrobat Professional 7.1.0
    Microsoft Office Professional 2010
    I get the error message "missing PDFMaker files".
    Office 2010 is a new installation. With my old Office 2003 I had no problems.
    I tried to activate/deactivate the Office Add-ins and change the security options.
    I tried to register the PDFMOfficeAddin.dll in my system32 folder (I can't register the other DLLs).
    I tried to contact the telephone support, but my version is too old.
    Does anyone know what I can do? Or do I need an update?
    Thanks!

    I had this problem on a Vista PC.
    I only required Excel to work. but im sure its a similar process for Word etc.
    I was still able to make PDF's with the 'Adobe PDF' printer function.
    Click File
    Click Options
    Click Add-Ins
    Select 'Acrobat PDF Maker Office .COM Addin'
    From the Dropbox at the bottom select "Excel Addins"
    - Click Go
    - UN-SELECT Any Acrobat or PDFMaker listing
    From the Dropbox at the bottom select "COM Addins"
    - Click Go
    - Check the box "Acrobat PDFMaker Office COM Addin" IS selected
    - If NOT.. Click Add and browse to
    "C:\Program Files (x86)\Adobe\Acrobat 10.0\PDFMaker\Office\PDFMOfficeAddin.dll"
    - If your version is NOT 10.0 it will be a different folder ie 7.0 8.0 etc
    From the Dropbox at the bottom select "Disabled Items"
    - Click Go
    - Make sure PDFMaker is NOT disabled
    This fix may seem trivial however i spent a long time working on this problem.
    I tried different versions
    I manually removed Acrobat http://kb2.adobe.com/cps/400/kb400658.html
    I updated Office
    I played with Macro security settings in Office
    I tried different PDF settings in Distiller
    All of this did nothing.
    Remove it from the Excel Add-in
    Leave it in the COM Add-in
    I had no problems with Windows 7. Just Vista
    I hope this works for someone else too.

Maybe you are looking for

  • I need help writing a dive scoring program in C#, Help Please?

    The state diving commission wants to computerize the scoring at its diving competitions. I have to write a program to automate the scoring of dives. Requirements: After each dive, the user will be prompted to enter the: diver's name;                 

  • EBS 12.1.3: a few questions about cloning

    Hi, We have EBS 12.1.3 on AIX 7.1. A few questions about cloning from shared application tier environment to non-shared application tier environment. We have been following "Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]" Sourc

  • Embedded flash slideshow link does not open

    Hi, I have a problem that my slideshow works great when not embedded, I can click the pictures and the link opens in the same window just like I want. However, when I embed the slideshow the links do not work. I attach my embed code. Thanks for your

  • Itunes match, itunes radio and playlists...HELP!

    okay. so i turn on itunes match on my phone so I dont listen to ads while listening to itunes radio. when i do that and connect it to my computer via usb, i cannot sync any smart playlists to my phone. they are all icloud available but i cant find th

  • Voucher Number with Forms Personalization

    I am trying to use forms personalization to accomplish the following: We've enabled vouchering in Payables and now each invoice, when saved, is assigned a voucher number. (INV_SUM_FOLDER.VOUCHER_NUM_DISPLAY). When you click the attachments icon, we w