Date picker for 64 bit windows 8 and 32 bit 2010 excel

I'm looking for step by step instructions on how to add a pop up calender to chose a date in 2010 Excel.  There is none listed in the addition toolbox controls, where and how would I install this? 

Hi,
Please go to the following path to find the Microsoft Date and Time Picker:
Excel 2010 > Developer tabe > Insert > ActiveX bottom right > More > MIcrosoft Date and Time Picker (SP4). 
For more detail information, please refer to the following link:
http://social.msdn.microsoft.com/Forums/en-US/26f6adea-c723-4815-92ba-59a0c846a80a/microsoft-date-picker-excel-2010?forum=exceldev
http://www.logicwurks.com/CodeExamplePages/EDatePickerControl.html
Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
Regards,
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Need to download oracle 11.1.0.7 for Microsoft Windows (32-bit)

    Hi all,
    I am using Repository Creation Utility (RCU) to create schema and load repository in Oracle database for Fusion Middleware components. In order to create schema and load repository to an Oracle database,Oracle strongly recommends using AL32UTF8 as the database character set.
    Hence I need to install database version 10.2.0.4.0 in 10g or version equal to higher than 11.1.0.7.0 with the database character set AL32UTF8. But the Oracle Database Software Download url available through OTN do not list
    oracle 10.2.0.4.0 or oracle 11.1.0.7 for Microsoft Windows (32-bit).
    Appreciate if anyone can provide me any other alternate location, from where I can download oracle 10.2.0.4.0 or oracle 11.1.0.7 for Microsoft Windows (32-bit).
    Thanks
    Sanil.M

    10.2.0.4 and 11.1.0.7 are patchsets, available on MOS/metalink only (you need a valid support contract). There's only the exception for Windows 2008,here you can get this versions on OTN.
    But who did you tell characterset AL32UTF8 is not available in the basis versions?
    Werner

  • 10.1.0.4 for Microsoft Windows (32-bit)

    When will Oracle Database 10g Release 10.1.0.4 be available for Microsoft Windows (32-bit)?
    (I'm having some problems with Export:
    ORA-39094, fixed in 10.1.0.4
    ORA-39127, fixed in 10.1.0.3)

    If you want the basic database, you want #1. The companion CD contains example code and header files if you are developing OCI or OCCI applications. It may make sense to download and install the companion CD after installing the database.
    Options #3 and #5 allow you to connect to a remote Oracle database, but do not include the actual database software. These are things that you would install on the client machines if you deploy your applications to client machines.
    Option #4 only comes in to play if you are installing a grid (RAC cluster).
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Apple declares an Update for My windows 32 bit Vista Home Premium; 3 software updates are available; I download; I start installer; installation fails unexpectedly; installer rolls back installation; hardware seems PC capable;

    Apple declares an Update for My windows 32 bit Vista Home Premium; 3 software updates are available; Safari browser=1, Itunes=2; Apple software updater=3; I download; I start installer; installation fails unexpectedly; installer rolls back installation; PC hardware seems PC capable; I have removed Mobile Me because of New Apple I-cloud Software Sync server registration?
    What should I do with this failure to install Apple software products /declaring/ needing wanting to update and failing the process.
    I have other software to complete the multimedia experience. what should I do with the constant automatic attempt to update
    I can consult Gateway; device drivers web sites; hardware drivers;
    Please Email Deanallen@ a*l.com
    < Email Edited By Host >

    Hi,
    Please try this
    Stop Windows Update Service and BIT Service now.
    Go to C:\Windows\SoftwareDistribution and delete all file under this folder.
    Start Windows Update and BIT service now.
    Then try to download windows update now.
    If doesn't work, please reset the windows update componments 
    http://support.microsoft.com/kb/971058/en-us
    Yolanda Zhu
    TechNet Community Support

  • Patch Set Release 2 (9.2.0.8) Patch Set 7 for Microsoft Windows (32-Bit)

    Hi,
    I've 2 nodes with version 9.2.0.1
    I applied a Patch Set Release 2 (9.2.0.8) Patch Set 7 for Microsoft Windows (32-Bit) on the Node 2,
    All is fine but when i try to discover N2 from N1 with OMS, i get only the HTTP Servers, and no database discovred,
    For your information, I've 2 databases on N2
    Please help me to resolve this probleme because i need to schedule some jobs.
    Regards.

    Check where you installed the 9.2.0.8 patch, in the database home or Enterprise Manager Agent's home?
    Check the compatibility between the versions of agent, database and OEM.
    Try to reinstall the (correct version) agent again in Node 1.
    If you have 2 database on Node 2, if they both uses the same Oracle database version and same home, you need to install the patch only once, but got to run the upgrade and catpatch.sql seperately in each databases.
    Hope it helps,
    Babu Rangasamy

  • Setting Cursor - For a window and application wide

    Hi,
    Can somebody please help with a cursor problem ? I am not able to set the busy cursor for a frame when the application is doing some work. I have tried many methods of doing this (some of them from these forums...) but still I am not able to make this work.
    1) setting the cursor before doing the work and resetting after the
    work doesnt work.
    2) setting the cursor for the window by calling
    Window window = SwingUtilities.windowForComponent(getRootPane().getGlassPane());
    window.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    This works but the events are not blocked by the frame i.e if i
    click on any part of the window like a button or something, that
    event is fired after the work is done. So this is not good.
    3) created a glass pane for the window and blocked all the events. Then
    set the cursor for the the glass pane. This does not work either
    since the event thread is doing the work. So had to create another
    thread to do the work. This works but when the cursor is reset back,
    it doesnt reset. I have to move the mouse a bit to reset it. So this
    is not good either.
    4) created a work around for the cursor by creating a modal dialog box
    saying "Processing..." in the event thread and doing the work in the
    worker thread. The worker thread posts an event to dispose the
    dialog box after the work is done. This works perfectly though it is
    still not good because the cursor is not showing busy. Because of
    the modal dialog box, the user cant do anything in the application
    which is exactly what i want. Is this ok ? Can somebody provide any
    other work around for this ?
    5) Also I have another question for you guys. In the worker thread if i
    do something like updating the gui etc., it takes a lot of time
    almost 10 times more than when the work is done in a single threaded
    environment. Is this because of the communication between the worker
    thread and the event thread ? If I do only data related work not gui
    work in the worker thread, this is fine.
    I am new to Swing, so somebody please explain to me if they can.
    My environment is JDK 1.1.7, Swing 1.1 on Sun Solaris 2.5.1. Is this because I am using old versions. Is this resolved in the newer versions like 1.3 etc ?
    -Vijay

    moetunes wrote:I thought a
    chmod u+rw /path/to/.conf
    chmod go-rw /path/to/.conf
    would set the file to be read only by the user that owns it.
    That is all true.  The problem is the need to give a user the ability to run a program that has secrets that should only be visible by root.  If you give the user ownership, they cab see the keys to the kingdom.
    For example, you may want to allow a user to connect to an arbitrary wireless access point.  Generally, this is a privileged operation -- you want to give them permission to do it, but don't want to give them ownership.  You may also not want them to be able to see or modify the pass phrases.

  • Bit Depth and Bit Rate

    I have a pre recorded mp3 VO. I placed it into a track bed in GB. Clients wants a compressed audio file with bit depth: 16 bit and bitrate: 128kps max, but recommends 96kbps. If I need to adjust the bit depth and bite rate, can I do it in GB? and if so, where? Thanks for any help.

    Please be aware that Bit Depth and Bit Rate are two completely different things!
    They belong to a group of buzz words that belong to Digital Audio and that is the field we are dealing with when using GarageBand or any other DAW. Some of those terms pop up even in iTunes.
    Digital Audio
    To better understand what they are and what they mean, here is a little background information.
    Whenever dealing with Digital Audio, you have to be aware of two steps, that convert an analog audio signal into a digital audio signal. These magic black boxes are called ADC (Analog Digital Converter) and “on the way back”, DAC (Digital Analog Converter).
    Step One: Sampling
    The analog audio (in the form of an electric signal like from an electric guitar) is represented by a waveform. The electric signal (voltage) changes up and down in a specific form that represents the “sound” of the audio signal. While the audio signal is “playing”, the converter measure the voltage every now and then. These are like “snapshots” or samples, taken at a specific time. These specific time intervals are determined by a “Rate”, it tells you how often per seconds something happens. The unit is Hertz [Hz] defined as “how often per seconds” or “1/s”. A Sample Rate of 48kHz means that the converter takes 48,000 Samples per second.
    Step Two: Quantize (or digitize)
    All these Samples are still analog, for example, 1.6Volt, -0.3Volt, etc. But this analog value now has to be converted into a digital form of 1s and 0s.This is done similar to quantizing a note in GarageBand. The value (i.e. the note) cannot have any position, it  has to be placed on a grid with specific values (i.e. 1/16 notes). The converter does a similar thing. It provides a grid of available numbers that the original measured Sample has to be rounded to (like when a note get shifted in GarageBand by the quantize command). This grid, the amount of available numbers, is called the Bit Depth. Other terms like Resolution or Sample Size are also used. A Bit Depth of 16bit allows for 65,535 possible values.
    So the two parameters that describe the quality of an Digital Audio Signal are the Sample Rate (“how often”) and the Bit Depth (“how fine of a resolution”). The very simplified rule of thumb is, the higher the Sample Rate, the higher the possible frequency, and the higher the Bit Depth, the higher the possible dynamic.
    Uncompressed Digital Audio vs. Compressed Digital Audio
    So far I haven’t mentioned the “Bit Rate” yet. There is a simple formula that describes the Bit Rate as the product of Sampel Rate and Bit Depth: Sample Rate * Bit Depth = Bit Rate. However, Bit Depth and how it is used (and often misused and misunderstood) has to do with Compressed Digital Audio.
    Compressed Digital Audio
    First of all, this has nothing to do with a compressor plugin that you use in GarageBand. When talking about compressed digital audio, we talk about data compression. This is a special form how to encode data to make the size of the data set smaller. This is the fascinating field of “perceptual coding” that uses psychoacoustic models to achieve that data compression. Some smart scientists found out that you can throw away some data in a digital audio signal and you wouldn’t even notice it, the audio would still sound the same (or almost the same). This is similar to a movie set. If you shoot a scene on a street, then you only need the facade of the buildings and not necessary the whole building.
    Although the Sample Rate is also a parameter of uncompressed digital audio, the Bit Depth is not. Instead, here is the Bit Rate used. The Bit Rate tells the encoder the maximum amount of bits it can produce per second. This determines how much data it has to throw away in order to stay inside that limit. An mp3 file (which is a compressed audio format) with a Bit Rate of 128kbit/s delivers a decent audio quality. Raising the Bit Rate to 256bit/s would increase the sound quality. AAC (which is technically an mp4 format) uses a better encoding algorithm. If this encoder is set to 128kbit/s, it produces a better audio quality because it is smarter to know which bits to throw away and which one to keep.
    Conclusion
    Whenever you are dealing with uncompressed audio (aiff, wav), the two quality parameters are Sample Rate [kHz] and Bit Depth [bit] (aka Resolution, aka Bit Size)
    Whenever you are dealing with compressed audio (mp3, AAC), the two quality parameters are Sample Rate [kHz] and Bit Rate [kbit/s]
    If you look at the Export Dialog Window in GarageBand, you can see that the Quality popup menu is different for mp3/AAC and AIFF. Hopefully you will now understand why.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • [svn:fx-trunk] 13276: Min/ Max size fixes for AIR Window and WindowedApplication.

    Revision: 13276
    Revision: 13276
    Author:   [email protected]
    Date:     2010-01-05 07:18:31 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Min/Max size fixes for AIR Window and WindowedApplication.
    AIR won?\226?\128?\153t allow you to set the min width greater than the current max width (same is true for height). You also can?\226?\128?\153t set the max width less than the current min width (same is true for height). The code that sets nativeWindow.minSize and nativeWindow.maxSize has been modified to take this into account.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24566
    Reviewer: Corey
    Tests run: checkintests, apollo/spark/components/Window.as, apollo/spark/components/WindowedApplication.as, apollo/Window, apollo/WindowedApplication
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24566
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as

    THank you , Nancy. Appreciate the input.
    So instead of this:
    <a class="brand" href="index.html"><img src="../img/logo-ca.png"alt="Consumers Advocate Review"> </a>
    Would it be something like this?:
    <a class="brand" href="index.html"><img src="http://ConsumersAdvocate/img/logo-ca.png"alt="Consumers Advocate Review"> </a>
    And if I do that, is there a way to cope with that locally so that DW can still display the images?
    jeff

  • How do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full

    how do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full.. HELP!

    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.

  • Text for ipad,windows and android

    Hi
    I'll publish a folio for ipad , windows and android.
    If I have understood correctly, Is the best way to create an iPad version first and use the same folio to the other platforms.
    I have made a folio of 1024x768 and has 16pt for body text. PDF format.
    The problem is that the text is ugly in Android and Windows versions.
    What should I do to get the best deal on the windows and android versions?
    Regards
    Ake

    I have attached three screenshots.

  • When you set up tracks what is best to pick for the input and output?

    When you set up tracks what is best to pick for the input and output? also what is the buss output? Thanks

    First part of the question I don't understand, so could you elaborate please?
    Second part: bus output is used for submixes, for example, let's say you want the same EQ to be applied to all guitars in the song, so instead of using same EQ plug-in on all guitar tracks, you feed the output from these tracks to a bus track and use the effect just once on this bus submix.

  • I would like to get data analysis for solving statistic and making graphs, but this function is not in add-in. How should I do? I also set up microsoft office for mac 2011.

    I would like to get data analysis for solving statistic and making graphs, but this function is not in add-in. How should I do? I also set up microsoft office for mac 2011.

    Microsoft didn't include that with the 2011 version.
    There is a third-party application that substitutes for the add-in: http://www.analystsoft.com/en/products/statplusmac/
    They also have a limited, free version.

  • What's the best App for downloading, editing and saving Microsoft Excel spreadsheets please?

    What's the best App for downloading, editing and saving Microsoft Excel spreadsheets please?

    You can have a look at Quickoffice
    http://i1224.photobucket.com/albums/ee374/Diavonex/74fb0e85.jpg

  • Upload Multiple Pictures function not available for 64-bit Windows and IE 11

    Hello!
    The problem is as follows:
    1) Open Picture library;
    2) Open "Upload".
    Result: "Upload Multiple Pictures" function is missing. Only "Upload Picture" functions is available.
    Specs of my PC = Win 8.1 64-bit + IE 11 + Office 2013 64-bit + Shp Developer Tools 2010.
    I have also tried the following configurations and they also doesn't work:
    A. Win 7 64-bit + IE 11 + Office 2010 32-bit;
    B. Win 8.1 64-bit + IE 11 + Office 2010 64-bit;
    C. Win 8.1 64-bit + IE 11 + Office 2010 32-bit.
    It does work for IE 10, but that's not the case.
    Some more notes:
    - For Office 2010 Picture Manager worked fine;
    - STSUpld.UploadCtl.dll works fine, I can upload multpile documents;
    - Tried to switch on Private browsing, put site in trusted sites.
    Do you have some more ideas where to look for a solution? For me it looks like deadend already, I have tried almost everything what I could find on google.
    Best Regards,
    Rolands

    HI Roland,try checking this with the Firefox or chrome.
    So if you are one of few that are using IE11.you have probably noticed many corruptions and misbehaves in UI. So far I have discovered the following problems:
    1.     Calendar web part is extremely corrupted
    2.     You will click Settings > Edit Page, Pages will not enter edit mode.
    3.     Web Part Properties cannot be modified.
    So until we get official CU or SP from SharePoint team, run your sites in compatibility mode.
    How to run Compatibility mode: Please find the ways to get the mode.
    Way 1:
    1.   Press ALT + T when viewing your SharePoint page
    2.   Click Compatibility View Settings in the menu that appears
    3.   Click Add to add the current SharePoint site to your list of compatibility view pages
    4.   Click Close
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • In what way is iTunes for 64-bit windows 64-bit?

    I keep finding conflicting info on this topic.  There appears to be a version of iTunes for 64-bit Windows, but task manager shows itunes.exe as being 32-bit.
    In what way is this installer 64-bit?  Does it install 64-bit drivers for iOS devices and iTunes, but the program is still 32-bit?

    The itunes.exe process itself is 32-bit (on a 64-bit install). Most of the iTunes program files are also 32-bit.
    The miniplayer is 64-bit, and there are 64-bit plugins for Outlook. (You'll see those items in the iTunes folder in your "Program files" rather than in the iTunes folder in your "Program files (x86)".)
    The GEAR drivers itunes uses for burning will be the 64-bit versions on a 64-bit system.
    The iPod service will be 64-bit on a 64-bit system.
    Apple Mobile Device Support is 64-bit (so you'll have the 64-bit Apple Mobile Device Service, and usbaapl64.sys and netaapl64.sys rather than usbaapl.sys and netaapl.sys, on the 64-bit system.)
    Some of the bonjour componentry on the 64-bit install will be 64-bit.
    Most everything else is 32-bit (QuickTime, Apple Software Update, Apple Application Support).
    (Apologies for inaccuracies ... it's been a wee while since I checked the noir-household 64-bit Vista box for locations. The precise details of what is 32-bit and 64-bit can change between versions. For example, one of the big changes between the itunes 8.x 64-bit versions and the itunes 9.x 64-bit versions was the iPod Service going 64-bit.)

Maybe you are looking for

  • Encoding from UTF-8 encoded String to Microsoft Project default encode

    Hi Expert ... I have a problem with encoding a String from UTF-8 String in order to write a MPX (Microsoft Project) file. I used UTF-8 on my Database encoding, and I want to write a MPX file using MPXJ library, but the result is (?) character. I thin

  • Possible that itunes will not update iphone OS while overseas?

    hi, im in australia, and i was thinking about getting the iphone 3gs through the local australian network carrier here, however, a friend of mine said that whenever he returns to his home country with the contract phone that he obtained under a plan

  • Blackberry Z 10 car connection

    since upgrading to software release 10.2.1.2102, when I pair my phone with my Mercedes the phone pairs correctly. However, once the car is turned off, rep[airing will not happen. The only way to repair is to delete all info from the car and the phone

  • Difference in results of queries on same data

    Hi all I have two tables, FURNITURE which contains transactions information of the customers who come for shoping to a store. IDNO column in the table shows ID of the customer, RECEIPTNO shows the receipt number of the customer. Each single visit wil

  • BAPI call in Workflow

    Hi Experts, I am new in workflow please assist how to add BAPI . Thanks in advance. Ankur