Localization issue with DatePicker Control in Windows Phone 8.1

Hi,
I am using DatePicker control in wp8.1. Although I am changing device language e.g. Italian, Datepicker control shows in English (Choose Date, Month and Day, app menu). I am expecting it to come according to device language.
When I set default language to Italian in Package.appxmanifest file, DatePicker shows Italian but if I change device language to English DatePicker stays in Italian language.
Any Solution to this issue? Thanks in advance !
Regards,
Anurag
Anurag_24

Hi Anurag,
When you change the region and region format language in the phone you need to restart the phone else the changes will not get reflected. Please try and let me know.
If this answers you please mark it as answer.
Purushothama V S

Similar Messages

  • I heve problem with my WCF and Windows phone 8

    This's IserviceBotanero.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Runtime.Serialization;
    using System.ServiceModel;
    using System.Text;
    namespace WcfServiceBotanero
    // NOTA: puede usar el comando "Rename" del menú "Refactorizar" para cambiar el nombre de interfaz "IServiceBotanero" en el código y en el archivo de configuración a la vez.
    [ServiceContract]
    public class Producto
    int idProducoto;
    [DataMember]
    public int IdProducoto
    get { return idProducoto; }
    set { idProducoto = value; }
    string nombreProductos;
    [DataMember]
    public string NombreProductos
    get { return nombreProductos; }
    set { nombreProductos = value; }
    int cantidad;
    [DataMember]
    public int Cantidad
    get { return cantidad; }
    set { cantidad = value; }
    string precioCompra;
    [DataMember]
    public string PrecioCompra
    get { return precioCompra; }
    set { precioCompra = value; }
    string precioVenta;
    [DataMember]
    public string PrecioVenta
    get { return precioVenta; }
    set { precioVenta = value; }
    string descripcion;
    [DataMember]
    public string Descripcion
    get { return descripcion; }
    set { descripcion = value; }
    [ServiceContract]
    public interface IServiceBotanero
    [OperationContract]
    List<Producto> listado();
    void DoWork();
    this is ServicesBotnero.svc
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Runtime.Serialization;
    using System.ServiceModel;
    using System.Text;
    namespace WcfServiceBotanero
    // NOTA: puede usar el comando "Rename" del menú "Refactorizar" para cambiar el nombre de clase "ServiceBotanero" en el código, en svc y en el archivo de configuración a la vez.
    // NOTA: para iniciar el Cliente de prueba WCF para probar este servicio, seleccione ServiceBotanero.svc o ServiceBotanero.svc.cs en el Explorador de soluciones e inicie la depuración.
    public class ServiceBotanero : IServiceBotanero
    DataClasseBotaneroDataContext botanero = new DataClasseBotaneroDataContext();
    public List<Producto> listado()
    var qry = from p in botanero.producto
    select new Producto
    IdProducoto = p.idProducoto,
    NombreProductos = p.nombreProducto,
    PrecioCompra = p.precioCompra,
    PrecioVenta = p.precioVenta,
    Descripcion = p.Descripcion
    return qry.ToList();
    public void DoWork()
    page view 
    <phone:PhoneApplicationPage
    x:Class="PhoneApp1.PageProductolocal"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    mc:Ignorable="d"
    shell:SystemTray.IsVisible="True">
    <!--LayoutRoot es la cuadrícula raíz donde se coloca todo el contenido de la página-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <!--TitlePanel contiene el nombre de la aplicación y el título de la página-->
    <StackPanel Grid.Row="0" Margin="12,17,0,28">
    <TextBlock Style="{StaticResource PhoneTextNormalStyle}">
    <Run Text="Productos"/>
    <LineBreak/>
    <Run/>
    </TextBlock>
    </StackPanel>
    <!--ContentPanel. Colocar aquí el contenido adicional-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
    <ListBox x:Name="ldlProducto" >
    <ListBox.ItemTemplate>
    <DataTemplate>
    <StackPanel HorizontalAlignment="Center">
    <TextBlock Padding="10" Text="{Binding IdProducto }" ></TextBlock>
    <TextBlock Text="{Binding NombreProduco }" ></TextBlock>
    <TextBlock Text="{Binding PrecioCompra }" ></TextBlock>
    <TextBlock Text="{Binding PrecioVenta }" ></TextBlock>
    <TextBlock Text="{Binding Cantidad }" ></TextBlock>
    <TextBlock Text="{Binding Descripcion }" ></TextBlock>
    </StackPanel>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    </Grid>
    </phone:PhoneApplicationPage>
    PageProductolocal.xaml.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Windows.Documents; //
    using System.Windows.Input; //
    using System.Windows.Media; //
    using System.Windows.Media.Animation; //
    using System.Windows.Shapes; //
    using System.Net;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Navigation;
    using Microsoft.Phone.Controls;
    using Microsoft.Phone.Shell;
    using PhoneApp1.ServiceReferenceBotanero;
    namespace PhoneApp1
    public partial class PageProductolocal : PhoneApplicationPage
    public PageProductolocal()
    InitializeComponent();
    //instancia o Referencia al wcf
    ServiceBotaneroClient proxy = new ServiceBotaneroClient();
    proxy.listadoCompleted += new EventHandler<listadoCompletedEventArgs>(listado);
    proxy.listadoAsync();
    private void listado(object sender, listadoCompletedEventArgs e)
    if (e.Error == null)
    ldlProducto.ItemsSource = e.Result;
    and SW Runing
    So and this is the error shown
    El código de usuario no controló System.ServiceModel.CommunicationException
    HResult=-2146233087
    Message=The remote server returned an error: NotFound.
    Source=System.ServiceModel
    StackTrace:
    at System.ServiceModel.AsyncResult.End[TAsyncResult](IAsyncResult result)
    at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
    at System.ServiceModel.ClientBase`1.ChannelBase`1.EndInvoke(String methodName, Object[] args, IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.ServiceBotaneroClientChannel.Endlistado(IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.PhoneApp1.ServiceReferenceBotanero.IServiceBotanero.Endlistado(IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.OnEndlistado(IAsyncResult result)
    at System.ServiceModel.ClientBase`1.OnAsyncCallCompleted(IAsyncResult result)
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: NotFound.
    Source=System.Windows
    StackTrace:
    at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
    at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
    at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: NotFound.
    Source=System.Windows
    StackTrace:
    at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
    at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClasse.<EndGetResponse>b__d(Object sendState)
    at System.Net.Browser.AsyncHelper.<>c__DisplayClass1.<BeginOnUI>b__0(Object sendState)
    InnerException:
    That is not what I need or what the error if 
    Help Me!

    Hi,
    You could try to use HttpClient to consume wcf in windows phone 8.
    Here is an exsample you could refer:
    http://stackoverflow.com/questions/21536825/windows-phone-8-call-wcf-web-service
    Besides, you could refer to :
    http://www.codeproject.com/Questions/691619/Consuming-WCF-Service-from-Windows-Phone
    Since this issue is more related to Windows Phone, If my reply no help, please move to Windows Phone forum for a better support, It is appropriate and more experts will assist you.
    Best Regards,
    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.

  • HT4527 Is there an issue with home sharing and windows 8?

    Is there an issue with home sharing and windows 8? I've tried everything and cant get mine to work.

    Here is the entire error listing after it states the installation encountered errors.
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 2 error(s), 13 warning(s)
    WARNING: DW066: OS requirements not met for {0D96CFE6-376D-44B8-808A-16F3BEB73263}
    WARNING: DW066: OS requirements not met for {601CB5BC-03F9-43CC-86F0-C75E65E6AF31}
    WARNING: DW066: OS requirements not met for {56AE7FCC-81B2-4A63-A171-CD95C9295EF2}
    WARNING: DW066: OS requirements not met for {4717AE70-5377-45C7-A9E9-4E400485F0BF}
    WARNING: DW066: OS requirements not met for {8B59B329-26C1-48A4-A5AA-923F55B17B87}
    WARNING: DW066: OS requirements not met for {948B7277-3D4C-4672-B1DB-24B3C83D704E}
    WARNING: DW066: OS requirements not met for {25303D67-B573-460C-A0B6-B5CF2AE05045}
    WARNING: DW066: OS requirements not met for {33E08F4F-42B7-42A9-89E4-443E02738DB0}
    WARNING: DW066: OS requirements not met for {D5B1535A-FDFC-4B40-B2E2-21DA83D9CB57}
    WARNING: DW066: OS requirements not met for {AD60EB24-4CEE-4CA0-A6AA-526EAF41F2DB}
    WARNING: DW066: OS requirements not met for {F9FAC696-2E48-497D-B820-C9A65DA630DF}
    WARNING: DW066: OS requirements not met for {7DE6CDC3-CFEE-4564-813D-3F59E5D71F10}
    WARNING: DW066: OS requirements not met for {C92E440F-EE79-4A28-B1E1-EC82B6F2AF33}
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Flash CS5.5 depends on Adobe Flash Player 10 ActiveX to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

  • Issue with copy control of Delivery document to Billing document

    Hi All,
    I am having some issue with copy control of Delivery document to Billing document.
    I am having two line items in Delivery documetn, one is for item to be delivered to customer and other which is created due to batch determination.
    Now , when I create billing document (VF01) with reference to this delivery document , I want only one line item (for the one which needs to be delivered to customer).
    I have used following things in  copy contro from ZLF to ZF2:
    Copying requirements: 004 ( Deliv-related item)
    Data VBRK/VBRP: 007 "(Inv.Split (Rec/Div))
    Is it correct or shall I use something else, so I have only one line item in Billing document.
    Regards
    Nidhi

    Pls. search the forum.
    Pls. refer the below link -
    Line with 0 quantity for main item with batch split
    Thanks

  • How to use radioButton(s) and image controls on windows phone 8.1

    how to use radioButton(s) and image controls on windows phone 8.1

    Hi aspirantme,
    >>how to use radioButton(s) and image controls on windows phone 8.1
    Which version of your app is? Runtime or Silverlight?
    For Runtime version, please see the following articles:
    #RadioButton class
    https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.radiobutton(v=win.10).aspx
    #How to add radio buttons (XAML)
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868200.aspx
    #Image class
    https://msdn.microsoft.com/library/windows/apps/br242752.aspx
    For Silverlight version, please refer to the following documents and guidelines:
    #RadioButton Class
    https://msdn.microsoft.com/en-us/library/windows/apps/system.windows.controls.radiobutton(v=vs.105).aspx
    #RadioButton control design guidelines for Windows Phone
    https://msdn.microsoft.com/en-us/library/windows/apps/hh202881(v=vs.105).aspx
    #Image Class
    https://msdn.microsoft.com/en-us/library/windows/apps/system.windows.controls.image(v=vs.105).aspx
    #Quickstart: Images for Windows Phone
    https://msdn.microsoft.com/en-us/library/windows/apps/jj206957(v=vs.105).aspx
    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.

  • Issues with illustrator 10 and windows 8

    any known issues with illustrator 10 and windows 8...version worked fine on windows xp....new computer with windows 8....now cannot seem to operate. Loads, and shows access but will NOT start up. help ! thanx ttp74

    AI 10 is now 10 years or so old and was never tested on nor designed for Win 7 or Win 8. You should simply assume it's not compatible and will never run properly. feel free to spend your time with the compatibility modes and al lsorts of hacking with the security stuff and otehr settings, but to be honest, it will probably be a waste of time.
    Mylenium

  • Having an issue with Parental Controls...

    Hi, I'm having an issue with Parentel Controls.
    I run several student labs set with parental controls on the systems for a higher education facility. We don't have restricted access to web content (our students need to look up a lot of things, even some that would be considered racey, it's an arts school) and when I set it to "Allow Unrestricted Access" to web content, about a week or so later I'll start getting reports that content is being blocked. I go to check, and sure enough the controls are set to "restrict access to content".
    I've had two interations of this issue thus far and it's a pane to go through each system (there are a lot of systems) and manually reconfigure them back to default.
    Any tips?

    My son could not interact with sites (log in, post) but he could access them (when parental controls were turned on). I had to go under "preferences" on Firefox (under his name) First go to the drop down the menu from the word "Firefox" then "Preferences" "Privacy" (at the top) then "Exceptions" on the right..... and add each address of the sites and pages I wanted to allow. That worked like a charm!! Maybe pull up the itunes STORE address, copy and paste it in "always allow" (you can choose "block" also.....) This is in Firefox PREFERENCES, not just the parental control section.....
    Let us know if that helped! Apple was NO help. (I am an Apple fan, but I am not paying 49.99 to get a question answered by someone who didn't sound like he knew anything, anyway...) I think when you pay for a computer you deserve to have ALL the features work... Is that too much to ask?

  • I am having issues with my computer recognizing my phone when attached. I am trying to transfer pictures to my computer but it doesn't even see the phone.

    I am having issues with my computer recognizing my phone when attached. I am trying to transfer pictures to my computer but it doesn't even see the phone.

    skinaked101,
    Look no further help is here! I can understand the importance of being able to keep your pictures safe on your computer.
    Have you tried using different USB ports on your computer, as your fellow community member suggested?
    Visit http://www.verizonwireless.com/support/knowledge-base-97259/ for complete steps to transfer the pictures from your phone to computer.
    JohnB_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Initial issues with PS CS4 Extended Windows XP Pro.

    Initial issues with PS CS4 Extended Windows XP Pro.
    CS3 worked just fine but had many issues with Bridge CS3. So frustrating that the $$ to upgrade to CS4 seem worth it. Mostly works OK with the following exceptions:
    1. Sometimes the file menu selections are non-selectable grey including fundamental functions like Open and Exit not even clicking on the x will allow PS to close! I found a workaround, I can select a tool that is not currently selected (like the crop or brush) and now the menu items appear.
    2. The Arrange Documents drop down menu is blank except for the lower text portion. All icons are missing. Roll over text popup shows what is supposed to be on the menu but no icons.
    3. I have setup Bridge CS4 to auto start at logon. Works OK but sometimes for whatever reason stays busy after I close. Task Manager shows Bridge using up to 25% of CPU time and the program is not even open!
    5. I purchased a couple Canon EOS 50Ds as backup cameras for our business. Worked last week with CS3 and Bridge with Raw 4.6 upgrade. Does not work with RAW 5.0 in CS4bummer!

    I had the same problem with blank/missing "Arrange Documents" icons. And I use NIK and OnOne plugins (CS4 & Vista). These plugins are all supposed to be compatible with CS4 and I use them ALOT - so I refused to remove them. Today I also started having a problem with an error re: needing to install a printer before I could select print functions.
    I found the answer to both problems!! While researching the error message I found information from Adobe support stating that you should:
    1. Quit Photoshop
    2. Vista: Rename the Users\[username]\AppData\Roaming\Adobe\Adobe Photoshop CS4\Adobe Photoshop CS4 Settings\Adobe Photoshop CS4 Prefs.psp file to Adobe Photoshop CS4 Prefs.old
    Windows XP path: Documents and Settings/[username]/Application Data/Adobe/Adobe Photoshop CS4/Adobe Photoshop CS4 Settings/Adobe Photoshop CS4 Prefs.psp
    3. Start Photoshop - it will create a new preferences file.
    My print error message is gone AND I have Arrange Documents icons!!!

  • How do I distribute a dll with UserControl made for Windows Phone 8.1 Xaml WinRT to other developers

    I have created a dll for Windows Phone 8.1 Xaml WinRT.  It has two UserControls and two classes with APIs for developers to use.  In the Silverlight environment, I would just send the DLL from the BIN directory to the other developers who would
    reference it and be able to consume the UserControls.
    With WP 8.1 Xaml there are several files in the BIN directory besides the DLL; there is also the following:
    A .pdb file
    A .xbf for each UserControl
    A .pri file
    A .xr.xml file
    When I send it to the other developers and they have all of the files from the BIN directory, they reference the .DLL but get the following when they try to use one of the UserControls at design time:
    TargetInvocationException: Exception has been thrown by the target of an invocation.
    TypeLoadException: Could not find Windows Runtime type 'Windows.UI.Xaml.TickBar'.How do I need to package this for the other developers to be able to consume properly.  I looked at Visual Studio
    Extensions that that seems like a lot of work to just send someone a DLL.
    Dick

    Hello Dick , 
    I have a problem similar to your problem, currently I am making a one dll file that contained  one class file and one User control. after build project
     I could see files like  this a photo.
    Acutually I am trying to  make a extension sdk, but I don't know correctly how to place files to dirctroy.
    As mentioned by you I tried to follow.
    LIBRARYNAME.dll
    LIBRARYNAME.pri
    LIBRARYNAME(folder)
    ---UserControl.xbf
    ---UserControl.xaml
    ---UserControl.xr.xml
    But I can not use the xaml( usercontrol.xaml ) on when installed in other apps.
    This is my vsix folder sturucutre ,Let me know if you ever know about that
    best regard 
    Derrick

  • Severe Security Issue with Sharing Permissions and Windows

    I recently discovered a severe Security issue with the windows sharing an permission settings:
    I have two users, an admin user and a parental controlled user. On my mac mini, i have a external harddrive connected. On the harddrive, i have three folders, Itunes, Iphoto (Package) and a Temp Folder. I want to share the Harddrive RW for the admin, but only R for the parental user. But the Temp folder should be accessible for RW for the parental as well.
    1. I set the Drive checkbox "ignore ownership" off.
    2. I set the permissions of the drive to admin RW, parental R and Everyone to "no access"
    3. I apply to enclosed Items
    4. I set the permission of the Temp folder to admin RW, parental RW and Everyone to "no access"
    5. I apply to enclosed Items
    6. I go to "File Sharing" in the Preferences and activate SMB sharing for both users
    7. I delete all previous shares
    8. I add the Disk and use the proposed permissions which are admin RW, parental R, Everyone "no access"
    9. I add the Temp folder and use the proposed permissions which are admin RW, parental RW, Everyone "no access" - Funny, there is a new Group called "Temp" created which has custom access on both sharepoints
    10. I connect to the mac over a Windows machine (NTLM auth set appropriatly). Now I try to create a folder on the root of the Disk share, I get a denied message.
    BUT WHEN I GO INTO A SUBFOLDER (eg. ITUNES or IPHOTO), WHICH HAS ALSO JUST "R" PERMISSION FOR THE PARENTAL USER, I AM ABLE TO RW, DELETE AND DO EVERYTHING!!!
    TO RECAPITULATE: THE SHARING PERMISSIONS ARE "R", AND THE FILE PERMISSIONS IN THE RESPECTIVE FOLDERS FOR THE RESPECTIVE USER ARE ALSO JUST "R". BUT THE USER CAN DO EVERYTHING IN THE SUBFOLDERS!!!

    I recently discovered a severe Security issue with the windows sharing an permission settings:
    I have two users, an admin user and a parental controlled user. On my mac mini, i have a external harddrive connected. On the harddrive, i have three folders, Itunes, Iphoto (Package) and a Temp Folder. I want to share the Harddrive RW for the admin, but only R for the parental user. But the Temp folder should be accessible for RW for the parental as well.
    1. I set the Drive checkbox "ignore ownership" off.
    2. I set the permissions of the drive to admin RW, parental R and Everyone to "no access"
    3. I apply to enclosed Items
    4. I set the permission of the Temp folder to admin RW, parental RW and Everyone to "no access"
    5. I apply to enclosed Items
    6. I go to "File Sharing" in the Preferences and activate SMB sharing for both users
    7. I delete all previous shares
    8. I add the Disk and use the proposed permissions which are admin RW, parental R, Everyone "no access"
    9. I add the Temp folder and use the proposed permissions which are admin RW, parental RW, Everyone "no access" - Funny, there is a new Group called "Temp" created which has custom access on both sharepoints
    10. I connect to the mac over a Windows machine (NTLM auth set appropriatly). Now I try to create a folder on the root of the Disk share, I get a denied message.
    BUT WHEN I GO INTO A SUBFOLDER (eg. ITUNES or IPHOTO), WHICH HAS ALSO JUST "R" PERMISSION FOR THE PARENTAL USER, I AM ABLE TO RW, DELETE AND DO EVERYTHING!!!
    TO RECAPITULATE: THE SHARING PERMISSIONS ARE "R", AND THE FILE PERMISSIONS IN THE RESPECTIVE FOLDERS FOR THE RESPECTIVE USER ARE ALSO JUST "R". BUT THE USER CAN DO EVERYTHING IN THE SUBFOLDERS!!!

  • Eprint - Problem with ePrint Mobile and Windows Phone

    Good morning,
    I purchased a printer Officejet Pro 8600 and I have the following problem:
    When we try to print from mobile Nokia Lumia 920 with Windows Phone 8, works fine if I print via  attached text files (. DOC,. Txt) or. PDF or text in the message body. But when attachment is, image files (. JPG) does not work and,at the history ePrintCenter,  shows an DISCARDED or  ERROR message (attached copy of the screen). The same image files, sending mail from a PC, print correctly.
    I need help. Thank you.

    Hi kbdseattle,
    Thank you for being an active member of the HP Support community.
    The only way to ePrint from a Windows-based mobile phone is to email the printer.  You can find the printer's email address by pressing the 'ePrint' icon on the front panel of your printer.  When you press this icon it should display the printer's email address.  If it's not and asking you to accept the terms of service you haven't activated the web services and set up the ePrint functionality of the printer.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Any known issues with updating to the Windows 8.1 RTM?

    The Windows 8.1 RTM is finally on MSDN. I was looking to run the update and wanted to see if anyone has upgraded and see if anyone has seen any issues with CC.

    In case anybody else is using Windows 8.1 on 3200 x 1800 resolution and experiencing the same problem, I think I may have found a workaround.  At least on this laptop (Dell XPS15) I can right
    -click on the EDQ application in the Start Menu and choose to Run with graphics processor / High - performance (NVIDIA) processor.  This appears to render the EDQ canvas with sympathetically sized fonts making the processes, and the attributes within processors, readable again.
    I would be interested to hear if anybody has some Java font parameter that can be set to control the font size on Java applications, but for now the problem I had appears to be solved.

  • Troubles with client certificates in Windows Phone 8.1 WebViews

    Hi,
    I'm having difficulties using a client certificate in Windows Phone 8.1 WebViews.
    My code works fine in my Windows 8.1 App but i get a WebErrorStatus=[CertificateIsInvalid] in WebView.NavigationCompleted in WP.
    I'm using this code to import my certificate :
    await CertificateEnrollmentManager.ImportPfxDataAsync(certificateBase64, certificatePassword, ExportOption.NotExportable, KeyProtectionLevel.NoConsent, InstallOptions.None, "MyClientCertificate");
    I have no problem using this cert in HttpClient with either Windows 8.1 or Windows Phone 8.1.
    I don't understand why it doesn't work with the WebView control only on Windows Phone.

    Tried it with no success.
    But I just found this : https://blogs.msdn.com/b/wsdevsol/archive/2014/07/31/programmatically-create-and-configure-a-client-certificate-for-use-in-your-windows-runtime-based-app.aspx?Redirected=true
    With the note at the bottom: 
    Note: For Windows Phone 8.1, you need to attach the Client Certificate programmatically. For Windows, once you install the Client Certificate to the app container
    store and do not attach the client certificate with the HttpClient request, the HttpClient class will automatically detect that there is a single certificate installed in the app container store and forward it to the server. However in the case of Windows
    Phone 8.1, there is no such “automatic” selection of the certificate and one MUST provide the certificate programmatically.
    Since there seems to be nothing to attach a custom HttpBaseProtocolFilter to a WebView, it doesn't seem possible atm.

  • Does Verizon ever provide a different model phone if the customer has basically had the same issues with 3 prior 'replacemet' (refurbished) phones?

    I have owned a Samsung Galaxy Stellar for the about the past year and a half, which is only my second smartphone. I am not a whiz at all this but I'll try to be coherent. I had problems with the Stellar  from the beginning: Very slow loading browser, problems with the cursor, etc. After about 6 months, the phone dropped, and no, I didn't throw it on the ground!
    I have insurance and it was still under warranty, so it was replaced, by Assurian, I believe. The replacement phone had the same problems, plus a whole lot more. During calls, the wifi, and/or Bluetooth options would appear, or the phone would suddenly go on mute. In addition, when I tried to access my voicemail, what I heard was my own voice and outgoing message, not the one from Verizon asking for the password. These problems were intermittent, which made the Verizon employees  dubious, but it's like the car that you take to the garage that suddenly works fine. Anyway, there were some other problems too, so I got a replacement phone again, which is the phone I currently have had for about 3 months. A few days ago it went from bad to worse. In fact it went Crazy!: Every call I make or receive is immediately dropped. Maybe after 5 or 6 tries, I can  complete a call, but rarely. When I do, the mute and speaker options spontaneously activate, at the same time!!  When I go into my voicemail, the messages are deleted in rapid fashion, one after the other, and I cannot get them back.   Or, as I said earlier, the Wifi/Bluetooth screens appear, and it's difficult to punch in any numbers as I have to hit the back arrow many times. Strangely, the phone makes odd sounds: It buzzes or makes this odd chiming sound! If I didn't know better, I would think that I have finally lost my mind! I could go on but you have the gist.  The phone is simply not workable. I  phoned tech support, and she was very nice. After an hour on the phone, it worked ok, until the following day. She didn't do a factory reset, but she had me take the sim card and battery out. She did things on her end, which unfortunately I don't recall, but the phone worked ok until the following day, when it went crazy again.
    I took it to the corporate Verizon store where I live, The guy said "It's a lousy phone, a cheap, bottom of the line phone." By the way, throughout this time, I had had about 6 hours with tech support, between this phone and the last one.
    THIS IS MY QUESTION: I asked him if I could have a totally different phone, since this model is clearly defective. He said no, but they could send me another replacement. He told me to call trech support  while I was there in the store and ask them, because they don't do repairs at the store. The tech on the phone  told me the issue is with my Gmail account! That there is a virus on some phones and each time I get a replacement phone, because I have kept the same Gmail account, the virus keeps getting 'transferred', for lack of a better word, to the next phone. I was totally incredulous. Virus? She said, "Well, I use the  term loosely, but it's just a weird glitch.When you get a replacement phone, bring it back and we'll save and upload all your data, and set  you up with a new email account." I was confused and annoyed, as I had never heard of this, and felt I was getting the runaround. I asked her if they could give me a different phone (free of charge) and of course the answer was no. By the way, I should mention that the Stellar is no longer made. These are my options, according to the 3 different Verizon employees I spoke with: I am eliblele for the early upgrade which they call the Edge. From what I understand, it's the full retail price paid out over 2 years, with a partial payment made at time of purchase. One person told me that after 24 months, they would accept what I paid as payment in full? Sounds too generous. Option 2 is $50 of a new phone, and option 3 is to buy a new phone at a Verizon store that is having an android sale. So, I acquiesced to getting another replacement which I will keep until I buy a new totally different phone. My impression is that it's not like buying a bad toaster. They don't refund your money and let you get whatever you want for the same price! My question is this: Does Verizon ever just replace a phone that has had problems, with a totally different model? I have made as much of a stink as I can muster towards that end, but I am wondering if anyone out there has actually been able to pull that off?
    Thank you for any feedback ,comments or stories!

        amysue, We defintely want you to have a reliable and working phone. Our apologies that you have had issues with the current model, the Galaxy Stellar. After reviewing information about the overall function of the phone, it does not appear that Samsung has recalled the device or stated that all Stellar devices are defective, with that being said, the warranty would still only cover the same make and model. The only time a completely different phone is sent out is if the manufacturer deems the entire make and model overall faulty. It is common to have a few glitches and a master/factory reset, in addition to all other troubleshooting, will help resolve these issues. The Stellar is no longer made because there have been several Samsung galalxy devices launched, and this is common with any device manufacturer. Our recommendation is to take advantage of EDGE, if you are seeking a new device with low monthly payments. This gives you the chance to explore different device options without having a contract and you can EDGE up to a new device once meeting certain requirements. We hope to resolve your concerns here or by calling customer support.
    sheritah_vzw
    Follow us on Twitter
    @VZWSupport

Maybe you are looking for

  • Can;'t get iTunes to recognize new iPod

    I just bought a second Nano, and when I plug it in and open iTunes, it won't recognize it at all. I just successfully updated my old Nano fo my wife, so iTunes is working. Help! Thanks.

  • RfcAdapter-Reciver error in channel GeneratedReceiverChannel_RFC

    Hi all, We had setup up ALM in XI/PI, sometime we receive alert with below content: Blank in below fields: SXMS_ERROR_CODE, SXMS_ERROR_CAT, SXMS_MSG_GUID SXMS_FROM_SERVICE, SXMS_FROM_INTERFACE, SXMS_TO_INTERFACE Have values in below fields: SXMS_TO_S

  • Dell notebook with d-link DWL-650+ card can't connect to Airport

    I bought a new iMac G5 (with the intel duo) and an Airport Extreme. Sweet. No problems with either one. My son has a dell notebook (running Windows ME) with a D-Link DWL-650+ wireless card in it. (its a b card). I can see my airport network from this

  • Urgent JBO-26041: Failed to post data to database during (in insert Clob)

    HI , we have a code to get the clob and then write it to the database HttpSession session = UIServices.getHttpSession(context); byte] payloadByteArray = (byte[)session.getAttribute("FILE_BYTES_fileName"); String payloadStr = null; try { //get the str

  • ESS Role

    Hi all, I have deployed the ESS business package on my Portal. I have assigned the Portal ESS role also to my user ID. Now when i log on to my portal i get the ESS tab but when i am trying to click on any of the ESS application like Employee search i