Create a signature capture for Windows Phone 8.1 App

I am creating a Windows Phone 8.1 app with signature capture control on one of my page. I am looking for an approach using C# so that I can draw points on a XAML with Canvas control. But it seems like that InkPresenter name space is removed from Windows
Phone 8.1. Is there anyway I can get it around?
Thanks, 

Hi edwlin,
Please try the suggestion provided by Rob Caplan in this thread:
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/2a428bef-d7a3-423b-a288-4c4b4efa8034/capture-digital-signature-in-windows-phone-blank-app?forum=wpdevelop
Quote:
You can capture the signature by listening to pointer messages and storing the points as they come through. You can then render them as Path segments.
See Quickstart: Pointers
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.

Similar Messages

  • How to create a VPN client for Windows Phone 8.1?

    We have our own VPN client for Windows and Android. I would like to create a VPN client  for Windows phone 8.1. After referring these site I found that there are some third
    party VPN plugins available for WP 8.1.
    I checked OpenVPN but it is also not available for WP 8.1.
    Is there any APIs available for creating a VPN client in WP 8.1 similar to
    VpnService provided by Android SDK ?

    The VPN APIs for WP8.1 are not open at this time.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Make clickable UI-elements for windows Phone 8.1 apps maps

    Windows Phone 8.1 App , C#
    I would like to let the user add Pushpins ( which apparently are called MapIcons ) to the map and when the user clicks the newly created Pushpin some other ui-elements should appear.
    But apparently MapIcons are not clickable and you can not inherit from them since they are sealed, so no luck in making them clickable.
    I tried to just extend from Windows.UI.Xaml.Controls.Button , but those have not Location, probably because the do not belong to the Windows.UI.Xaml.Controls.Maps-namespace. So I can not really add them to the Windows.UI.Xaml.Controls.Maps.MapControl.Children
    or Windows.UI.Xaml.Controls.Maps.MapControl.MapElements, since they will not be on the map where I would want them to be.
    So how do you make a clickable ui-element that I can give a location on the map?
    I already was here
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn792121.aspx#showing_xaml_controls_and_shapes_on_the_map
    But I don't see how I can add clickable elements to my map
    I could write something like this of course
            <Maps:MapControl Grid.Row="1"
                x:Name="map"
                MapServiceToken="token"
                >
                <Maps:MapIcon>
                </Maps:MapIcon>
            </Maps:MapControl>
    But this MapIcon again is not clickable and it also staticly coded. I want to add mine dynamic.

    Hi Michael,
    Yes, as you said the MapIcon is not clickable, then for the workaround, please try to check the reply which posted by @Jogy in here:
    http://stackoverflow.com/questions/25377526/windows-phone-8-1-mapicon-click-event .
    Rest Regards,
    Amy Peng
    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.

  • How share content on whatsApp And Instagram for windows phone 8.1 App Development

    I am developing an App using sharie Contract Ux (using DataTransferManager )
    sample code is given below it is showing facebook ,twitter but not showing whatsApp and Instagram .
    Am I missing something ?
    public sealed partial class MainPage : Page
    private DataTransferManager dataTransferManager;
    public MainPage()
    this.InitializeComponent();
    this.NavigationCacheMode = NavigationCacheMode.Required;
    /// <summary>
    /// Invoked when this page is about to be displayed in a Frame.
    /// </summary>
    /// <param name="e">Event data that describes how this page was reached.
    /// This parameter is typically used to configure the page.</param>
    protected override void OnNavigatedTo(NavigationEventArgs e)
    // TODO: Prepare page for display here.
    // TODO: If your application contains multiple pages, ensure that you are
    // handling the hardware Back button by registering for the
    // Windows.Phone.UI.Input.HardwareButtons.BackPressed event.
    // If you are using the NavigationHelper provided by some templates,
    // this event is handled for you.
    this.dataTransferManager = DataTransferManager.GetForCurrentView();
    this.dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.OnDataRequested);
    protected override void OnNavigatedFrom(NavigationEventArgs e)
    this.dataTransferManager.DataRequested -= new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.OnDataRequested);
    private void OnDataRequested(DataTransferManager sender, DataRequestedEventArgs args)
    var request = args.Request as DataRequest;
    DataPackage requestData = request.Data;
    requestData.Properties.Title = "MY PHOTO";
    requestData.Properties.Description = "Share App";// The description is optional.
    requestData.Properties.ContentSourceApplicationLink = new Uri("ms-appx-web:///" + "www.google.com");
    // It's recommended to use both SetBitmap and SetStorageItems for sharing a single image
    // since the target app may only support one or the other.
    List<IStorageItem> imageItems = new List<IStorageItem>();
    imageItems.Add(this.imageFile);
    requestData.SetStorageItems(imageItems);
    RandomAccessStreamReference imageStreamRef = RandomAccessStreamReference.CreateFromFile(this.imageFile);
    requestData.Properties.Thumbnail = imageStreamRef;
    requestData.SetBitmap(imageStreamRef);
    // succeeded = true;
    private async void SelectImageButton_Click(object sender, RoutedEventArgs e)
    // CoreApplicationView view = CoreApplication.GetCurrentView();
    //FileOpenPicker imagePicker = new FileOpenPicker
    // ViewMode = PickerViewMode.Thumbnail,
    // SuggestedStartLocation = PickerLocationId.PicturesLibrary,
    // FileTypeFilter = { ".jpg", ".png", ".bmp", ".gif", ".tif" }
    StorageFile logoFile =
    await Package.Current.InstalledLocation.GetFileAsync("Assets\\download.jpg");
    // List<IStorageItem> storageItems = new List<IStorageItem>();
    this.imageFile = logoFile;
    // ImageHolder.Source = "/Assets/download.jpg";
    Output.Visibility = Visibility.Visible;
    ShareStep.Visibility = Visibility.Visible;
    // if (pickedImage != null)
    // this.imageFile = pickedImage;
    // // Display the image in the UI.
    // IRandomAccessStream displayStream = await pickedImage.OpenAsync(FileAccessMode.Read);
    // BitmapImage bitmapImage = new BitmapImage();
    // bitmapImage.SetSource(displayStream);
    // ImageHolder.Source = bitmapImage;
    //// this.rootPage.NotifyUser("Selected " + pickedImage.Name + ".", NotifyType.StatusMessage);
    // ShareStep.Visibility = Visibility.Visible;
    private StorageFile imageFile;
    private void Button_Click(object sender, RoutedEventArgs e)
    DataTransferManager.ShowShareUI();

    Whatsapp and Instagram must not be Share Targets for the type of content you are sharing.
    Bret Bentzinger (MSFT) @awehellyeah

  • New Skype Emoji not appearing on Skype for Windows Phone

    Posted here because I couldn't select "Skype for mobile" in the Windows 10 Edge browser... I've noticed that emoji like (Windows10) do not appear in Skype on Windows Phone.  Instead, I see an empty white box.  I also don't see the text of the emoji. Seems like an issue with Skype for Windows Phone where the app understands that (Windows10) is an emoji, but can't find the image to display.   

    Please,  run the DirectX diagnostics tool (32-bit option only).
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.

  • How is SQLite used for windows phone 8.1 in Visual Studio2013

    Hi, 
           I'm developing app on Windows 8.1 currently. Can any one please help me with the steps to proceed so that I can create a database using SQLite for windows phone 8.1 through Visual Studio2013.

    Hi SwetaSinha,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help
    System, and Visual Studio Editor.
    Based on your issue, if you want to know how to create a database using SQLite, I suggest you can ask this issue directly to the  SQLite official website:
    http://www.sqlite.org/support.html, maybe you will get better support.
    In addition, since the SQLite is a extension tool for the Windows Phone 8.1, so I suggest you can post this case to the SQLite for Windows Phone 8.1:https://visualstudiogallery.msdn.microsoft.com/5d97faf6-39e3-4048-a0bc-adde2af75d1b,
    and then click “Q AND A”, you will get better support there.
    Thanks for your understanding.
    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.

  • Make a flashlight App for Windows Phone 8.1 (TorchControl not supported)

    I want to develop a simple flashlight app for Windows Phone 8.1 (non Silverlight). I used the TorchControl but it returns a false when i tried to run on my Device
    Here is the code i Used
    private async void SwitchOn(object sender, RoutedEventArgs e)
    var mediaDev = new MediaCapture();
    await mediaDev.InitializeAsync();
    var videoDev = mediaDev.VideoDeviceController;
    var tc = videoDev.TorchControl;
    if (tc.Supported)
    if (tc.PowerSupported)
    tc.PowerPercent = 100;
    tc.Enabled = true;
    else
    res.Text = "not Supported";
    Is there any other way to do that..
    Thanks In Advance.
    Gopal Kandoi

    Hi Gopal,
    I would also suggest you to try the solution from this post:
    https://social.msdn.microsoft.com/Forums/en-US/329c40e7-fa9a-4a27-8347-b4a80100842e/cant-turn-on-lumia-1520-wp-81-flashlight-use-videodevicecontrollertorchcontrol?forum=wpdevelop
    Start the video capture first and then start the torch control.
    --James
    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.

  • Books about MVVM, architecture, design patterns for Windows Phone 8.1

    Hi,
    I'm looking for a book or books (or other resources) that explain how to develop an app with a proper architecture. I mean what each layer (bussines layer, data layer, network access) should do and how should it look like. I'm also looking for a book about
    MVVM.
    Right now I'm struggling with how to create a layer for network communication - how to separate classes for requests and responses, how to manage requests and create some queue of requests and also to provide some way to cancel them when they are no longer
    needed, how to work with servers that use some level of security (cookies, certificates etc.).
    Another thing is caching - how to design a short-term cache or a persistant cache (database), what technologies I can use etc.
    Last thing that I'm struggling with is also naming. How to name classes in those layers, e.g. to distinguish between classes mapping data from some ORM database, for mapping on JSON in network communication. etc.
    I hope you got the idea :)
    Thanks.

    Currently, I don't find a book about MVVM pattern for Windows Phone 8.1, but I think MSDN and some blogs have some useful samples and conceptions: http://msdn.microsoft.com/en-us/library/windows/apps/jj883732.aspx
    http://channel9.msdn.com/Series/Windows-Phone-8-1-Development-for-Absolute-Beginners
    And I think your question includes too much scopes, maybe you need to split it into some blocks and get help in the related forum
    Best Regards,
    Please remember to mark the replies as answers if they help

  • Why are you not developing for windows phone 8.1 yet?

    I've heard a lot of good things about Microsoft opening up their platforms for developers. I literally used Firefox, Firefox sync, and enjoy Firefox as my default browser. I've seen a few posts saying Mozilla isn't currently developing for Windows Phone and I'm just wondering why. I know there is a demand for it. It would dominate the Windows Phone market for sure. I'd really like to see it come to the platform so can someone explain why specifically it isn't? What restrictions are still being faced if any?

    hello, originally there have been technical and legal hurdles in the app store which discouraged mozilla from starting any developments in this direction. i don't know about the current situation, but since mozilla is now focusing its energies on creating firefox os as open source web-based platform, i doubt that you will see firefox on your windows phone device in the foreseeable future...

  • Submit: Great Skype for Windows Phone ideas

    We have just launched a new Windows Phone idea board to let you all share and exchange your ideas on how to improve and develop Skype for Windows Phone.
    Before you start sharing your ideas, here are some guidelines to help you get started:
    Idea Submission Guidelines
    Search before posting. Do a quick search and make sure you are not submitting a duplicate. If the idea already exists show your support by giving kudos to the original idea rather than watering down the potential impact across multiple submissions.
    Draft your idea. Be as clear as possible, tell us what your idea is, how it would benefit users and why you think we should consider it. That will not only help us to better understand what you want, but we may even be able to solve your problem more quickly another way. Please avoid text speak and keep the idea short and to the point. Ideas are available within a limited number of topic sections of the community as they are not discussion threads.
    Currently you can choose one of the following topic labels for your ideas:
    Video Messaging
    We‘ve just launched Video Messaging on Windows Phone so you can now send video messages to family and friends, even when they’re not online. Let us know what you think of Video Messaging on Windows Phone and any ideas you have for how we can make it better. 
    Phone Integration
    Tell us how you would like Skype to be integrated with Windows Phone. Would things be easier if Skype was better integrated with the People Hub? Integrated into the messaging app? Or in the dial pad? 
    Contacts
    How can we make it easier for you to find friends and family on Skype and add them as a contact? What are your thoughts on how contacts are managed on Skype for Windows Phone? Do you have any recommended improvements?
    Calling
    Tell us how you would like Skype to be integrated with Windows Phone. Would things be easier if Skype was better integrated with the People Hub? Integrated into the messaging app? Or in the dial pad? 
    Instant Messaging
    Video calling is one of Skype’s most popular features. What do/don’t you like about Video calling on Skype for Windows Phone and do you have any ideas for how we can make video calling even better? 
    Some things to include:
    Start with a clear title
    add appropriate label(s)
    list features and benefits
    Review the ideas of others. Look at other ideas to see what your fellow community members are requesting and feel free to exchange on them in the comments section. While we take into account the numbers of kudos an idea receives, we also consider the amount and quality of member feedback when making our decisions.
    Add value. Vote for those items that you like and agree with by giving the idea a kudos. It's really a significant way to recognize someone's effort. We are using votes as a barometer to find out more about what our contributor community thinks is important, so we can factor this into our prioritization process.
    Submit a new idea. Adding an idea is just like posting a message on a board. To create an idea, click on the “New Idea” button, located on the left side of the page content tab, and in the left column under the actions heading click “create an idea”. Be sure to enter a clear title and description of your idea so others can decide how they would like to vote. Remember, the more complete your thought, the more likely it is to get noticed! You can use simple HTML, format the text, or add links or images. You can also preview your idea and check your spelling before you post the idea.
    Do not be discouraged. Sometimes what seems simple may not be so simple to build. Some ideas take longer than others, and some ideas will not be possible within the scope of what we want to accomplish in the next year or so.
    Be respectful. Comply with the Community Guidelines and Skype etiquette.
    Disclaimer: Skype may or may not use your comments, ideas, or suggestions. Skype reserves the right to use for any purpose including commercial purposes, comments, ideas, suggestions, code, products or services (“Content”) that are posted on this community without any obligation to compensate the individual or entity that provided the Content. By posting any Content in the community, you hereby relinquish any right you may have in such Content and to any future compensation for publication, use, distribution, license or sale of the same. By posting Content, you represent and warrant that you either own or control all of the rights to that Content, and such Content does not violate any third party rights or these Skype Terms of Service. You agree that all opinions expressed by users of this community are expressed in their individual capacities, and not as representatives of Skype.
    Frequently Asked Questions
    What is the Idea Board all about?
    Idea Board is a new part of the Skype Community, where members can share their ideas about existing products and services. Anyone in the community can see and vote on the ideas you post.
    We encourage you to give kudos and comment on submitted ideas as we are more likely to take the top kudoed and most discussed ones into consideration.
    How do I navigate the Ideas Board? 
    Finding your way around the ideas board is a pretty straightforward task, here are some of the things you will see to help you get around.
    •  New Ideas – The most recent ideas.
    •  Hot Ideas – The most popular ideas right now.
    •  Top Ideas – The most kudoed ideas.
    The sidebar widgets
    In the sidebar you'll find more ways to sort the ideas board, see new and popular ideas and the top rated contributors to the idea board. It's also really easy to view only the ideas with certain status', for instance if you only want to see ideas that are “Accepted”.
    How to check if an idea exists already?
    Use the search function filtering by the ideas board – or click here (direct link to search function)
    What do the votes/kudos mean?
    Just as you can give kudos in the community boards and blogs, you can vote for ideas you like on the Idea Board. Ideas with high vote totals are more likely to be recognized and accepted by the teams at Skype who develop our products and services. You can also leave comments on ideas, but remember to be kind!
    What do the different idea statuses mean?
    We strive to review submitted ideas on a biweekly/monthly cycle. Each idea will go through a life cycle that will be assigned statuses at each milestone. The statuses are explained here:
    New Idea - Sparkly new idea, submitted by you, and ready to be vetted by the community.
    Comments Requested - Items set as Comments Requested will be open to the community for feedback and votes.
    Under consideration - Idea has been forwarded to appropriate business team who is determining feasibility.
    More information needed - More information is needed before our Product Management team can take this forward, please review the comments left by the team.
    Duplicate - Ideas in this status have already been submitted in some form or another. We will link these items over to the other idea so you can review the status or track the progress there.
    Already exists - This is available in the product. 
    Future possibility - Idea is a good one but not something we can include in a near-term product or software release.
    Accepted - Idea has been accepted and has been taken forward for implementation, check back soon for updates.
    Not right now - We like the idea but just not for right now, we will revisit it in the future.
    Implemented - You asked for it, we did it!
    My idea has been accepted. How long will it take to be implemented?
    Sadly, we will not be able to provide dates for the implementation of any accepted ideas within the community due to the number of factors involved. Please be patient and let us make sure it is completely ready before we make it available.
    How will I know if an idea has been implemented?
    You can track the status of your ideas as your ideas are sent to the people here at Skype who can make them happen and you will see the status of your idea is updated. We will be telling you if the idea is something we are working on now or would like to do in the future, or if it’s something that is not feasible for us at this time. To ensure you don’t miss any updates select “Subscribe” from the “Idea Options” menu when viewing your idea.
    What ideas have been implemented so far?
    You can check "Accepted and Implemented ideas" topic here.
    Can I edit or delete my ideas comments?
    No, you can't. Be sure to check your spelling and preview your comment before you post it; you can't edit a comment once it's posted.
    Who and how often moderates/ manages the ideas board?
    The community team is monitoring the board on the daily basis and product managers will come in on a monthly basis to update statuses of the ideas and post their comments.
    If Skype decides not to pursue my idea, will you tell me why?
    We do not always provide the reasons for our decisions regarding ideas submitted for review but will strive to provide an explanation where possible.
    I have an idea to improve the Windows Phone software itself?
    Microsoft has set up a Windows Phone Feature Suggestion Box for exactly that purpose. Share your idea here: http://windowsphone.uservoice.com
    If I am not comfortable submitting my idea over the Internet, is there another way I can do so?
    No.

    I would really appreciate if you guys work on the feature “ custom backgrounds for chat notifications”.If users will be able to choose any image of their liking in the custom background feature if would add value. Currently some of the chat messengers provide this facility to the users which makes interesting to the users while improving user friendliness and satisfaction. Options that would include areTake a photoChoose from albumsSearch from webDeleteThat appears to be a reasonably robust selection. In search, a user can use a built in engine to pull up images based on search and then select it as it their choice. Once you chose an image, it will be asked to confirm and ‘set’ as the universal chat window for all contacts. 

  • 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

  • Skype for Windows Phone Sign-In Process Changes

    Today we’re releasing an update for Skype for Windows Phone with some changes to the way you sign in. To help you get started, we’ve put together this short guide.
    What’s changing and why?
    Instead of having to remember a Microsoft account for your Windows Phone and a separate Skype Name and password, all users will now only need their Microsoft Account to sign in to Skype for Windows Phone. You’ll also benefit from added security, privacy and improved password recovery.
    Learn more about what’s changing in today’s update.
    What does the change mean for me?
    When you sign in for the first time after the update, we’ll prompt you to sign in with your Microsoft account.
    If this is the first time you’ve signed in with your Microsoft account, we’ll ask you to link it to an existing Skype account.
    If you’re already using your Microsoft Account to sign in to any version of Skype, then you won’t need to link your accounts again.
    How does this work with multiple accounts?
    This is a link between one Microsoft account and one Skype account. We recommend you link the Microsoft account you use on your Windows Phone with the Skype account you want to use on that device.
    What happens if I linked the wrong accounts?
    Not to worry, you can unlink your Microsoft account from your Skype account at any time. You’ll then be asked to link your Microsoft account again the next time you sign in on your Windows Phone.
    Learn more about unlinking your Microsoft and Skype accounts.
    What if I don’t remember my Microsoft account details?
    You can find the Microsoft account that you use on your Windows Phone by going to the Start screen, swiping from the right and selecting Settings > email+accounts.
    Once you have your Microsoft account email address, you can then recover your password if you don’t remember it.
    Where can I go with questions or feedback?
    You’re already in the right place on the Skype Community. Please ask your question or leave your feedback on today’s update in the comments.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

    MetalHead22 wrote:
    How does this work with multiple accounts?
    "This is a link between one Microsoft account and one Skype account. We recommend you link the Microsoft account you use on your Windows Phone with the Skype account you want to use on that device."
    Does the above quote  mean you can only use one skype account on your windows phone if I link my skype account that was set up with yahoo mail to my windows phone Microsoft account which is the same for logging in to my laptop that has windows 8.1 installed on it.
    What i would like to do is to be able to sign in with either which I could do before the app update. The Microsoft one Is for personal use and the yahoo one is for work. I would like to keep them separate and does it mean nobody else can sign into their skype accounts  on my phone if its not linked to my Microsoft account.
    Hope this makes sense. 
    You can still use several Skype accounts on your phone, but you can link one Skype account to one Microsoft account.
    If the Microsoft account you have for personal use is already linked to a personal Skype account, then you can simply use the Microsoft accont to log into the phone.
    I understand your work Skype account is not yet linked to a Microsoft account? If you do not have a second Microsoft account to link to this work Skype account, then you can create a new Microsoft account and link to your work Skype account to be able to log into the phone with this account.
    You can sign into Skype with any Microsoft account, does not have to be the one that is used to set up the phone.

  • Visual studio 2013 Premium - No template for Windows phone 8 app development

    Visual studio 2013 Premium - No template for Windows phone 8 app development 
    I have selected all features while installation.

    Thanks for pvdg42's help.
    Hi Dhiraj Sakariya,
    Like the link provided by pvdg42, if you create a Windows Phone Silverlight project, you would get the option to select the Windows Phone OS version like this screen shot.
    Best Regards,
    Jack
    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.

  • Open Question: question to those who comment about the lack of apps for Windows Phone 8

    We have read every Lumia review and we are listening. An open question to those who comment about the lack of apps for Windows Phone 8.Tell us which apps you miss? Nokia/MSFT Customer Care

    The major apps that are missing are Banking Apps.  There are a few, but major banks like Regions Bank, Capital One Bank, are nowhere to be found for Windows Phone.  Microsoft should be pursuing these banks to develop apps for the platform.  Maybe bribe them with free software or tech support or something.  Also some of the dating apps like Grindr for the gay community, Blender for the straight community, are lacking as well.  Perhaps Microsoft could assist them in developing the "unified" app for both Windows and Windows Phone?
    In fact, Microsoft would do well to begin a "Developer Assistance Program" where developers could (for a small fee) contact the DAP Center and get assistance with issues creating apps for the Windows Platform.  If developers know they have a source to go for assistance, they may be more inclinded to develop better apps.

  • HP All-in-One Printer Remote App For Windows Phone 8.1 Troublesho​ot

    Dear HP,
    Device                Nokia Lumia 520
    OS                        Windows Phone 8.1
    Printer                HP Officejet Pro 8600 All in One Printer
    I have installed HP All-in-One Printer Remote on my smartphone as well as on my PC having Microsoft Windows 8.1. The PC app is running 
    fine but on my smartphone, app can't find my HP Wireless printer. All Devices(PC, Smartphone, Printer) are connected to same wireless LAN Network.
    Regards
    Sahyog Vishwakarma
    Mob.: +91-7206369455
    Yamuna Nagar
    Haryana

    Hi,
    The app for Windows phone is a BETA version. In my case (also a Nokia) it can find my printer but when sending something to printer, printer won't print. Again, it's only a BETA version.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • Project Billing "write-off" options

    I'm attempting to determine the best method of "writing off" transactions on direct projects that have been reported as billable, accrued revenue but will never be billed. Please consider the following narrative as an example: A consultant (consultan

  • Printing Report Header Text

    I have a link in a report that calls another report. The link information being passed to the report is :ename, :emp_id. I would like to print these values on the report header text. Emp Name: bob Emp ID: 10000 field1 field2 field3 1 2 3

  • Where Store HTMLDB_APPLICATION_FILES the Files

    Hello, i have Oracle 10gXE installed and Upload a document to my Database. When i look in HTML_DB_APPLICATION_FILES i can see my document. But where store Oracle the Document on the Server?? Thank for your help Message was edited by: user504575

  • Capture Deleted Records without Db objects

    Hi Does anybody help me on this.. i need to capture all deleted/inserted/updated records from a set of tables A,B,C on particular day(for e.g today)..without creating any db objects like triggers or any client based code like form triggers only by us

  • Use GOS with IXOS

    We want to configure GOS for our IXOS archive server without coding. We did some search but all have some coding effort. Could you help provide some links to some documents about configuring GOS for the IXOS archive server without coding? Thanks!