Update Panel for unix

I was wondering why the update panel in the COntrol Panel was just active for Windows?

its not available for unix.
sad but true :-(

Similar Messages

  • An image changing to FLV Video Player in AJAX Update Panel

    Hi,
    I'm trying to design part of a website can seen as video gallery. I have videos related to subcategories; and subcategories that related to categories.
    I was using popups but now want to change it. Simply, firstly there are images and descriptions(in an update panel) of videos on page. After clicking thumbnail, the region includes thumbnail and description wil be changed to FLV video player.
    Outside of updatepanel player is working good. but when i move it into updatepanel; doesn't working in IE. Because JS code (AC_FL_RunContent(.....)) is not working in updatepanel. Tried another script (like alert('hello!');), it's working. I think i have problem with the function named AC_FL_RunContent(...). It's working as i want, if open page with Firefox.
    Looked for this in google. Visited many pages, but never find a solution for this nor source of problem. I hope someone can help me
    Using ASP.Net. I'm attaching my tree structure and codes below:
    Default.aspx
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default"%> 
    <! 
    DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" //www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    html xmlns ="http://www.w3.org/1999/xhtml">

    head id="Head1" runat="server">
    <title>Untitled Page</title>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css"/>
    <script type ="text/javascript">
    function  
    MM_CheckFlashVersion(reqVerStr,msg){
      with (navigator){
          var isIE = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
          var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
          if (!isIE || !isWin){
            var flashVer = -1;
            if (plugins && plugins.length > 0){
                var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
                desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
                if (desc == "") flashVer = -1;
                else{
                  var descArr = desc.split(" ");
                  var tempArrMajor = descArr[2].split(".");
                  var verMajor = tempArrMajor[0];
                  var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
                  var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
                  flashVer = parseFloat(verMajor + "." + verMinor);
            // WebTV has Flash Player 4 or lower -- too low for video
            else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;
            var verArr = reqVerStr.split(",");
            var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
            if (flashVer < reqVer){
                if(confirm(msg))
                  window.location = http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash;
    function  callFLVP(){
      AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','width','320','height','240','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=./VideoGallery/serpende&autoPlay= false&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive');
    </ 
    script>

    script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </ 
    head>
    <body onload="MM_CheckFlashVersion('7,0,0,0','Content on this page requires a newer version of Adobe Flash Player. Do you want to download it now?');">
      <form id="form1" runat="server">
          <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" />
          <div>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:Literal ID="thumbLiteral" runat="server"></asp:Literal>
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="showvideoButton" EventName="Click" />
            </Triggers>
            </asp:UpdatePanel>
            <asp:Button ID="showvideoButton" Text="Video" runat="server" onclick="showButton_Click"/>
         </div>
       </form>
    </ 
    body>
    </ 
    html>
    Default.aspx.cs
    public partial class _Default : System.Web.UI.Page
         protected void Page_Load(object sender, EventArgs e)
              thumbLiteral.Text = "<img src id=\"imgThumb\" src=\"./VideoGallery/small/serpende.jpg\" />";
         protected void showButton_Click(object sender, EventArgs e)
              string strNoScriptBlock = "";
              strNoScriptBlock += "<noscript>";
              strNoScriptBlock += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"320\" height=\"240\" id=\"Object1\"><param name=\"movie\" value=\"FLVPlayer_Progressive.swf\" /><param name=\"salign\" value=\"lt\" /><param name=\"quality\" value=\"high\" /><param name=\"scale\" value=\"noscale\" /><param name=\"FlashVars\" value=\"&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=serpende&autoPlay=false&a utoRewind=false\" /><embed src=\"FLVPlayer_Progressive.swf\" flashvars=\"&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=serpende&autoPlay=fal se&autoRewind=false\" quality=\"high\" scale=\"noscale\" width=\"320\" height=\"240\" name=\"FLVPlayer\" salign=\"LT\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" /></object>";
         strNoScriptBlock += "</noscript>";
         string strScriptBlock = "";
         strScriptBlock += "<script>";
         strScriptBlock += "callFLVP();";
         strScriptBlock += "</script>";
         ScriptManager.RegisterClientScriptBlock(this, typeof(string), "strScriptBlock", strScriptBlock, false);
         thumbLiteral.Text = strNoScriptBlock;

    Let's check this first;
    If you have problems with current Shockwave Flash plugin versions then check this:
    * see if there are updates for your graphics drive drivers
    '''https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration'''
    * disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    '''https://forums.adobe.com/message/4468493#TemporaryWorkaround'''
    * disable hardware acceleration in the Flash plugin
    '''https://forums.adobe.com/thread/891337'''
    See also:
    * '''http://kb.mozillazine.org/Flash#Troubleshooting'''

  • HT4759 i downloaded the icloud to my pc it says to login with apple id and it says it is a valid apple id but not cloud but i cannot get the control panel for icloud to come up to set it up on my pc which runs windows 8

    i downloaded the icloud to my pc it says to login with apple id and it says it is a valid apple id but not cloud but i cannot get the control panel for icloud to come up to set it up on my pc which runs windows 8

    An update.
    From iCloud Control Panel 2.1.1 for Windows
    "iCloud Control Panel 2.1 and later includes support for Windows 8"
    but you still need to set it up on a Mac or iOS device, "Note: To create an iCloud account you need an iPhone, iPad, or iPod touch with iOS 5 or later, or a Mac with OS X Lion v10.7.5 or later."

  • ICloud Control Panel for PC Syncing with Outlook 64bit Contacts & Calender Issues

    Ok I have searched and searched and tried the couple of answers that worked for some people.
    I can't sync my contacts and calenders/tasks via the iCloud Control Panel for PC in my Outlook 2010 64bit.
    I get the error in the qoute below, I copied and pasted from the report option.
    These are the answers I have tried:
    Reboot in Safe Mode and tried syncing. To avoid the running ofosppsvc "Office Software Protection Platform"
    Uninstalling and Reinstalling iCloud Control Panel for PC. Because I installed it before I installed Outlook 2010
    Ran SCANPST on all my Outlook PST Files.
    I can sync the Mail but not the other two.
    Also below are my system specs
    Toshiba Qosmio Laptop
    Windows 7 Ultimate SP1
    i7 Q740 @ 1.73GHz
    6GB Ram
    64bit
    Your setup couldn't be started because of an unexpected error.
    Error: 0x80070005: ZebraMapiCopySession::CreateMobileMeMessageStore: CreateMessageService failed
    AppleOutlookDAVConfig version: 3.2.16.0
    Windows version (6.1.7601): Windows 7 Ultimate Edition Service Pack 1 (build 7601), 64-bit
    Local app data directory test: Pass
    Temp directory test: Pass
    Outlook version: 14 (14.0.4734.1000), x64
    Outlook location (installed): C:\Program Files\Microsoft Office\Office14\OUTLOOK.EXE
    MAPI location: C:\Program Files\Common Files\SYSTEM\MSMAPI\1033\MSMAPI32.DLL
    MAPI logon succeeded
    Message Stores Table:
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
    Contents of C:\Program Files\Common Files\SYSTEM\MSMAPI\1033\mapisvc.inf
    [Services]
    MSN_CON=Microsoft Outlook Hotmail Connector
    APLZODSERVICE=iCloud
    [MSN_CON]
    PR_SERVICE_DLL_NAME=MSNCON.DLL
    PR_DISPLAY_NAME=Microsoft Outlook Hotmail Connector
    PR_RESOURCE_FLAGS=SERVICE_PRIMARY_IDENTITY|SERVICE_NO_RESTART
    PR_SERVICE_ENTRY_NAME=ServiceEntry
    PR_SERVICE_DELETE_FILES=MSNCON.DLL
    PR_SERVICE_SUPPORT_FILES=MSNCON.DLL
    Providers=MSN_AB,MSN_MS,MSN_XP
    [MSN_XP]
    PR_RESOURCE_FLAGS=STATUS_PRIMARY_IDENTITY
    PR_RESOURCE_TYPE=MAPI_TRANSPORT_PROVIDER
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    PR_PROVIDER_DISPLAY=Outlook Hotmail Connector Transport Service
    [MSN_MS]
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    PR_RESOURCE_TYPE=MAPI_STORE_PROVIDER
    PR_RESOURCE_FLAGS=STATUS_DEFAULT_STORE|STATUS_PRIMARY_IDENTITY|STATUS_PRIMARY_ST ORE
    PR_PROVIDER_DISPLAY=Outlook Hotmail Connector Store Service
    [Default Services]
    MSN_CON=Microsoft Outlook Hotmail Connector
    [MSN_AB]
    PR_PROVIDER_DISPLAY=Microsoft Outlook Hotmail Connector
    PR_RESOURCE_FLAGS=STATUS_PRIMARY_IDENTITY
    PR_RESOURCE_TYPE=MAPI_AB_PROVIDER
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    [APLZODSERVICE]
    PR_SERVICE_DELETE_FILES=C:\PROGRA~1\COMMON~1\Apple\INTERN~1\APLZOD64.dll
    PR_SERVICE_DLL_NAME=C:\PROGRA~1\COMMON~1\Apple\INTERN~1\APLZOD64.dll
    PR_SERVICE_SUPPORT_FILES=C:\PROGRA~1\COMMON~1\Apple\INTERN~1\APLZOD64.dll
    PR_DISPLAY_NAME=iCloud
    PR_RESOURCE_FLAGS=SERVICE_NO_PRIMARY_IDENTITY|SERVICE_SINGLE_COPY
    PR_SERVICE_ENTRY_NAME=APLZODServiceEntry
    Providers=APLZODMP
    [APLZODMP]
    PR_PROVIDER_DLL_NAME=C:\PROGRA~1\COMMON~1\Apple\INTERN~1\APLZOD64.dll
    PR_DISPLAY_NAME=iCloud
    PR_PROVIDER_DISPLAY=iCloud
    PR_RESOURCE_FLAGS=STATUS_DEFAULT_STORE
    PR_RESOURCE_TYPE=MAPI_STORE_PROVIDER
    Contents of C:\Windows\system32\mapisvc.inf
    [APLZODSERVICE]
    PR_SERVICE_DELETE_FILES=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_SERVICE_DLL_NAME=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_SERVICE_SUPPORT_FILES=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_DISPLAY_NAME=iCloud
    PR_RESOURCE_FLAGS=SERVICE_NO_PRIMARY_IDENTITY|SERVICE_SINGLE_COPY
    PR_SERVICE_ENTRY_NAME=APLZODServiceEntry
    Providers=APLZODMP
    [APLZODMP]
    PR_PROVIDER_DLL_NAME=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_DISPLAY_NAME=iCloud
    PR_PROVIDER_DISPLAY=iCloud
    PR_RESOURCE_FLAGS=STATUS_DEFAULT_STORE
    PR_RESOURCE_TYPE=MAPI_STORE_PROVIDER
    [Services]
    APLZODSERVICE=iCloud
    HKLM\Software\Microsoft\Office\11.0\Outlook
    SchedulingInformation
    SharedCalendarSupport
    HKLM\Software\Microsoft\Office\12.0\Outlook
    SchedulingInformation
    SharedCalendarSupport
    HKLM\Software\Microsoft\Office\14.0\Access\Access Connectivity Engine\ISAM Formats\Outlook 9.0
    HKLM\Software\Microsoft\Office\14.0\Access Connectivity Engine\ISAM Formats\Outlook 9.0
    HKLM\Software\Microsoft\Office\14.0\OneNote\Outlook Add-in
      Message Classes
    HKLM\Software\Microsoft\Office\14.0\Outlook
      Dataviz
      InstallRoot
      Namespaces
    {0006F017-0000-0000-C000-000000000046}
          FolderTypes
    {00067800-0000-0000-C000-000000000046}
    {00067801-0000-0000-C000-000000000046}
    {00067802-0000-0000-C000-000000000046}
    {00067803-0000-0000-C000-000000000046}
    {00067804-0000-0000-C000-000000000046}
    {00067808-0000-0000-C000-000000000046}
    {00067828-0000-0000-C000-000000000046}
    {00067829-0000-0000-C000-000000000046}
    {0006782A-0000-0000-C000-000000000046}
          ViewTypes
    {00062000-0000-0000-C000-000000000046}
    {00062001-0000-0000-C000-000000000046}
    {00062002-0000-0000-C000-000000000046}
    {00062003-0000-0000-C000-000000000046}
    {00062004-0000-0000-C000-000000000046}
    {0006F018-0000-0000-C000-000000000046}
          FolderTypes
    {00067820-0000-0000-C000-000000000046}
    {00067821-0000-0000-C000-000000000046}
    {00067822-0000-0000-C000-000000000046}
    {00067823-0000-0000-C000-000000000046}
          ViewTypes
    {00062000-0000-0000-C000-000000000046}
    {00062001-0000-0000-C000-000000000046}
    {00062002-0000-0000-C000-000000000046}
    {00062003-0000-0000-C000-000000000046}
    {00062004-0000-0000-C000-000000000046}
      Operations
        1ImportFile
        2ExportFile
        3ExportDataLink
        4ImportVCard
        5ImportAccounts
    6ImportVcalendar
        7ImportRss
        8ExportRss
        9ImportCFL
        ImportEudora
    SchedulingInformation
        FreeBusySupport
      SearchTypes
    {00067A00-0000-0000-C000-000000000046}
    {00067A01-0000-0000-C000-000000000046}
    {00067A02-0000-0000-C000-000000000046}
    {00067A03-0000-0000-C000-000000000046}
    {00067A04-0000-0000-C000-000000000046}
    {00067A08-0000-0000-C000-000000000046}
    {00067A10-0000-0000-C000-000000000046}
    {00067A11-0000-0000-C000-000000000046}
    {00067A20-0000-0000-C000-000000000046}
      Setup
      UpgradePath
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Access
    HKLM\Software\Microsoft\Office\14.0\User Settings\Excel_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Excel
    HKLM\Software\Microsoft\Office\14.0\User Settings\Global_Project_ClientCore\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Project
    HKLM\Software\Microsoft\Office\14.0\User Settings\Misc_SpsOutlookAddin\Create\Software\Microsoft\Office\Outlook
      Addins
    ColleagueImport.ColleagueImportAddin
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover
      Create
        Software
          Microsoft
            Office
              14.0
                Outlook
    AutoDiscover
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Core
      Create
        Software
          Microsoft
            Internet Mail and News
              Mail
            MSDAIPP
            Shared Tools
              Outlook
    Journaling
    Conversation
    Document
    E-mail Message
                  Fax
    Letter
    Meeting
    Meeting Cancellation
    Meeting Request
    Meeting Response
                  Note
                  Phone Call
    Remote Session
                  Task
                  Task Request
                  Task Response
            Web Service Providers
              FreeBusy
    office.microsoft.com
            Windows
    CurrentVersion
    Internet Settings
    TemplatePolicies
    High
                  Zones
                    4
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg
      Create
        Software
          Microsoft
            Windows
              Shell
    Associations
    UrlAssociations
    mapi
    UserChoice
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKLM\Software\Microsoft\Office\14.0\User Settings\PowerPoint_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft PowerPoint
    HKLM\Software\Microsoft\Office\14.0\User Settings\Word_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Word
    HKLM\Software\Microsoft\Office\8.0\Outlook
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-1000-0000000FF1CE}-C\Resources\OutlookMUI.msi
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-1000-0000000FF1CE}-C\Resources\OutlookMUI.xml
    HKLM\Software\Microsoft\Office\Outlook
      AccountDelivery
      Addins
        Apple.DAV.Addin
    avgoutlook.Addin
    BCSAddin.Connect
    Groove.OutlookProxyAddIn
    Microsoft.VbaAddinForOutlook.1
        MSNCON.Addin.1
    OneNote.OutlookAddin
    OscAddin.Connect
    OutlookChangeNotifier.Connect
    Search.OutlookToolbar
    UmOutlookAddin.FormRegionAddin
      AutoConfigDomains
        hotmail.*
        live.*
        livemail.com.br
        msn.*
        msnhotmail.com
        tw.live.com
        windowslive.com
      FormRegions
    IPM.Note.Microsoft.Exchange.Fax.UM.CA
    IPM.Note.Microsoft.Exchange.Voice
    IPM.Note.Microsoft.Exchange.Voice.UM
    IPM.Note.Microsoft.Exchange.Voice.UM.CA
    IPM.Note.Microsoft.Fax.CA
    IPM.Note.Microsoft.Voicemail
    IPM.Note.Microsoft.Voicemail.UM
    IPM.Note.Microsoft.Voicemail.UM.CA
    IPM.Note.Rpmsg.Microsoft.Voicemail.UM
    IPM.Note.Rpmsg.Microsoft.Voicemail.UM.CA
      Outlook 10 Accounts
        Categories
    {ED475418-B0D6-11D2-8C3B-00104B2A6676}
    {ED475419-B0D6-11D2-8C3B-00104B2A6676}
    {ED475420-B0D6-11D2-8C3B-00104B2A6676}
        Types
    {4DB5CBF0-3B77-4852-BC8E-BB81908861F3}
    {ED475411-B0D6-11D2-8C3B-00104B2A6676}
    {ED475412-B0D6-11D2-8C3B-00104B2A6676}
    {ED475414-B0D6-11D2-8C3B-00104B2A6676}
      SocialConnector
        SocialProviders
    OscAddin.SharePointProvider
    HKCU\Software\Microsoft\Office\14.0\Common\Migration\Outlook
    HKCU\Software\Microsoft\Office\14.0\Outlook
      Addins
      AutoDiscover
        RedirectServers
      Contact
      Display Types
        Balloons
      Forms
      Journal
      Message
      Office Explorer
      Options
        Calendar
          Internet Free/Busy
        General
        Journal
        Mail
        MSHTML
          International
        RSS
        Spelling
        Tasks
        ToDoBar
      Perf
    RoamingStreamsCache
    05C354C394317F47BA024879D963AEBB
    0EA7DBC19B036A4A90846FA941141A02
    4075D2C917BFA343A2FDEE73E8CA164D
    6A5B15813BD3BC439366C4C5F04645FA
    ACD904688885774DBC9DE5BB5A0AEDC3
    CBA722ECC3DA03419DB8690DEFA70E0F
    E7ABFA6D95D4D348B9050F8197D75548
    F5592C44A3F39642A417FC8F96D6356A
      Preferences
      Printing
      PST
      Resiliency
        DisabledItems
      Search
        Catalog
      Security
      Setup
      SQM
      Today
        Folders
      UserInfo
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Core
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKCU\Software\Microsoft\Office\8.0\Outlook
    HKCU\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
    ColleagueImport.ColleagueImportAddin
    iTunesAddIn.CalendarHelper
      SocialConnector

    Update: Still not fixed.
    I have uninstalled all the 64bit office applications and installed the 32bit versions. It seems 32bit worked better in the past.
    Well I can get my mail but when I try contracts and calender/task it crashes. Here is the updated Error Report:
    Help Apple improve its products by sending us diagnostic and usage information about iCloud.
    By sending this message, you agree that Apple will collect and use this information as part of its support services and to improve its products and services. To learn more about Apple's Privacy Policy, see http://www.apple.com/legal/privacy.
    Your setup couldn't be started because of an unexpected error.
    Error: 0x80070005: ZebraMapiCopySession::CreateMobileMeMessageStore: CreateMessageService failed
    AppleOutlookDAVConfig version: 3.2.16.0
    Windows version (6.1.7601): Windows 7 Ultimate Edition Service Pack 1 (build 7601), 64-bit
    Local app data directory test: Pass
    Temp directory test: Pass
    Outlook version: 14 (14.0.6117.5001), x86
    Outlook location (installed): C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE
    MAPI location: C:\Program Files (x86)\Common Files\SYSTEM\MSMAPI\1033\MSMAPI32.DLL
    MAPI logon succeeded
    Message Stores Table:
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
    Contents of C:\Program Files (x86)\Common Files\SYSTEM\MSMAPI\1033\mapisvc.inf
    [Services]
    MSN_CON=Microsoft Outlook Hotmail Connector
    APLZODSERVICE=iCloud
    [MSN_CON]
    PR_SERVICE_DLL_NAME=MSNCON.DLL
    PR_DISPLAY_NAME=Microsoft Outlook Hotmail Connector
    PR_RESOURCE_FLAGS=SERVICE_PRIMARY_IDENTITY|SERVICE_NO_RESTART
    PR_SERVICE_ENTRY_NAME=ServiceEntry
    PR_SERVICE_DELETE_FILES=MSNCON.DLL
    PR_SERVICE_SUPPORT_FILES=MSNCON.DLL
    Providers=MSN_AB,MSN_MS,MSN_XP
    [MSN_XP]
    PR_RESOURCE_FLAGS=STATUS_PRIMARY_IDENTITY
    PR_RESOURCE_TYPE=MAPI_TRANSPORT_PROVIDER
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    PR_PROVIDER_DISPLAY=Outlook Hotmail Connector Transport Service
    [MSN_MS]
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    PR_RESOURCE_TYPE=MAPI_STORE_PROVIDER
    PR_RESOURCE_FLAGS=STATUS_DEFAULT_STORE|STATUS_PRIMARY_IDENTITY|STATUS_PRIMARY_ST ORE
    PR_PROVIDER_DISPLAY=Outlook Hotmail Connector Store Service
    [Default Services]
    MSN_CON=Microsoft Outlook Hotmail Connector
    [MSN_AB]
    PR_PROVIDER_DISPLAY=Microsoft Outlook Hotmail Connector
    PR_RESOURCE_FLAGS=STATUS_PRIMARY_IDENTITY
    PR_RESOURCE_TYPE=MAPI_AB_PROVIDER
    PR_PROVIDER_DLL_NAME=MSNCON.DLL
    [APLZODSERVICE]
    PR_SERVICE_DELETE_FILES=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_SERVICE_DLL_NAME=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_SERVICE_SUPPORT_FILES=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_DISPLAY_NAME=iCloud
    PR_RESOURCE_FLAGS=SERVICE_NO_PRIMARY_IDENTITY|SERVICE_SINGLE_COPY
    PR_SERVICE_ENTRY_NAME=APLZODServiceEntry
    Providers=APLZODMP
    [APLZODMP]
    PR_PROVIDER_DLL_NAME=C:\PROGRA~2\COMMON~1\Apple\INTERN~1\APLZOD.dll
    PR_DISPLAY_NAME=iCloud
    PR_PROVIDER_DISPLAY=iCloud
    PR_RESOURCE_FLAGS=STATUS_DEFAULT_STORE
    PR_RESOURCE_TYPE=MAPI_STORE_PROVIDER
    Contents of C:\Windows\system32\mapisvc.inf
    [Services]
    MSFAX XP=Fax Mail Transport
    [Default Services]
    MSFAX XP=Fax Mail Transport
    [MSFAX XPP]
    PR_PROVIDER_DLL_NAME=FXSXP.DLL
    PR_RESOURCE_TYPE=MAPI_TRANSPORT_PROVIDER
    PR_RESOURCE_FLAGS=STATUS_NO_DEFAULT_STORE
    PR_DISPLAY_NAME=Fax Mail Transport
    PR_PROVIDER_DISPLAY=Fax Mail Transport
    [MSFAX XP]
    PR_DISPLAY_NAME=Fax Mail Transport
    Providers=MSFAX XPP
    PR_SERVICE_DLL_NAME=FXSXP.DLL
    PR_SERVICE_SUPPORT_FILES=FXSXP.DLL
    PR_SERVICE_ENTRY_NAME=ServiceEntry
    PR_RESOURCE_FLAGS=SERVICE_SINGLE_COPY|SERVICE_NO_PRIMARY_IDENTITY
    HKLM\Software\Microsoft\Office\11.0\Outlook
    SchedulingInformation
    SharedCalendarSupport
    HKLM\Software\Microsoft\Office\12.0\Outlook
    SchedulingInformation
    SharedCalendarSupport
    HKLM\Software\Microsoft\Office\14.0\Access\Access Connectivity Engine\ISAM Formats\Outlook 9.0
    HKLM\Software\Microsoft\Office\14.0\Access Connectivity Engine\ISAM Formats\Outlook 9.0
    HKLM\Software\Microsoft\Office\14.0\OneNote\Outlook Add-in
      Message Classes
    HKLM\Software\Microsoft\Office\14.0\Outlook
      Dataviz
      InstallRoot
      Namespaces
    {0006F017-0000-0000-C000-000000000046}
          FolderTypes
    {00067800-0000-0000-C000-000000000046}
    {00067801-0000-0000-C000-000000000046}
    {00067802-0000-0000-C000-000000000046}
    {00067803-0000-0000-C000-000000000046}
    {00067804-0000-0000-C000-000000000046}
    {00067808-0000-0000-C000-000000000046}
    {00067828-0000-0000-C000-000000000046}
    {00067829-0000-0000-C000-000000000046}
    {0006782A-0000-0000-C000-000000000046}
          ViewTypes
    {00062000-0000-0000-C000-000000000046}
    {00062001-0000-0000-C000-000000000046}
    {00062002-0000-0000-C000-000000000046}
            {00062003-0000-0000-C000-000000000046}
    {00062004-0000-0000-C000-000000000046}
    {0006F018-0000-0000-C000-000000000046}
          FolderTypes
    {00067820-0000-0000-C000-000000000046}
    {00067821-0000-0000-C000-000000000046}
            {00067822-0000-0000-C000-000000000046}
    {00067823-0000-0000-C000-000000000046}
          ViewTypes
    {00062000-0000-0000-C000-000000000046}
    {00062001-0000-0000-C000-000000000046}
    {00062002-0000-0000-C000-000000000046}
            {00062003-0000-0000-C000-000000000046}
    {00062004-0000-0000-C000-000000000046}
      Operations
        1ImportFile
        2ExportFile
        3ExportDataLink
        4ImportVCard
        5ImportAccounts
    6ImportVcalendar
        7ImportRss
        8ExportRss
        9ImportCFL
        ImportEudora
    SchedulingInformation
        FreeBusySupport
      SearchTypes
    {00067A00-0000-0000-C000-000000000046}
    {00067A01-0000-0000-C000-000000000046}
    {00067A02-0000-0000-C000-000000000046}
    {00067A03-0000-0000-C000-000000000046}
        {00067A04-0000-0000-C000-000000000046}
    {00067A08-0000-0000-C000-000000000046}
    {00067A10-0000-0000-C000-000000000046}
    {00067A11-0000-0000-C000-000000000046}
    {00067A20-0000-0000-C000-000000000046}
      Setup
      UpgradePath
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Access
    HKLM\Software\Microsoft\Office\14.0\User Settings\Excel_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Excel
    HKLM\Software\Microsoft\Office\14.0\User Settings\Global_Project_ClientCore\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Project
    HKLM\Software\Microsoft\Office\14.0\User Settings\Misc_SpsOutlookAddin\Create\Software\Microsoft\Office\Outlook
      Addins
    ColleagueImport.ColleagueImportAddin
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover
      Create
        Software
          Microsoft
            Office
              14.0
                Outlook
    AutoDiscover
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Core
      Create
        Software
          Microsoft
            Internet Mail and News
              Mail
            MSDAIPP
            Shared Tools
              Outlook
    Journaling
    Conversation
    Document
    E-mail Message
                  Fax
    Letter
    Meeting
    Meeting Cancellation
    Meeting Request
    Meeting Response
                  Note
                  Phone Call
    Remote Session
                  Task
                  Task Request
                  Task Response
            Web Service Providers
              FreeBusy
    office.microsoft.com
            Windows
    CurrentVersion
    Internet Settings
    TemplatePolicies
    High
                  Zones
                    4
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg
      Create
        Software
          Microsoft
            Windows
              Shell
    Associations
    UrlAssociations
    mapi
    UserChoice
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderWLRedist
    HKLM\Software\Microsoft\Office\14.0\User Settings\PowerPoint_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft PowerPoint
    HKLM\Software\Microsoft\Office\14.0\User Settings\Visio_VisioExe\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Visio
    HKLM\Software\Microsoft\Office\14.0\User Settings\Word_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Word
    HKLM\Software\Microsoft\Office\8.0\Outlook
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-0000-0000000FF1CE}-C\Resources\OutlookMUI.msi
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-0000-0000000FF1CE}-C\Resources\OutlookMUI.xml
    HKLM\Software\Microsoft\Office\Outlook
      AccountDelivery
      Addins
        Apple.DAV.Addin
    avgoutlook.Addin
    BCSAddin.Connect
    Groove.OutlookProxyAddIn
    Microsoft.VbaAddinForOutlook.1
        MSNCON.Addin.1
    OneNote.OutlookAddin
    OscAddin.Connect
    OutlookChangeNotifier.Connect
    Search.OutlookToolbar
    UmOutlookAddin.FormRegionAddin
      AutoConfigDomains
        hotmail.*
        live.be
        LIVE.CA
        LIVE.CL
        LIVE.CN
        LIVE.CO.IN
        LIVE.CO.KR
        LIVE.CO.UK
        LIVE.CO.ZA
        LIVE.COM
        LIVE.COM.AR
        LIVE.COM.AU
        LIVE.COM.MX
        LIVE.COM.MY
        LIVE.COM.PE
        LIVE.COM.PK
        LIVE.COM.PT
        LIVE.COM.SG
        LIVE.COM.VE
        LIVE.DE
        LIVE.DK
        LIVE.FR
        LIVE.HK
        LIVE.IE
        live.in
        LIVE.IT
        LIVE.JP
        LIVE.MA
        LIVE.NL
        LIVE.NO
        LIVE.PH
        LIVE.RU
        LIVE.SE
        livemail.com.br
        msn.*
        msnhotmail.com
        tw.live.com
        windowslive.com
      FormRegions
    IPM.Note.Microsoft.Exchange.Fax.UM.CA
    IPM.Note.Microsoft.Exchange.Voice
    IPM.Note.Microsoft.Exchange.Voice.UM
        IPM.Note.Microsoft.Exchange.Voice.UM.CA
    IPM.Note.Microsoft.Fax.CA
    IPM.Note.Microsoft.Voicemail
    IPM.Note.Microsoft.Voicemail.UM
    IPM.Note.Microsoft.Voicemail.UM.CA
    IPM.Note.Rpmsg.Microsoft.Voicemail.UM
    IPM.Note.Rpmsg.Microsoft.Voicemail.UM.CA
      Outlook 10 Accounts
        Categories
    {ED475418-B0D6-11D2-8C3B-00104B2A6676}
    {ED475419-B0D6-11D2-8C3B-00104B2A6676}
    {ED475420-B0D6-11D2-8C3B-00104B2A6676}
        Types
    {4DB5CBF0-3B77-4852-BC8E-BB81908861F3}
    {ED475411-B0D6-11D2-8C3B-00104B2A6676}
    {ED475412-B0D6-11D2-8C3B-00104B2A6676}
    {ED475414-B0D6-11D2-8C3B-00104B2A6676}
      SocialConnector
        SocialProviders
    OscAddin.SharePointProvider
    OscAddin.WindowsLiveProvider
    HKCU\Software\Microsoft\Office\14.0\Common\HelpViewer\Applications\OUTLOOK
    AdditionalCollections
        0
        1033
    HKCU\Software\Microsoft\Office\14.0\Common\Migration\Outlook
    HKCU\Software\Microsoft\Office\14.0\Outlook
      Addins
      AutoDiscover
        RedirectServers
      Contact
      Display Types
        Balloons
      Forms
      Journal
      Message
      Office Explorer
      Options
        Calendar
          Internet Free/Busy
        General
        Journal
        Mail
        MSHTML
          International
        RSS
        Spelling
        Tasks
        ToDoBar
      Perf
    RoamingStreamsCache
    05C354C394317F47BA024879D963AEBB
    0EA7DBC19B036A4A90846FA941141A02
    4075D2C917BFA343A2FDEE73E8CA164D
    6A5B15813BD3BC439366C4C5F04645FA
    ACD904688885774DBC9DE5BB5A0AEDC3
          CBA722ECC3DA03419DB8690DEFA70E0F
    E7ABFA6D95D4D348B9050F8197D75548
    F5592C44A3F39642A417FC8F96D6356A
      Preferences
      Printing
      PST
      Resiliency
        DisabledItems
      Search
        Catalog
      Security
      Setup
      SQM
      Today
        Folders
      UserInfo
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Core
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderWLRedist
    HKCU\Software\Microsoft\Office\8.0\Outlook
    HKCU\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
    ColleagueImport.ColleagueImportAddin
    iTunesAddIn.CalendarHelper
      SocialConnector

  • Updated Console (for x-fi) - no midi record

    +Updated Console (for x-fi) - no midi record, Sorry if this has been asked elsewhere, but I can't find it ...
    I have just clean installed Windows 7, and re-installed the x-fi fatalty champion, and Sonar 4 (I know, I should upgrade this too). I installed the new Creative Win7 drivers and apps for Console Launcher, Audio Control Panel and Soundfont Conntrol Panel.
    I now find there's no option on the Console to record from the midi synth. Checking in the Taskbar for Recording Devices, there's no midi there either.
    However ... midi still plays ok in Sonar, I just can't record from a midi track on to a new audio track. Neither can I get the midi to register in "What-U-Hear".
    Has anyone any ideas about resolving this please?
    Thanks
    Jerry

    /Re: Updated Console (for x-fi) - no midi recordr ?
    Alpaca wrote:
    I was eventually able to solve the problem by going into "Control Panel," and then "Sound," and then selecting "What U Hear" as the default under the recording menu.
    (In Vista, for some reason, "What U Hear" can't be enabled unless it's set as the default. It may be the same in Windows 7). This worked, and the MIDI synth?registered
    In the audio recording.
    It's very odd that the latest version of the Console does not have an option to record from the MIDI Synth. Is this a recent change? "
    Well you said it all, it is a recent change of sorts. The article I sent you to explains that everything done audio-wise is done differently. EVERYTHING. So if you get it to work with this version (four versions ago) you are 00% lucky. The midi recording will not be the same. That is what I was trying to let you know. I would not want you to keep ripping your hair out, when the Windows Driver Model is so drastically different.

  • Adobe Exchange Panel for Photoshop CC 2014

    I'm trying to get the Adobe Exchange Panel for Photoshop CC 2014 (Mac 10.10.2).
    When searching for it on Adobe.com, all I get is the download for CS6. Is this the SAME Exchange Panel usable in CC 2014?
    Thanks for any guidance.

    I'm having problems searching out any updates. It's like they silently retired it after CC.
    This is the last mention of it:
    Adobe Exchange Panel – 1.1 Update for CC apps now available
    Since it's a flash panel, it wouldn't work in CC 2014 which has gone to HTML5 panels
    Photoshop: Spring Cleaning | PHOTOSHOP.COM BLOG
    Photoshop CC 2014/HTML5 Compatible Extension Panels
    If you can contact Jeffrey Tranberry, I'm sure he can better answer this.
    Gene

  • What is the latest update available for Mac OSX 10.5.8 that will allow me to get the latest update for iTunes.  I really need to update my iPhone and CAN'T!!  GRRRR!!!

    What is the latest update available for Mac OSX 10.5.8 that will allow me to get the latest update for iTunes.  I really need to update my iPhone and CAN'T!!  GRRRR!!!

    Minimally you need Snow Leopard or greater:
    Upgrade Paths to Snow Leopard, Lion, and/or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard — Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service — this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion — System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • Where can I get the latest revision of Firefox for Unix?

    I have Firefox in a Unix box. I need to update to the latest Firefox version for Unix. I can't find any. Is rev 3.6 available for Unix? any other?

    First make sure that you meet the system requirements for newer Firefox versions:
    http://www.mozilla.com/firefox/system-requirements.html - Firefox 3.6 System Requirements
    If you have such an old Firefox version then chances quite high are that current Firefox versions won't work for you.<br />
    You may need to update to a more recent Linux version.
    What kind of Linux distribution do you have?<br />
    Did you visit the website of your distribution?
    http://kb.mozillazine.org/Installing_Firefox#Linux

  • Update Panel is not working browsers other than IE

    In SharePoint 2013, Update Panel is not working for firefox, chrome etc.

    Hi,
    From your description, my understanding is that you use
    <asp:UpdatePanel>tag in your code, but it does not work well in browsers except
    IE.
    I have test
    <asp:UpdatePanel>tag with code below, and it works well in IE, chrome, Firefox
    as the screenshot.
    <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
    <ContentTemplate>
    <asp:Label ID="lbl" runat="server" Text="Loaded" Visible="true"></asp:Label>
    <asp:Button ID="btn" runat="server" OnClick="btn_Click"/>
    </ContentTemplate>
    </asp:UpdatePanel>
    protected void btn_Click(object sender, EventArgs e)
    lbl.Text = "BUTTON CLICKED !";
    lbl.Visible = true;
    The screenshot below is my result(the first is result in Chrome, second is in Firefox and last is in IE):
    And you also could refer to this article:
    http://sharepoint.stackexchange.com/questions/72928/update-panel-not-working-in-firefox-2013
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Trouble with Update Panel in Chrome browser

    Hi. 
    I work with update panel.
        <asp:UpdatePanel runat="server" ID="someid" >
            <ContentTemplate>
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="someid2" EventName="somefunction" />
            </Triggers>
        </asp:UpdatePanel>
    In IE all working fine. In Chrome and Firefox after ~30 seconds if i tried to clicked any button the postback is done and page will reset.
    How to fix it?

    Hi,
    Do you want to use the update panel on application page or user control in SharePoint 2013?
    If that is the case, here is a similar thread for you to take a look at:
    https://social.technet.microsoft.com/Forums/office/en-US/c33d4a46-87d6-4dbc-a24c-cb8e5f9eb1ea/page-refresh-after-postback-from-updatepanel-in-sharepoint-2013
    If not, I suggest you post it to ASP.NET Forum, you will get more help and confirmed answers from there.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Problem getting the Kuler panel for Ps CC 2014

    Hey everybody.
    I think the title makes my problem clear.
    I am trying to get the new Kuler panel for updated Ps CC 2014 from here
    https://creative.adobe.com/addons/products/2507
    But I cant find the download button.
    It looks like i have the CS6 and offers me to get the addon via exchanges panel for CS6
    http://i.imgur.com/yZ0g9mv.png
    even though i have CC 2014 installed
    http://i.imgur.com/t6Y6L5E.png
    so do you have any ideas how to fix this?
    or maybe there is a way someone could upload the extension file for me to install with extensions manager.
    please please please someone help me.

    you got me wrong. i need Kuler panel.. not the extension manager.. i already have it.. the latest 7.2 version..
    http://i.imgur.com/typyftX.png

  • How do I install the Calendar Server for UNIX?

    In order to install the Netscape Calendar Server for UNIX, please
    follow these exact instructions:
    o Login as "root".
    o Create the group "dxoffice"
    o Create the user "unison".
    - Please make sure this user has a UID less than 60000.
    - Please make it's primary group "dxoffice".
    o Edit the /etc/services file and add the entries:
    unieng 5730/tcp # Cal Server DB Daemon
    unisnc 5731/tcp # Cal Server Real-Time Daemon
    o Untar the calendar archive. It should install extract itself to
    /users/unison/.
    o Change directories to /users/unison/bin.
    o Run ncsconfig.
    After answering the questions to configure your server you can start
    your server by running the command: "unistart".

    Hi,
      This is from the documentation -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Alternative:
    As an alternative to using this preference, you can click Help, then Check for Updates to install the JTDS JDBC Driver for Microsoft SQL Server and the MySQL JDBE Driver as extensions.
    Regards,
    Mike

  • Where I find the connector for UNIX Telnet 9.0.4.4...?

    I am configuring the connector for UNIX Telnet 9.0.4.4 and in the documentation I requested this connector.
    On the home page of the Oracle connector exists only for UNIX Telnet 9.0.4.2.0
    Any suggestions

    - login to metalink
    - go to patches and updates
    - search for a patch for your connector
    - download and install the patch

  • Update panel did not work with ajax control toolkits

    hye there, can anybody helps me about the update panel. I have a grid view that must show the file that i already browser. in my situation i am using Ajax control toolkit so it automatically will upload the file in the grid view. Unfortunately it did not
    work but the other code is work. this is my code
    function clearContents() {
                var AsyncFileUpload = $get("<%=MemoFileUpload.ClientID%>");
                var AsyncFileUpload = $get("<%=AttorneyFileUplod.ClientID%>");
                var AsyncFileUpload = $get("<%=TORFileUpload.ClientID%>"); 
                var txts = AsyncFileUpload.getElementsByTagName("input");
                for (var i = 0; i < txts.length; i++) {
                    if ((txts[i].type == "file") || (txts[i].type == 'text')) {
                        txts[i].value = "";
                        txts[i].style.backgroundColor = "transparent";
                    if (txts[i].type == 'text') {
                        txts[i].value = '';
            function uploadComplete1(sender, args) {
                clearContents();
                __doPostBack("<%= HiddenButton.UniqueID %>", "");
            function uploadComplete2(sender, args) {
                clearContents();
                __doPostBack("<%= HiddenButton2.UniqueID %>", "");
    //the code that works
    <td>
                                                                       <%-- <asp:FileUpload
    ID="MemoFileUpload" runat="server" Height="25px" Width="275px" />--%>
                                                                        <asp:AsyncFileUpload
    OnClientUploadComplete="uploadComplete1" runat="server" ID="MemoFileUpload"
                                                                            Width="400px"
    UploaderStyle="Modern" CompleteBackColor="White" UploadingBackColor="#CCFFFF"
                                                                            ThrobberID="imgLoader"
    OnUploadedComplete="btnMemoUplod_Click" OnClientUploadStarted="uploadStarted" />
                                                                        <asp:Button runat="server"
    ID="HiddenButton" Style="display: none;" />
                                                                        <asp:Image ID="imgLoader"
    runat="server" ImageUrl="../Images/loader.gif" /><br />
                                                                        <br />
                                                                        <img id="imgDisplay"
    alt="" src="" style="display: none" />
                                                                    </td>
                                                                    <td align="right">
                                                                        <asp:Button ID="btnMemoUplod"
    runat="server" Text="<%$ Resources: Section64OpenKPDetailedPRS.aspx,btnMemoUplod %>" Visible="false" />
                                                                        <%--CssClass="ButtonStyle"--%>
                                                                    </td>
                                                                    <asp:UpdatePanel ID="update1"
    runat="server" UpdateMode="Always">
                                                                        <Triggers>
                                                                            <asp:PostBackTrigger
    ControlID="btnMemoUplod" />
                                                                            <%--<asp:PostBackTrigger
    ControlID="GridInspection" />--%>
                                                                            <%--
     <asp:AsyncPostBackTrigger ControlID="btnMemoUplod" EventName="Click" />--%>
                                                                        </Triggers>
                                                                        <ContentTemplate>
                                                                        </ContentTemplate>
                                                                    </asp:UpdatePanel>
                                                                </tr>
    //the code that did not work
     <td>
                                                                        <%--<asp:FileUpload
    ID="AttorneyFileUplod" runat="server" />--%>
                                                                         <asp:AsyncFileUpload
    OnClientUploadComplete="uploadComplete2" runat="server" ID="AttorneyFileUplod"
                                                                            Width="400px"
    UploaderStyle="Modern" CompleteBackColor="White" UploadingBackColor="#CCFFFF"
                                                                            ThrobberID="imgLoader1"
    OnUploadedComplete="btnAttrnyUpload_Click" OnClientUploadStarted="uploadStarted" />
                                                                         <asp:Button
    runat="server" ID="HiddenButton2" Style="display: none;" />
                                                                        <asp:Image ID="imgLoader1"
    runat="server" ImageUrl="../Images/loader.gif" />
                                                                    </td>
                                                                    <td align="right">
                                                                        <asp:Button ID="btnAttrnyUpload"
    runat="server" Text="<%$ Resources: Section64OpenKPDetailedPRS.aspx,btnAttrnyUpload %>" visible ="false" />
                                                                        <%--CssClass="ButtonStyle"--%>
                                                                        <asp:UpdatePanel
    ID="Update2" runat="server" UpdateMode="Conditional">
                                                                            <Triggers>
      <asp:PostBackTrigger ControlID="btnAttrnyUpload" />
      <%--<asp:PostBackTrigger ControlID="grdAttorny" />--%>
                                                                            </Triggers>
                                                                            <ContentTemplate>
                                                                            </ContentTemplate>
                                                                        </asp:UpdatePanel>
                                                                    </td>
                                                                </tr>

    Hi,
    For ASP.NET problem, please post in ASP.NET forum!
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to &quot;Mark as Answer&quot; the responses that resolved your issue. It is a common way to recognize those who have helped you, and
    makes it easier for other visitors to find the resolution later.

  • Update Panel posts back after a period of inactivity

    I have a asp.net user control in a SharePoint solution. This user control uses Telerik Asp.net Ajax controls to provide a basic datagrid CRUD operations. I use this grid in a web part on a page in SharePoint 2013.
    I have a datagrid which is wrapped with RadAjaxPanel to ajaxify it.
    It all works fine. However, let's say, I click the add new record button and it opens a form to fill, if I leave that form intact for a minute, then start to fill and submit, it does postback and cancels form.
    However, if I click on add new record and fill the form and submit, it all works fine. I guess there is a timeout somewhere which causes this, my two days of research did not help me to find it.
    I was just wondering whether you have ever come across with this issue. I guess it does not matter whether it is Asp.net update panel or RadAjaxUpdatePanel, even if you have seen this issue on Asp.net update panel, that will help too.
    I did not know what part of the code I should share, please let me know if you need any code to understand this issue.
    There must be something on SharePoint script manager, and ajax manager, but I have no idea what.

    Hi,
    According to your post, my understanding is that you have an issue that the form could not submit after a period of inactivity.
    As the issue only occur while leave the form for a while, how about use the JavaScript
    setInterval method to send request to the server interval?
    You can use the JavaScript setInterval method or call a random SharePoint web service to send the request to the server to keep the form active, then check whether it works.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Text Flow from service order to requisition

    Hi Everyone, I having a problem regarding text flow from service orders IW31/IW32 to requisition ME53N. I created/updated a service order in IW31/IW32 and enter some text in "Operation Short Text" column. When I release the service order the short te

  • Cannot download pictures from incoming email

    This is happening when I use .mac webmail OR my email client at home. When I use webmail, I get a message that says: Unable to process your request. At home, it just tries and tries and nothing happens. I have also tried to forward the email with the

  • Podcast image suddenly disappeared - How can I get it back?

    This has happened before, and I just pointed the itunes image attribute in my RSS to a new .jpg file. After an hour or so, iTunes corrected it. I did the same thing this morning when I saw the image had disappeared. It's been several hours now, and i

  • Pur requisition Characteristics

    Hi Guys For creating a Purchase Reqn Characteristic(CT04) I have two choices for field selection which one should I use and what is the significance of each field. I presume one is for item wise value release and the other is for entire document valu

  • Jerky output with PE9 using XviD 1.2.2

    Hi, I'm a long time user of Corel's Videostudio PRO X3, but I have now converted to Primiere Elements 9. Need some help. Been searching the forum but haven't found anything useful to my problem. I have a Canon Powershot camera recording in .MOV H.264