Microsoft Excel Capability to Open files .

Hello
I have 80 number excel files and each volume is near to 30 mb . My system configuration is about "CPU=Cor i7","RAM=8GB","Hard=1.5 T" . I want to open all files simultaneous and run a macro . I think Excel cant open them is it
true ? if so what should I do ?
Thanks

Does it really matter?
You can read the filenames into an array, then sort the array, and finally loop through the names in the sorted array:
Sub ProcessFolder()
' Path of the workbooks; must end in \
Const strFolder = "C:\Excel\"
Dim strFile As String
Dim arrFiles() As String
Dim i As Long
Dim n As Long
Dim wbk As Workbook
' Don't update the screen for efficiency
Application.ScreenUpdating = False
' Get first filename
strFile = Dir(strFolder & "*.xls*")
' Loop through the files
Do While strFile <> ""
' Increase counter
n = n + 1
' Expand array
ReDim Preserve arrFiles(1 To n)
' Set last array item to filename
arrFiles(n) = strFile
' Get the next filename
strFile = Dir
Loop
' Sort the filenames
Call BubbleSort(arrFiles)
' Loop through the sorted filenames
For i = 1 To n
' Open the workbook
Set wbk = Workbooks.Open(strFolder & arrFiles(i))
' Do something with the workbook
Call Macro1
' Close the workbook - use True if you want to save it
wbk.Close SaveChanges:=False
Next i
' Update the screen again
Application.ScreenUpdating = True
End Sub
Sub BubbleSort(arr)
Dim i As Long
Dim j As Long
Dim tmp
' Outer loop
For i = LBound(arr) To UBound(arr) - 1
' Inner loop
For j = i + 1 To UBound(arr)
' Items in wrong order?
If arr(i) > arr(j) Then
' If so, swap them
tmp = arr(i)
arr(i) = arr(j)
arr(j) = tmp
End If
Next j
Next i
End Sub
Regards, Hans Vogelaar (http://www.eileenslounge.com)

Similar Messages

  • Excel Automation with Interop - Windows Service - Microsoft Excel cannot access the file

    I have a windows console application, which automates Excel. In our scenario the application gets called from a Windows Service. If the console app is executed directly everything works fine. If the console app is executed through the Win Service, we get
    the following error when trying to open the excel file:
    Unhandled exception Occured : 'Microsoft Excel cannot access the file 'bla.xls'. There are several possible reasons:
    The file name or path does not exist.
    The file is being used by another program.
    The workbook you are trying to save has the same name as a currently open workbook.'.'
    The code snippet used to open the file:
    xlApp = new Application();xlApp.Visible = false;xlApp.UserControl = false;xlApp.Application.ScreenUpdating = false;xlApp.DisplayAlerts = false;xlWorkbook = xlApp.Workbooks.Open( Filename: filePath,  UpdateLinks: 2,  IgnoreReadOnlyRecommended: true, Editable: false);
    The console app and windows service are running on a Win Server 2008 64-bit OS with Excel 2013 32-bit installed. The service is running with a special user account, which has all the right permissions on accessed files and folders. The excel process is also
    started with the same account (I cheched that one). 
    I already tried to do the following, but to no avail:
    Run excel.exe /automation -> worked fine
    Created the folders and also gave full control to the account under which the service is run (even gave full control to Everyone)
    C:\Windows\SysWOW64\config\systemprofile\Desktop
    C:\Windows\System32\config\systemprofile\Desktop
    Configured DCOM
    Excel Application -> Identity -> Specific user account
    Excel Application -> Identity -> Interactive User
    Excel Application -> Security -> Launch permissions -> Everyone full control
    Several combinations of the above
    So I really am stuck with this problem right now. Any input on this is appreciated.

    I have a windows console application, which automates Excel. In our scenario the application gets called from a Windows Service. If the console app is executed directly everything works fine. If the console app is executed through the Win Service, we get
    the following error when trying to open the excel file
    Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, ASP.NET, DCOM, and NT Services), because Office
    may exhibit unstable behavior and/or deadlock when Office is run in this environment.
    If you are building a solution that runs in a server-side context, you should try to use components that have been made safe for unattended execution. Or, you should try to find alternatives that allow at least part of the code to run client-side.
    If you use an Office application from a server-side solution, the application will lack many of the necessary capabilities to run successfully. Additionally, you will be taking risks with the stability of your overall solution.
    You can read more about that in the
    Considerations for server-side Automation of Office article.

  • Microsoft Excel cannot access the file "-". There are several possible reasons. Windows Server 2008 R2 with Microsoft Office 2010

    I have a problem with starting the Excel Application under a particular user (service account).
    I try to schedule this C# script through an application X (not Windows Task Scheduler. And this
    application will always use a service account to run services on the server). If I run the C# script in
    command prompt under the same user, it runs. Under the application X, which uses the exact same
    user, to initiate the C# script, it fails to open the Excel application (not sufficient permission?).
    This script calls application.Workbooks.Open(<ExcelFileName>,0,false,Type.missing....). At this line
    of code, it gives the following error:
    Microsoft Excel cannot access the file "...". There are several possible reasons:
    -The file name or path does not exist.
    -The file is being used by another program.
    -The workbook you are trying to save has the same name as a currently open workbook.
    I tried all the methods that I found online as follow:
    Create directory "C:\Windows\SysWOW64\config\systemprofile\Desktop" (for 64 bit Windows) or "C:\Windows\System32\config\systemprofile\Desktop" (for 32 bit Windows).
    Changed the DCOM config for the Microsoft Excel application to include this user for Local/Remote Launch and Access.
    Enabled all macros in Excel application and set the Trust Center.
    Add the user to have full control on all folders that contain the Excel file.
    Under DCOM
    config, Microsoft Excel Application, if I modify the Identity tab to check on "This User" and enter the username/password to let Excel always run under that user. Then the application runs perfectly. However, other users can't run the excel application
    on their own with the following error: "Cannot use object linking and embedding". If I check "Use the launching user", then Excel can't be launched. No errors in the logs or events anywhere to check.
    Yet, still the same error. I think it's permission but I am not sure where and what to do for this to work.
    Now, normally, when I run this excel report, I can double-click on the file and it'd automatically run,
    save the new parameters into the current file and generate a new excel file (with date attached to the
    file name). That means there is a change (save) to the original file.
    Environment: Windows Server 2008 R2 and running Microsoft Excel 2010.
    I appreciate all your help!

    I am wondering if this has anything to do with having the user log into Excel.
    In point #5 above: Under DCOM config, Microsoft Excel Application, if I modify the Identity tab to check on "This User" and enter the username/password to let Excel always run under that user. Then the application runs perfectly. However, other
    users can't run the excel application on their own with the following error: "Cannot use object linking and embedding". If I check "Use the launching user", then Excel can't be launched. No errors in the logs or events anywhere to check.
    Because running with the launching user proposes an user to run the Excel application. However, I do not think there is any where that we can pass in the password for this user to Excel. However, this Excel has all the permissions to Excel application as
    well as the folders that have the Excel files.
    Please help!
    Thank you!

  • XMP files created in LR5 are showing in Finder as "Microsoft Excel 97-2004 workbook" files--???

    I import NEF files as I've done for years...no problem on import.
    Now I've noticed that once I start making adjustments in LR5, the accompanying XMP files show in the Finder as "Microsoft Excel 97-2004 workbook" files. Instead of as "Adobe XMP" files. Huh???
    I'm able to work fine within LR, but since I noticed this I've been a) converting imported files to DNGs within LR, and b) importing new files as DNGs.
    But sometimes I want to import files as NEFs...any idea why this is happening? Is it a LR bug? Is DNG conversion the best (only?) solution?
    Thanks in advance to anyone who has a clue!

    Hmmm, my concern isn't with opening the XMP, it's that the file type seems to have changed and I don't know how that's happening.
    Here's a screenshot comparison from Finder windows:

  • Microsoft excel tries to open .bin files

    I have MacBook Pro. It seems anytime I download a .bin file to install something (such as windows media player 9 for mac), the trial version of excel opens and tries to open the .bin file. (Which it can't, of course) Even when the download dialog in Firefox asks me if I want to save to disk or open with Stuffit Expander, and I chose "open with Stuffit Expander," it STILL tries to open in Excel. Also, when I ctrl-click on the .bin file itself and go to "open with" and look through my applications folder, I can't find the Stuffit Expander anywhere. It must be installed somewhere, otherwise that option wouldn't appear in the download dialog...

    Look in /Applications/Utilities/ or try using Spotlight to find where Stuffit Expander is located.
    If you can't find Stuffit Expander installed on your system then you probably don't have it and need to get the free download from:
    http://www.allume.com/mac/index.html
    I am not totally sure, but I think Firefox has it's own list of recommended helper applications that it would like to try to use to open files of a certain type, but that doesn't necessarily mean that you actually have that helper application on your machine.

  • Excel 2007 Slow Opening File

    We were looking at migrating to Office 2007. To verify compatibility, several key users have loaded Office 2007 on their machines. There seems to be several problems related to opening files in Excel.
    If Excel is open and the user does a File/Open, files will open quickly. However, if the user clicks on a file to open it, it can take up to a minute to open. I found a fix for this on this forum. It is to add "%1" to the end of the Open command line in the defined file types for XLS files. After this worked, I found that also needs it for the New on XLT, Open for XLSX, New on XLTM, and New XLTX files.
    After adding in the above fix I wanted to verify that it worked correctly by recreating the problem so I went in and removed the "%1" from all of the commands. When I tried to open a file, I got an error. So I went back into the File Types and checked the command lines. Now all of the command lines had a %1 at the end of them without the quotation marks. When I would try to delet this %1, it would now allow me to. I could remove it but when I reopened the line, it was back again. If I added the "%1" back to the end of the line it would take that and it would fix the problem again but I was still unable to remove the %1 from the other commands such as New, Print, Save As, etc. I had to Restore my system in order to remove them.
    Further testing on the fix reveals that when I file is opened, it attempts to open the file twice. The first time it opens very quickly and then a minute later it opens the second time. Notice that this is the same delay that was experienced previously. It you open the file and make a change before the minute has elapsed, then you get a message stating that the file is already open and if you open it again you will lose your changes. This is probably due to the Use DDE being selected. But If I turn off DDE, then when I click on the first file, it opens quickly and when I click on the second file, it also opens quickly but if I look at the Task Manager, their are 2 copies of Excel running. If I go to the View tool bar in either copy of Excel and try to view the other window, I can not. So it appears that there physically 2 copies of Excel running. When I went back into the File Types, the Use DDE that I had unselected before is now checked again but the DDE command line is blank.
    Thinking that may this was something that was surely fixed now that it is 2008 and the software is 2007, I looked for updates and found that IT had not run the updates. Loaded the Compatibility Pack and Service Pack 1 and high hopes that this would correct the problems. After loading the updates, I found that the File Types had reverted back to their original form without the "%1". Now I was really excited. Why would they reset user changes unless they fixed something related to them? To my dismay, the slow startup was back. I had to go back and set the "%1" back into all of the proper command lines.
    As of now, my recomendation to IT is to stay as far away from Office 2007 as possible until Microsoft gets their act together.
    By the way...I have tried all of the other recomendations from Microsoft about Excel being slow to start. They make a difference of less than 1 second. They also only make the App start quicker. They are not related to clicking on a file to open it.

    I didn't seem to get much help from this forum but I will pass on the fix that I have found.
    The problem doesn't have anything to do with the %1 fix that everyone is using. All that does is to open the file before Excel is fully started. In particular, before the add-ins are opened.
    You can verify this by changing the command line in the File Types to use a /s parameter which will bypass loading the add-ins.
    What I found was that even though I had removed the Adobe AcrobatMaker add-in, the file PDFMaker.xla was still in the XLSTART folder and was being loaded.
    Since Office now has it's own PDF functionality, this is no longer needed. I did however want to keep Acrobat so that I could print PDFs from other applications and edit PDF files so I wanted to keep it. Just not in Office.
    Here are the steps to remove PDFMaker from Excel.
    Choose Start > Control Panel > Add/Remove Programs.
    Select Acrobat Professional and click Change/Remove.
    Click Next.
    Select Modify and click Next.
    Expand the Create Adobe PDF menu, then select the Acrobat PDF Maker option, and change the status to "This feature will not be available".
    Click Next, and then click Finish to complete the process and allow Acrobat to remove the PDFMaker component. Note: You need the installation disk to do this.
    After completing this process, it is interesting that it disabled but did not remove the PDFMaker.xla add-in. It is therefore necessary to remove it manually by exploring to C:\Program Files\Microsoft Office\Office12\XLSTART and manually deleting PDFMaker.xla.
    Now for those of you who have already tried the "%1" fix and found that it causes new problems and doesn't fix things, you may have already found out that when you try to remove the "%1" from the File Type Open command line, something puts it back in as %1 without the quotation marks. This causes errors when you open a document that has spaces in it's path such as unable to open C:\Documents.xlsx, Unable to open And.xlsx, unable to open Settings.xlsx. No matter how hard you try, you cannot remove the %1.
    So here is 2 ways to overcome this.
    You can change the parameter from %1 to "%10". This will work as long as you don't try to open 10 files at the same time.
    Or you can edit your registry and remove the %1. The easiest way I found was to open the registry editor and search for excel.exe" /e %1. Notice that this is the end of the command line. When I found it, I removed the %1. If you edited more than just the Open command for XLS files, you will need to keep searching until you remove all of the changes. This will get you back to where you were before you tried the "%1" fix.
    There may be other add-ins that cause similar problems. Look in the C:\Program Files\Microsoft Office\Office12\XLSTART folder to see what is really getting loaded.

  • Excel 2010 SP2 opens files slowly after installing SP2

    After installing SP2 Excel is opening files very slowly. Files can be on network share or locally, no matter. If Excel is already open, then the file opens fast as it has opened before. OS is Windows 7 64-bit, and Office Professional Plus is 32-bit. Ecxel
    itself opens fast, but is slow when I double click file. Slow is about 12 seconds and fast is about 1 second with a 31 KB file from network. Network itself seems to be OK, anf Word files open fast.

    From your description, I understand that you open EXCEL 2010 SP2 32-bit slowly in Windows 7 64bit.
    Try to start Excel in safe mode. Then, open the Excel file.
    Start the Excel program in safe mode
    1.       Click Start, point to All Programs, and then point to Microsoft Office.
    2.        Press and hold the CTRL key, and then click the Microsoft Excel.
    If the problem does not occur in the safe mode, this issue might be related to some third-party add-ins in the Excel program, we can try to disable them.
    Normally, you could do the following to disable the conflict add-ins in your Excel program:
    Disable add-ins
    Click File menu, click Options >  Add-in, click Go button in the Manage: Com-in Add.
    Check if there are any add-ins, clear the checkbox to disable them.
    Close the Office program and restart it.
    Add one check back each time to the list of Add-In, restart the Office program, and repeat the above procedure. Once the issue reappears again, we can determine which add-in causes this problem and then disable it.
    Please take your time to try the suggestions and let me know the results at your earliest convenience.  If anything is unclear or if there is anything I can do for you, please feel free to let me know.
    Is the performance also slow when you trying to open?
    At this time, we can also try to test this issue in the clean boot mode.
    Test in Clean boot Mode
    ===============
    Let’s disable all startup items and third party services when booting. This method will help us determine if this issue is caused by a loading program or service. Please perform the following steps:
    1.       Click the Start Button type "msconfig" (without quotation marks) in the Start Search box, and then press Enter.
               Note: If prompted, please click Continue on the User Account Control (UAC) window.
    2.        Click the "Services" tab, check the "Hide All Microsoft Services" box and click "Disable All" (if it is not gray).
    3.       Click the "Startup" tab, click "Disable All" and click "OK".
    Then, restart computer. When the "System Configuration Utility" window appears, please check the "Don't show this message or launch the System Configuration Utility when Windows starts" box and click OK.
    Note: Temporarily disabling the Startup Group only prevents the startup programs from loading at startup. This should not affect the system or other programs. We may still manually run these programs later.

  • Word, PowerPoint and Excel Crash when opening Files from Sharepoint Site.

    Hello,
    I am in the process of rolling out office 2013 company wide. I have started with a batch of test users and a few including myself are reporting various office apps crashing with opening files from our SharePoint site. Although at times it will crash outside
    of the site. 
    I have tired running each app in various modes (Safe-mode, Compatibility mode ect) but the same results keep happening. Although it does not happen all the time on other users machines its more frequent. If i download the file and open it locally this does
    not appear to happen. 
    We are all running Office 2013 SP1 32bit on Windows 7 Machines. 
    One Common issue they everybody seems to have always points to "Faulting module path: C:\Windows\system32\VBScript.dll". I have done some digging but have not encountered any solution that points to this file. We constantly stay current on the
    latest updates from MS.
    Any suggestions would be very helpful.  
    Faulting application name: POWERPNT.EXE, version: 15.0.4701.1001, time stamp: 0x54e30979
    Faulting module name: VBScript.dll, version: 5.8.9200.17267, time stamp: 0x54e80d2c
    Exception code: 0xc0000005
    Fault offset: 0x00004b18
    Faulting process id: 0x235c
    Faulting application start time: 0x01d05cfec4e68efd
    Faulting application path: C:\PROGRA~2\MICROS~2\Office15\POWERPNT.EXE
    Faulting module path: C:\Windows\system32\VBScript.dll
    Report Id: 06a26b9a-c8f2-11e4-82f5-f01faf3ff4e9 
    Faulting application name: EXCEL.EXE, version: 15.0.4693.1000, time stamp: 0x54b5cf28
    Faulting module name: VBScript.dll, version: 5.8.9200.17229, time stamp: 0x54b494b6
    Exception code: 0xc0000005
    Fault offset: 0x00004b18
    Faulting process id: 0x10c0
    Faulting application start time: 0x01d0591c4e4be9d4
    Faulting application path: C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE
    Faulting module path: C:\Windows\system32\VBScript.dll
    Report Id: 991c342e-c50f-11e4-bb22-f01faf3ff4e9
    Faulting application name: WINWORD.EXE, version: 15.0.4693.1000, time stamp: 0x54b5d322
    Faulting module name: VBScript.dll, version: 5.8.9200.17229, time stamp: 0x54b494b6
    Exception code: 0xc0000005
    Fault offset: 0x00004b18
    Faulting process id: 0x18ac
    Faulting application start time: 0x01d058110aaeea68
    Faulting application path: C:\Program Files (x86)\Microsoft Office\Office15\WINWORD.EXE
    Faulting module path: C:\Windows\system32\VBScript.dll
    Report Id: 49c2fed2-c404-11e4-adfe-f01faf3ff4e9
    In some instances even outlook will crash as well although I think this is unrelated to sharepoint. 
    Faulting application name: OUTLOOK.EXE, version: 15.0.4693.1000, time stamp: 0x54b5d37b
    Faulting module name: VBScript.dll, version: 5.8.9200.17229, time stamp: 0x54b494b6
    Exception code: 0xc0000005
    Fault offset: 0x00004b18
    Faulting process id: 0x113c
    Faulting application start time: 0x01d05911e9f9cde2
    Faulting application path: C:\Program Files (x86)\Microsoft Office\Office15\OUTLOOK.EXE
    Faulting module path: C:\Windows\system32\VBScript.dll
    Report Id: bb795581-c508-11e4-bb22-f01faf3ff4e9

    Bump - Wondering if anybody has seen this before?

  • How to repair xls file? Microsoft Excel report me what file is not Excel format.

    I need help again(( i have .xls file that cannot be opened by Excel. It reports that this file is not excel format. Can i recover it?

    When an Excel file is corrupted, then you can try several methods to recover it:
    1. First of all, you can try to repair the file manually in Excel, as follows:
    (1) On the File menu, click Open.
    (2) In the Open dialog box, select the file you want to open, and click the arrow next to the Open button.
    (3) Click Open and Repair, and then choose which method you want to use to recover your workbook.
    You may find more information about this at:
    http://office.microsoft.com/en-us/excel-help/repairing-corrupted-files-in-excel-HA001034656.aspx (for Excel 2003)
    http://office.microsoft.com/en-us/excel-help/repairing-a-corrupted-workbook-HA010097017.aspx?CTT=1 (for Excel 2007)
    http://office.microsoft.com/en-us/excel-help/repairing-a-corrupted-workbook-HA010342840.aspx?CTT=1 (for Excel 2010)
    http://office.microsoft.com/en-us/excel-help/repair-a-corrupted-workbook-HA102749554.aspx?CTT=1 (for Excel 2013)
    2. Second, since Excel 2003, it provides a "Document Recovery" mechanism so that when Excel is shutdown abnormally, the Excel file being edited will be recovered when Excel is launched next time, which makes the file recovery possible.
    See below:
    http://office.microsoft.com/en-us/excel-help/recover-your-office-files-HP010354299.aspx?CTT=1
    for more detailed information.
    3. If 1 and 2 does not work, then you may try third-party tools such as DataNumen Excel Repair at
    http://www.datanumen.com/excel-repair/
    It provides a free demo version so that you can try to see if the data you want can be recovered or not.
    Good luck!

  • Microsoft Excel Will Not Open

    I am unable to open Microsoft Excel. It keeps giving me the following failure message:
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-04-19 14:21:27 -0400
    Application Name: Microsoft Excel
    Application Bundle ID: com.microsoft.Excel
    Application Signature: XCEL
    Application Version: 14.1.4.111121
    Crashed Module Name: libobjc.A.dylib
    Crashed Module Version: unknown
    Crashed Module Offset: 0x00005f8b
    Blame Module Name: MBURibbon
    Blame Module Version: 14.1.4.111121
    Blame Module Offset: 0x000192c6
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Any suggestions?

    Start by deleting all of your microsoft preferences files in /Library/Preferences.
    There is a Microsoft Preferences folder, AND a number of com.microsoft.xx plist files.
    If you are running Lion, your Library folder in your home folder will be hidden. To unhide your Library folder, open terminal in your utilities folder and type:
    chflags nohidden ~/Library/
    If that doesn't fix your problem, delete your Microsoft User Data folder in your documents folder.

  • Problem in Microsoft Excel 2007 when opening XLS from content library

    Hi gurus,
    I'm facing the following problem. When we try to open an Excel template that we have in our content library a message appears. The message is: The file you are trying to open " showfile.aspx" is in a different format than specified by the file extension...
    it doesn't happen if you open with Microsof Excel 2003. Any idea to solve the problem?
    Thanks in advice
    Gorka Ibor Ureñ

    Hi,
    Please follow below steps to remove Excel Add-in from Excel 2007: -
    1- Open Excel 2007 and click on icon placed at top left corner and select option 'Excel Options'.
    3- Now select option 'Add-In' from left window menu and then click on button 'Go' appears on the bottom of right window. It will open a new window.
    4- Please de-select option 'Hyperion Essbase OLAP server DLL' in new window.
    It will disable Excel Add-in.
    Hope it will help you.
    Atul K,

  • Microsoft Excel won't open because it says there is not enough memory?

    I'm trying to open Microsoft Excel and a prompt appears stating that there is not enough memory even though I have 140gb available of a 250gb hard drive. Any suggestions?

    You're right, i did. But how do I clear out available RAM? When I check the Activity Monitor and then System Memory it says I have 1.3gb available. That SHOULD be enough. Right?

  • Excel - Unable to open file on network drive

    Hello
    upgrade to Yosemite and ran the latest Microsoft update patch.  I am unable to open an Excel spreadsheet on a network drive
    file is not corrupt and it is a xlsx file extension
    any thoughts?

    issue resolved thanks

  • Microsoft excel will not open but all the other office programs will open (word/prowerpoint.....) how do i fix this problem?

    how do i open my excel program if it always shows an error message? all the other programs from my disk of microsoft office work fine.....

    or use their forums:
    http://answers.microsoft.com/en-us/mac
    In addition to finding other users, you may get a Microsoft employee helping.

  • Stop Microsoft Word from re-opening files

    As the subjects says, I need to stop Microsoft Word, Mac office Package, from reopening files. each time it opens, it opens the files from the last 2 weeks and it's driving me crazy.
    I tried to unselect the option "Close Windows When quitting an app" from General, System Preference.
    Thanks in advance.

    Just to reiterate. Choose Shut Down or Restart from the Apple menu and make sure this check box is off.
    Open the System Preferences. Under the General icon, make sure the check box for "Close windows when quitting an application" is on.

Maybe you are looking for

  • Get Custom List Data as JSON Format

    Hello Dear All, I have a custom list named locations with title, long, lat, and desc columns I am trying to get these table results as js array in my page. and all table data have to be like shown below.  <script> var mapmarkers = [{lat:xxxxx,lon:xxx

  • Query needs tuning; Explain plan attached

    DB version:10gR2 Currently, the below query is taking more than 28 secs to complete. The table stats are up-to-date. Is there a way to rewrite/tune this query? SELECT DISTINCT TASK_HDR.TASK_ID,                  TASK_HDR.WHSE,                  TASK_HD

  • Codedui: Unable To Identify Objects Inside The Virtual Machine

    Hi We are unable to identify objects inside the virtual machine. We want to perform some tasks inside the virtual machine. The virtual machine object is getting identified as image. So when we perform tasks like creating a folder or opening any appli

  • Image control synchronizing scroll bars

    Hello, I have a LabVIEW program using Vision that I want to use multiple Image controls in a VI.  I would like to be able to synchronize the movements of the scroll bars.  If a user scrolls left in one window, I want the other window(s) to also scrol

  • Maintaining F1 help in English and French

    Hi, I have a request for all users to have the SRM in English. But in France, we would like to have the context menu in French. With above requirement, I have following questions: - 1. Can this online help overwrite standard one if standard one exist