Write XmlDocument in Windows Phone

while writing the xml file in windows phone 8.1...this is the code I am using ..getting error(check image)..can anyone help..... <I don't want to use Xdocument Class for it>
XmlDocument dom = new XmlDocument();
             XmlElement x = dom.CreateElement("Transactions");
             dom.AppendChild(x);...
             Windows.Storage.StorageFolder sf =
                 Windows.ApplicationModel.Package.Current.InstalledLocation;
              sf=await sf.GetFolderAsync("LocalData");
              StorageFile file = await Windows.Storage.ApplicationData.Current.LocalFolder.CreateFileAsync("DataFile.xml", CreationCollisionOption.ReplaceExisting);
             StorageFile st = await sf.CreateFileAsync("DataFile.xml",CreationCollisionOption.ReplaceExisting);
            await dom.SaveToFileAsync(st);
            return true;

Hi ThePiyushSharma,
>>this is the code I am using ..getting error(check image)..
I have tested in your code, it works well in my side:
Please first try to make sure that the "LocalData" Folder is in your InstalledLocation or you will meet the exception if the code can not find your folder.
If the above can not help, please try to post your detailed error information in here.
Best 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.

Similar Messages

  • How to write and check log for windows phone enterprise app

               We have developed a windows phone enterprise app for our customer, this app will be deployed thorough MDM solution, that is , being installed automatically after the device sucessfully enrolled into the MDM server.
               Our customer required that if this app failed, there should be some log file they could send to us for identify the cause.
               So we catch exception in the app and write the exception message into IsolatedStorage as log file , as following:
    var appStorage = IsolatedStorageFile.GetUserStoreForApplication();
                        using (writer = new StreamWriter(appStorage.CreateFile("errlog.log")))
                            writer.WriteLine(format, arg);
                            writer.Close();
                There seemed no problem to write the log with above code. but the problem is , how can the user get the errlog.log to send to us? I tried both Windows phone power tool and IsoStoreSpy tool,  they both seemed
    not able to read the isolatedstorage for the application to get errlog.log due to this application not installed by themselves.
              Any suggestions?
    Many Thanks
    Jennifer

    The easiest way I see to achieve this goal is to provide a feedback page, search on app local storage to find the log file, ask the end user to click button to submit any feedback and post the log file. You can set up a server to receive that file.
    Try read this blog about consuming RESTful service in windows phone programming to get started.
    http://blogs.msdn.com/b/wsdevsol/archive/2014/01/09/consuming-rest-services-in-your-windows-store-and-phone-applications.aspx.

  • Saving to Windows Phone Documents Folder

    Greetings,
    I tried to look through the forum but could not find anything on saving to the Windows Phone Documents folder. From what I researched online on the Windows Phone 8 it was not possible to do this as Microsoft had blocked the ability to do this due to security
    reasons. But on the 8.1 release they allowed this area to be accessed by third party apps. Is this correct?
    If so how do I go abouts saving to the documents folder. Basically my app is really simple I just input a couple of words into different text boxes and that should save to a text file. How do I go abouts doing this.
    I tried doing this
    StorageFolder local = KnownFolders.DocumentsLibrary;
    However, when I run it the program stops at this spot:
    #if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
                UnhandledException += (sender, e) =>
                    if
    (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
    #endif
    What am I doing wrong. Thank you in advanced!!

    I apologize for that I looked at it quickly on my phone. Ok so I managed to get it to save to a file. The problem is now is I want to be able to append to that same file. Is that possible?
    Here is what I have so far:
    using SDKTemplate;
    using System;
    using System.Collections.Generic;
    using Windows.ApplicationModel.Activation;
    using Windows.Storage;
    using Windows.Storage.Pickers;
    using Windows.Storage.Provider;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Navigation;
    namespace FilePicker
        /// <summary>
        /// Implement IFileSavePickerContinuable interface, in order that Continuation Manager can automatically
        /// trigger the method to process returned file.
        /// </summary>
        public sealed partial class Scenario4 : Page, IFileSavePickerContinuable
            MainPage rootPage = MainPage.Current;
            public Scenario4()
                this.InitializeComponent();
                SaveFileButton.Click += new RoutedEventHandler(SaveFileButton_Click);
            private void SaveFileButton_Click(object sender, RoutedEventArgs e)
                // Clear previous returned file name, if it exists, between iterations of this scenario
                OutputTextBlock.Text = "";
                FileSavePicker savePicker = new FileSavePicker();
                savePicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
                // Dropdown of file types the user can save the file as
                savePicker.FileTypeChoices.Add("Plain Text", new List<string>() { ".csv" });
                // Default file name if the user does not type one in or select a file to replace
                savePicker.SuggestedFileName = "New Document";
                savePicker.PickSaveFileAndContinue();
            /// <summary>
            /// Handle the returned file from file picker
            /// This method is triggered by ContinuationManager based on ActivationKind
            /// </summary>
            /// <param name="args">File save picker continuation activation argment. It cantains the file user selected with file save picker </param>
            public async void ContinueFileSavePicker(FileSavePickerContinuationEventArgs args)
                string complete = "";
                string office = "";
                string revenue = "";
                string nps = "";
                string answer;
                answer = NotesTxt.Text;
                StorageFile file = args.File;
                if (file != null)
                    // Prevent updates to the remote version of the file until we finish making changes and call CompleteUpdatesAsync.
                    CachedFileManager.DeferUpdates(file);
                    // write to file
                    await FileIO.WriteTextAsync(file, answer);
                    // Let Windows know that we're finished changing the file so the other app can update the remote version of the file.
                    // Completing updates may require Windows to ask for user input.
                    FileUpdateStatus status = await CachedFileManager.CompleteUpdatesAsync(file);
                    if (status == FileUpdateStatus.Complete)
                        OutputTextBlock.Text = "File " + file.Name + " was saved.";
                    else
                        OutputTextBlock.Text = "File " + file.Name + " couldn't be saved.";
                else
                    OutputTextBlock.Text = "Operation cancelled.";
            private void SaveFileButton_Click_1(object sender, RoutedEventArgs e)

  • 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.

  • March 2015 TechNet Guru Awards! See who's boss in Windows Phone! It could be YOU!

    The results for March's
    TechNet Guru competition were posted!
    http://blogs.technet.com/b/wikininjas/archive/2015/04/17/the-microsoft-technet-guru-awards-march-2015.aspx
    Below is a summary of the medal winners for December. The last column being a few of the comments from the judges.
    Unfortunately, runners up and their judge feedback comments had to be trimmed from THIS post, to fit into the forum's 60,000 character limit, however
    the full version is available on TechNet Wiki.
    Some articles only just missed out, so we may be returning to discuss those too, in future blogs.
     BizTalk Technical Guru - March 2015  
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting an orchestration with ETW
    Sandro Pereira: "Really nice article, I love it, nice use of the BizTalk CAT Instrumentation Framework. And once again, the article well detailed and excellent formated in terms of images and text format. Good work Steef-Jan."
    Ed Price: "Fantastic depth in the Introduction, Scenario, and Wrap Up!"
    Steef-Jan Wiggers
    View BizTalk Send Port Subcriptions
    Sandro Pereira: "Really useful script! Good job Steef-Jan."
    Ed Price: "Good context setting in the introduction (the image helps a lot)!"
     Forefront Identity Manager Technical Guru - March 2015  
    Tracy Yu-MSFT
    The Ultimate Tools to work ith RCDC in FIM
    Søren Granfeldt: "Very nice and a great help for all of us struggling with RCDC's"
    AM: "Thanks for posting Tracy! RCDCs can be very frustrating to troubleshoot."
    Wim Beck
    FIM2010: Protect passwords in configuration files
    Søren Granfeldt: "Nice technical explanation and good approach"
    AM: "Far too many FIM environments I find plain text passwords stored in scripts - great contribution.
    Another helpful resource"
     Microsoft Azure Technical Guru - March 2015  
    saramgsilva
    Avoid Nightmares Using EF First Migration in Azure Mobile Services
    JH: "Another nice one from Sara. Definitely worth a look."
    Ed Price: "I love the use of embedded links to the related library articles! And the article is rich with descriptions, well-formatted code with great commenting, and clarifying images. Plus a link to the source code. Fantastic job on
    this!"
    Alan Carlos: "Great! Very detailed!"
    Ken Cenerelli
    Creating an Microsoft Application Insights resource
    Alan Carlos: "Great article!"
    Ed Price: "Incredibly thorough how-to article!"
    JH: "Application Insight is something everybody should have on his radar. Ken provides a nice article to get started."
    Prashant Mahajan
    Azure: MVC application to refer js from blob
    JH: "Nice alternative on deploying JavaScript on Azure. Worth a look in some deployment scenarios
    Ed Price: "This is a great topic! Could be improved on with code formatting and a See Also section. Good article!"
     Miscellaneous Technical Guru - March 2015  
    XAML guy
    Convert and Edit Microsoft Office Live Meeting Recordings
    Alan Carlos: "Thanks XAML guy! Very yseful!"
    Durval Ramos: "This article was "welcome", but "a little late". Simple and clear. Well done, Peter!"
    Ed Price: "Fantastically crafted instructional guide!"
    Richard Mueller: "Great information. Good use of article guidelines. I like the images."
    Andy ONeill
    Silverlight: Trouble Shooting Installs
    Alan Carlos: "Cool Andy!"
    Durval Ramos: "This article is very detailed, has a demo and use description in different browsers, but could change sections order or maybe split article: "What's Silverlight?" and "Trouble Shooting Installs". Well,
    one more time... Good job Andy!"
    Ed Price: "Incredibly exhaustive with a lot of great supporting sections!"
    Richard Mueller: "Good use of article guidelines, like "See Also" and TOC."
    Tom Mohan
    Zen coding with Visual Studio
    Durval Ramos: "It would be welcome if added images and references about your use in VS"
    Ed Price: "Great topic with some great code formatting! Could benefit from section headers and a See Also section. Very helpful article!"
    Richard Mueller: "Very interesting. This tool could prove useful, once you get used to it."
     SharePoint 2010 / 2013 Technical Guru - March 2015  
    Murugesa Pandian
    Simple understanding on SharePoint Provider Hosted App Model
    Jinchun Chen: "Nice article"
    Hezequias Vasconcelos: ""
    KB: "Please correct typos. I like the explanation on difference between app only permissions and user permissions"
    Ed Price: "Great explanation! The diagrams are very helpful!"
    Margriet Bruggeman: "Interesting start, but I feel this article needs a lot more work to become really useful. Not because the article is bad, but because of the fact that the topic is so complex."
    Melick
    JSOM List Operations in SharePoint Apps in a proper way (Provider
    Hosted and SharePoint Hosted)–CRUD
    Margriet Bruggeman: "Clean implementation of a very useful JS library. I really like this approach"
    Hezequias Vasconcelos: "The sound is great content for development in SharePoint"
    Ed Price: "Good topic with helpful code snippets! Could benefit from Headers, a TOC, and a See Also section. "
    Michaelle de las Alas
    Expandable/Collapsible Headers Solution for SharePoint Pages
    Hezequias Vasconcelos: "The page management and scheduled SharePoint content is a great resource."
    Ed Price: "It's simple, well-written, and very helpful for the community! Could benefit from headers, a TOC, and a See Also section. Great topic!"
    Margriet Bruggeman: "I like it. A useful idea that is easy to implement." 
     Small Basic Technical Guru - March 2015  
    Philip Munts
    Small Basic and the Raspberry Pi
    Michiel Van Hoorn: "Wonderful idea and good write up. Would be cool so have something running with the "regular" Raspbian."
    RZ: "This is incredible. Detailed step-by-step instructions and pictures/screenshots. Makes me want to jump up and try it myself now. But I will save it for a nice rainy day project to work with my boy. I am sure he will be all in awe!"
    Yan Grenier
    Small Basic: Timeline for the games
    Michiel Van Hoorn: "Great advance article on timelines. Very usefull to those looking for more complex games."
    RZ: "This is a difficult topic, especially for beginners. But Yan explained it very well with details and examples!"
    Ed Price - MSFT
    Small Basic on TechNet Gallery
    Michiel Van Hoorn: "Very useful "baseline" for those who want to blog / post."
    RZ: "Very nice explanation of the TechNet Gallery"
     SQL BI and Power BI Technical Guru - March 2015  
    Jens Vestergaard
    SSIS Script Task and Proxy Auto Configuration (PAC) Script
    RB: "Great article, that applies to any kind of web content."
    PT: "Good quick reference example. Thanks for submitting it."
    Ricardo Lacerda
    SSIS: Data maintenance with Microsoft Azure SQL Database
    PT: "This is a very complete tutorial on setting up CDC which makes the process quite clear. Thnaks"
    RB: "Great article !"
     SQL Server General and Database Engine Technical Guru - March 2015  
    Visakh16
    Parsing Out Data From Flat File With Inconsistent Delimiters in SQL Server
    Durval Ramos: "Very useful. Good job !"
    Ed Price: "Fantastic job on the code formatting, in-depth descriptions, and robust use of images!"
    AM: "Thanks for presenting multiple approaches to solve the problem. It would be good to see a second part describing the format file."
    DRC: "This is a good article which provides different ways to import the data to SQL, But this article needs some modifications. Suggestions: • It would be helpful, if mentioned on which version of SQL server and Visual studio scenario
    was tested • We might encounter errors while using the format files, for example we get the below error if the format file doesn’t have blank space (character ) at the end of each line Msg 4862, Level 16, State 1, Line 10 Cannot bulk load because the file
    "C:\temp\good.fmt" could not be read. Operating system error code (null). • So it will be helpful if you can provide a sample format file and TSQL script along with the possible output which can be tested and compared. • The sample query and the
    format file is not yielding the right output. Screenshots shown in the article has invalid values (for example ID coulmn has invalid values). Format file need to be fixed to get the right data. • The format file under section “Files With Text Qualifiers” is
    also invalid and the data is not imported properly. • Implementation of import using the SSIS package needs more details about how to make the delimiter consistent, Attaching a sample package would be helpful. "
     System Center Technical Guru - March 2015  
    Noah Stahl
    Make System Center Orchestrator Text Faster than a Teenager using PowerShell
    and Twilio
    Ed Price: "Wow, I love the breakdown of sections. As Alan wrote in the comments, "Wow! Great article!""
    Mr X
    How to educate your users to regularly reboot their Windows computers
    Ed Price: "I love the table and use of code snippets and images! Great article!"
     Transact-SQL Technical Guru - March 2015  
    Saeid Hasani
    T-SQL: How to Sort a Column that Contains Character-Separated Numbers
    Durval Ramos: "Great article! The samples in this article are very enlightening."
    Richard Mueller: "Good use of guidelines. Good images. Grammar needs work."
    Saeid Hasani
    T-SQL: Troubleshooting When a Column Alias that
    Created in the SELECT Clause Cannot be Used in the ORDER BY Clause
    Richard Mueller: "Great use of article guidelines. I like the images and "See Also". Good explanation of an advanced topic."
    Durval Ramos: "An interesting topic and also have T-SQL script on TNGallery, about related issue in MS Connect. Good job!"
    sql-pro
    T-SQL: SQL Server Agent Job Execution Status
    Durval Ramos: "This article has interesting content, but needs to be better worked."
    Richard Mueller: "A great idea. We may need more references/links."
     Visual Basic Technical Guru - March 2015  
    Reed Kimble
    Simple Multi-User TCP/IP Client & Server using TAP
    Durval Ramos: "This article offers a complete description about an TAP implementation and has a download code on MSDN Code. Good job!"
    Richard Mueller: "I liked this article a lot. Good use of article guidelines. A lot of useful links, but some could be collected in an "Other Resources" section."
    .paul.
    Factorizing Quadratic Equations (practice and solver)
    Durval Ramos: "Very good. Well formatted article and has images that clarify how to work equations. "
    Richard Mueller: "A fun article with good images."
     Visual C# Technical Guru - March 2015  
    Isham Mohamed
    Setting custom Messages in user defined Exceptions
    Carmelo La Monica: "Good articles and sample code!"
    Jaliya Udagedara: "A short and to the point article. Answers a common problem."
    Tom Mohan
    .NET: Equality Features
    Jaliya Udagedara: "Great article. Has links to MSDN when needed. Definitely enjoyed reading."
    Carmelo La Monica: "Article very detailed in all parts, congrats!"
    Vithal Wadje
    Constructors and Its Types in C#
    Carmelo La Monica: "Well done in all its content , and very exhaustive of the types of constructors of a class"
    Jaliya Udagedara: "Explains Constructors in detail. Please do format the code as Andy suggested."
     Wiki and Portals Technical Guru - March 2015  
    Davut EREN
    Turkish Ninjas Team Council Center
    Durval Ramos: "Great collection of Turkish articles!!!"
    Richard Mueller: "Amazing collection of links."
    Ed Price: "Great job in using this article to build out Turkish content and encourage the community!"
    Alan do Nascimento Carlos
    TechNet Wiki - Images
    Durval Ramos: "Very useful for use in "Wiki Ninjas" Blog posts."
    Richard Mueller: "A great collection of fun images."
    Ed Price: "I can see this article being well used as we leverage these images in blog posts!"
     Windows Phone and Windows Store Apps Technical Guru - March 2015  
    Damien Allan
    Make a Styled Button in XAML for Windows Universal Apps
    JH: "Styling has always been special in XAML-based applications. This article shows nicely how to style a button in Blend in universal apps."
    Ed Price: "Great explanations and how-to content, with helpful images and code!"
    Carmelo La Monica
    Part four: The control Maps on Windows Phone 8.
    JH: "Another article about working with the maps control in Windows Phone 8. Nice to see another one in this series."
    Ed Price: "Fantastic and exhaustive explanation of the Maps control!"
     Windows PowerShell Technical Guru - March 2015  
    Noah Stahl
    Make System Center Orchestrator Text Faster than a Teenager using PowerShell
    and Twilio
    Alan Carlos: "Wow! Great article! Congratulations!!!!"
    Ed Price: "What a powerful solution with great details and helpful images!"
    Richard Mueller
    PowerShell Script to Search Active Directory
    Ed Price: "This article is amazing, due to great details, a couple of helpful tables, lots of supporting images, and a plethora of related links at the end!"
    Alan Carlos: "Very useful!!!"
    Dan Christian
    Add MSG file metadata to a SharePoint list using PowerShell
    Alan Carlos: "Excellent!"
    Ed Price: "I love the supplemental video and helpful images!"
     Windows Presentation Foundation (WPF) Technical Guru - March 2015  
    Andy ONeill
    Uneventful MVVM
    Ed Price: "Amazing depth on this article! I love the See Also and Other Resources sections! Astonishingly great article!"
    Peter Laker: "Supurb article Andy. Nice work again."
    Magnus (MM8)
    WPF: Implementing Global Hot Keys
    Ed Price: "I love the breakdown of sections and clear descriptions!"
    Peter Laker: "Excellent topic and well explained Magnus!"
    Tom Mohan
    Asynchronous data binding using IsAsync and Delay
    Peter Laker: "Great tip Tom, thanks for your contribution!"
    Ed Price: "Very valuable topic!"
     Windows Server Technical Guru - March 2015  
    Pierre-Alexandre Braeken
    Active Directory - Clone a Domain Controller in Windows Server 2012
    with Hyper-V (VM-GenerationID)
    Mark Parris: "The principals of cloning a DC."
    JM: "This is an excellent article on cloning a DC, nice work and thanks for the contribution."
    Richard Mueller: "Excellent topic and great images."
    Mr X
    Netstat for Beginners
    JM: "This is a great article on netstat, thanks for your contribution."
    Richard Mueller: "Very good tutorial on this important tool. I like the images and tables."
    Mark Parris: "Good Insight"
    Pierre-Alexandre Braeken
    Set up a virtual infrastructure at home with Windows 8 + Hyper-V
    Manager and a Synology DS412j
    Mark Parris: "Nice how to article."
    JM: "Although not aimed at Windows Server users, this is also an excellent article."
    Richard Mueller: "Extensive documentation for all the steps."
    As mentioned above, runners up and comments were removed from this post, to fit into the forum's 60,000 character limit.
    You will find the complete post, comments and feedback on the
    main announcement post.
    Please join the discussion, add a comment, or suggest future categories.
    If you have not yet contributed an article for this month, and you think you can write a more useful, clever, or better produced wiki article than the winners above,
    here's your chance! :D
    Best regards,
    Pete Laker
    More about the TechNet Guru Awards:
    TechNet Guru Competitions
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to
    TechNet Wiki, for future generations to benefit from! You'll never get archived again, and
    you could win weekly awards!
    Have you got what it takes o become this month's
    TechNet Technical Guru? Join a long list of well known community big hitters, show your knowledge and prowess in your favoured technologies!

    Congrats to Damien and Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - March 2015  
    Damien Allan
    Make a Styled Button in XAML for Windows Universal Apps
    JH: "Styling has always been special in XAML-based applications. This article shows nicely how to style a button in Blend in universal apps."
    Ed Price: "Great explanations and how-to content, with helpful images and code!"
    Carmelo La Monica
    Part four: The control Maps on Windows Phone 8.
    JH: "Another article about working with the maps control in Windows Phone 8. Nice to see another one in this series."
    Ed Price: "Fantastic and exhaustive explanation of the Maps control!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • How can i use shoutcast streams on windows phone?

    I have an idea to make an application but i don't know how to use shoutcast streams in windows phone ? Is there any API or something that i need to fallow?
    Alican

    At the moment Shoutcast audio streams are not supported natively in Windows Phone. You will need to write a self implementation of IMediaStreamSource to parse the audiostream and also handle the http connections to the streaming server.
    Another solution is to use a third party implementation such as www.jupitersdk.com.
    It offers a well documented API, is easy to integrate and use into your project and there is a trial version for testing purposes.
    Jupiter Sdk has successfully been used in several RadioStreaming apps which can be found in the Windows Phone Store. By the way, it allows not only to play Shoutcast and Icecast audiostreams in Windows Phone 8.1, but also to retrieve the stream metadata (i.e.
    current Title and Artist), among other interesting features.
    Disclaimer: I am a member of the Jupiter Sdk Development Team. For information and support you can use the contact form at www.jupitersdk.com

  • More Guru Winners for February 2015 in the Windows Phone category and many others!

    It's been a busy week that also saw the
    TECHNET WIKI SUMMIT 2015
    Then we had the results for
    February's TechNet Guru competition ALSO posted!
    http://blogs.technet.com/b/wikininjas/archive/2015/03/19/technet-guru-february-2015.aspx
    Below is a summary of the medal winners for December. The last column being a few of the comments from the judges.
    Unfortunately, runners up and their judge feedback comments had to be trimmed from THIS post, to fit into the forum's 60,000 character limit, however the full version is available on TechNet Wiki in the link above.
    Some articles only just missed out, so we may be returning to discuss those too, in future blogs.
     BizTalk Technical Guru - February 2015  
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting a custom pipeline component with ETW
    Mandi Ohlinger: "Always a fan of helping our custom pipeline users. Great addition to this group."
    Sandro Pereira: "Images, format, descriptions, code and topic are excellent once again good work Steef-Jan."
    Vignesh Sukumar
    BizTalk BAM (Business Activity Monitoring)
    Sandro Pereira: "Great job on this article! Well explained and nice pictures, however the article format need to be improved and some proofreading is need"
    Mandi Ohlinger: "Welcome to the 'I heart BAM' fan club. Nice job on this topic. A MUST read for new-to-BAM users. "
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting BAM Activity Tracking with ETW
    Sandro Pereira: "Images, format, descriptions, code and topic are excellent once again good work Steef-Jan."
    Mandi Ohlinger: "ETW for BAM Activities - LOVE it. Nice use of the Framework. "
     Forefront Identity Manager Technical Guru - February 2015  
    Wim Beck
    FIM2010: Filter objects on export
    PG: "Simple, targeted but nice article, nice layout. "
    Søren Granfeldt: "Nice. Would be perfect with a complete code sample."
     Microsoft Azure Technical Guru - February 2015  
    saramgsilva
    Azure Mobile Services: How to see the log files in server
    JH: "Log files are one of the most important things in a production environment. This article shows hows you can do that for the Azure Mobile Services in a nice and easy way."
    Alan Carlos: "Great article!"
    Ed Price: "Very useful topic! These are a great set of articles!"
    saramgsilva
    Azure Mobile Services: How to see the WebConfig file published
    Ed Price: "Great detail and fantastic use of images! I love all the in-line links!"
    JH: "Sometimes it is hard to tell when working in a multi-environment what configuration was published to the Server. The article shows short and easy how to do that for the Azure Mobile Services."
     Miscellaneous Technical Guru - February 2015  
    Arleta Wanat
    Retrieve all site mailboxes in your Office 365 tenant
    Durval Ramos: "This article has a well content, images and code that help to understand the solution. It has References and was Translated into more two languages. Good job!"
    Richard Mueller: "Good links. A great tutorial."
    Andy ONeill
    Silverlight: No Need to BringIntoView
    Durval Ramos: "A well formatted article is easier and more pleasant to read. This script is useful"
    Richard Mueller: "Good demonstration of a new feature."
    Chen V
    PowerShell : Enable Auto Reply for Shared Mail Box
    Durval Ramos: " A good solution originated of TechNet Forum. The script and images make it easy to understand and ensure you get the best interest to reader."
    Richard Mueller: "Good documentation of this feature."
     SharePoint 2010 / 2013 Technical Guru - February 2015  
    Geetanjali Arora
    SharePoint Online : Performing Batch Operations using REST API
    KB: "Very well explained article on a new and much awaited feature. Although Andrew Connell already explained this topic in several posts, this article still contains added value."
    Ed Price: "I love the History section. The formatting is amazing. And the References and See Also sections at the bottom are great icing on the cake. This is an important topic that's done incredibly well!"
    Matthew Yarlett
    Using the SpellCheck Webservice with the TinyMCE Richtext Editor and
    AngularJS in Office 365
    KB: "I read this article with growing interest, it contains a lot of added value. Very well and in-depth explanation. "
    Ed Price: "Great scenario! Good use of images, code, detail, and References! Could possibly use a greater breakdown and explanation of the code. This article just gets more and more interesting and valuable as you read it! Great job!"
    Arleta Wanat
    SharePoint Online: Turn on support for multiple content types
    in a list or library using Powershell
    KB: "Really nice, interesting and detailed article!"
    Ed Price: "The Content Types section helps explain this a lot! I also love the downloads at the end. What a fantastic resource!"
     Small Basic Technical Guru - February 2015  
    Nonki Takahashi
    Small Basic: Key Input
    Michiel Van Hoorn: "Great improvement."
    RZ: "Very nice explanation and examples of key input handling"
    Ed Price - MSFT
    Small Basic: The History of the Logo Turtle
    RZ: "Turtle (Logo) was the first programming language for many, including perhaps some of the Small Basic prorammers. Nice article explaining the history."
    Michiel Van Hoorn: "A nice background article and hopefull inspiration for those who want to start in robotics"
    Nonki Takahashi
    Small Basic: TechNet Wiki Article List
    Michiel Van Hoorn: "This is great! Perfect as a local cache of the articles. "
    RZ: "A good example"
     SQL BI and Power BI Technical Guru - February 2015  
    Sylvain PONTOREAU
    PowerBI API in .Net
    RB: "Great walkthrough. Looking forward for the WP8 version of the app ;)"
    PT: "Sylvain, very nice job with this. This is a timely topic about an emerging product that has great potential. This is a very good example of a well-written post on an interesting subject with enough information to be valuable to a
    solution developer. I will personally take time to explore the Power BI API and use your examples. "
     SQL Server General and Database Engine Technical Guru - February 2015  
    Ronen Ariely
    SQL Server Books Online
    AM: "Thank you for sharing this with us. It is quite informative and let us get familiar with BOL after the change from previous versins."
    Ed Price: "Nice! A very helpful introduction to Books Online! It also tells my technical writer friends that their hard work is appreciated! =^)"
    Durval Ramos
    How to Collect Events and Errors on SQL Server
    Ed Price: "Fantastic solution! A great resource that's amazingly well written with formatting, clear parameters, images, References, and a See Also section! And it even comes in Portuguese! Great article!"
    AM: "Thank you for sharing this with us. A good source to learn about our SQL Server instances. "
     System Center Technical Guru - February 2015  
    MarkusEliasson
    Troubleshoot ID 32008: DPM cannot
    protect this SharePoint farm...
    Ed Price: "An important topic that's very clear with great formatting and a good use of an image!"
    t.c.rich
    Managing Priorities of Client Polices and A/V Policies in SCCM
    Ed Price: "I love the descriptions, breakdown of sections, and code formatting! Great article!" 
    Mr X
    How to copy SMSTS.log when a Task Sequence fails in SCCM
    Ed Price: "A very helpful table and a good contribution to the community! Mr X again thinks of important content gaps to fill!"
     Transact-SQL Technical Guru - February 2015  
    Saeid Hasani
    T-SQL: How the Order of Elements in the ORDER BY Clause Implemented in the Output Result
    Durval Ramos: "Very well structured and with examples that clarify how a T-SQL statement can change the data output order."
    Richard Mueller: "Good use of Wiki guidelines and great examples."
    Ronen Ariely
    Free E-Books about SQL and Transact-SQL languages
    Richard Mueller: "An excellent collection and a great idea."
    Durval Ramos: "A good initiative. Very useful !!!"
    Ricardo Lacerda
    Declare Cursor (Transact-SQL) versus Window with Over - Running Totals
    - Accumulated Earnings
    Durval Ramos: "The "Window function" sample was well presented, but it was unclear how the chart was generated."
    Richard Mueller: "A new idea that can be very useful. Grammar needs work"
     Visual Basic Technical Guru - February 2015  
    Emiliano Musso
    Genetic algorithm to solve 2D Mazes in Visual Basic
    MR: "Great article! Love to see an application for AI in a simple game"
    Durval Ramos: "This article is well documented with images and your code clarifying important details. It also has References, a very useful video and your project available for download in "MSDN Code" !"
    Richard Mueller: "Incredible concept and code. Grammar needs work."
    Paul Ishak
    MultiHeadedTrackBar Control
    Durval Ramos: "Very interesting article, with methods and properties well documented. Your project was available in "MSDN Code" which facilitates the understanding of solution."
    Richard Mueller: "Amazing work. Extensive code but with lots of comments. Needs a TOC"
    tommytwotrain
    Using Trigonometry to draw graphic curves in VB.NET part 2.
    MR: "Great continuation. Love the usage of the code for circle text"
    Durval Ramos: "The article is interesting, but It's need to work better commenting about assemblies referenced on project and also structure your content into sections."
    Richard Mueller: "Good tutorial and example code demonstrating basic concepts. Avoid first person."
     Visual C# Technical Guru - February 2015  
    Magnus (MM8)
    C#: Enumerating collections that change
    Jaliya Udagedara: "Great article. Has a thorough and to the point explanation of problem and the solution with code samples. Loved it!"
    Carmelo La Monica: "Very useful and exhaustive about errors at runtime in these circumstances. Congratulations"
    Andy ONeill
    c#: Practical Poly
    Carmelo La Monica: "Fantastic artcle. Very detailed and exhaustive, congratulations ."
    Jaliya Udagedara: "Definitely worth reading this. Explains somewhat advance topic along with a fundamental concept of programming. "
     Wiki and Portals Technical Guru - February 2015  
    Durval Ramos
    Wiki: Microsoft Short URLs Personalized by SXP
    PG: "Nice idea, lots of potential to grow, really needs some more community attention."
    Richard Mueller: "An excellent idea. Good use of Wiki guidelines."
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
     Windows PowerShell Technical Guru - February 2015  
    Richard Mueller
    Document Your Active Directory Organization
    Alan Carlos: "Wow! Great article, congratulations!!! Very detailed!"
    Chen V: "Excellent Article - I liked return to top as well."
    Ed Price: "Wow! It's like a professional whitepaper! It's a valuable topic that's done with intricate detail! I love the images, diagrams, code blocks, and it ends very well with more resources and Wiki articles! The article just keeps
    digging deeper and deeper! Awesome job on this!"
    DexterPOSH
    PowerShell + REST API : Invoke-RestMethod Gotcha
    Chen V: "Good Article. TOC might have made this more rich! "
    Ed Price: "This is a good topic with some great content. It could benefit from sections and a TOC, as well as a References and See Also sections at the end. The inline links are helpful. Could "
    DexterPOSH
    PowerShell Trick : Search & highlight text in MS Word
    Ed Price: "This is a great solution, with some helpful Q&A in the comments!"
     Windows Presentation Foundation (WPF) Technical Guru - February 2015  
    Andy ONeill
    Lookless Controls
    KJ: "WPF can definitely be confusing when devs first encounter it. Like the way you break it down."
    Ed Price: "Wow! Fantastic explanations that are very clear and deep! The images and code bring it to life!"
    Andy ONeill
    Only One Parent
    KJ: "Same iwith this one, good 101 intro"
    Ed Price: "Another great tip! I love the detail here as well! Those snippets help a lot!"
    Andy ONeill
    Bind to Current Item of Collection
    KJ: "Feel like this topic has a lot of coverage out there, but it can't hurt to hammer on databinding yet one more time :) "
    Ed Price: "Fantastic topic with great execution! Although these could benefit from References and See Also wiki sections at the end, the Inline links help a lot!"
     Windows Server Technical Guru - February 2015  
    Mr X
    Ping for Beginners
    Mark Parris: "A good introduction with additional content."
    JM: "Great article idea and an excellent article that will be useful to many, thanks for your contribution."
    Philippe Levesque: "Good article that show a usefull utility for basic troubleshooting"
    Richard Mueller
    Active Directory: Get-ADFineGrainedPasswordPolicy Default and Extended Properties
    Mark Parris: "An Interesting insight on FGPP and their extended properties."
    JM: "This is a good piece of detailed information about this PowerShell cmdlet, thanks for sharing."
    Philippe Levesque: "Great article ! Illustrating some cmdlet's output when a user got assigned policy versus a user with the default domain policy could be a good idea."
    Richard Mueller
    Active Directory: Get-ADServiceAccount Default and Extended Properties
    Mark Parris: "A useful nugget of information."
    JM: "More very useful information about an AD cmdlet, thanks!"
    Philippe Levesque: "Good article !"
    As mentioned above, runners up and comments were removed from this post, to fit into the forum's 60,000 character limit.
    You will find the complete post, comments and feedback on the
    main announcement post.
    Please join the discussion, add a comment, or suggest future categories.
    If you have not yet contributed an article for this month, and you think you can write a more useful, clever, or better produced wiki article than the winners above,
    THERE'S STILL TIME! :D
    Best regards,
    Pete Laker
    More about the TechNet Guru Awards:
    TechNet Guru Competitions
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to
    TechNet Wiki, for future generations to benefit from! You'll never get archived again, and
    you could win weekly awards!
    Have you got what it takes o become this month's
    TechNet Technical Guru? Join a long list of well known community big hitters, show your knowledge and prowess in your favoured technologies!

    Congrats to Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Does Verizon really care about the windows phones??

    I recently bought the Nokia 928 and as a "tech-impaired" person I am really happy with it. This is my second smart phone and I find it much easier to navigate than my Motorola Droid 3.   My co-worker (who is similarly impaired!) wanted to update to her first smart phone and had visited her local Verizon store to browse the various phones.  All that was EVER mentioned to her or shown were various Razrs, the Samsung Galaxies, and of course I-phones.  She saw the 928 demo phone there but it was never even offered as a choice so she didn't ask about it.  When she saw my phone she asked my thoughts, and asked to "play" with it.  I showed her some of the things she could do that I have found to be not difficult.  Bottom line she decided she liked the ease of operation, knew she did NOT need Suri and thought the Samsung Galaxy S 4 had way too many features for what she would ever need. She went back to the store and they did not even have a 928 in stock.  They did order her one, but she said that I knew way more about what the phone could do than anyone there.  I told her to ask about the 25 dollar gift certificate available through the end of June that could be used for Microsoft apps, they knew NOTHING about that either.  When I bought my phone I asked the store rep who was helping me (in a different town) and she was also unaware of it; but at least she found out and helped me set up a Microsoft account and got the certificate onto my phone.  She laughed and admitted she really knew very little about the Windows phone set up.  It really does seem that Verizon just doesn't care much about this platform and does not give their customers this choice since they virtually ignore that it even exists.

    Thats why I normally do not get involved with writing on message boards, especially corporate boards, too many company employees write comments like that on behalf of their office…and yes, cellular service and home communications services are a little more that a “soda” and yes, I do expect loyalty to be a two way street….end of thread, unsubscribed from this farce….

  • How to play live streaming in windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight app. In my I want to show live streaming youtube channel , I think it is not possible, 
    Actually that youtube channel is a television channel , I want to stream that live tv in my app.(I tried to load youtube channel in webbrowser in iframe tag but it is not opening)
    Anybody help me how to play live tv or live streaming in my app,
    Thanks..
    Suresh.M

    Hello,
    You will likely need to write a custom
    MediaStreamSource that can access the media stream and parse it. Windows Phone supports h.264 natively and as long as the site serves up a media stream that contains h.264 frames you can parse it and have our built in decoder decode and display it. You
    will need to have intimate knowledge of the streaming protocol used by the website that you are trying to play. You must also make sure that the website is not using protected content. IANAL so I would recommend that you have your local law professional
    (lawyer) review the licensing of the website that you are attempting to connect to and stream from before continuing your development. Your lawyer can make sure make sure their licensing allows you to do this.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • How to stop Windows phone 8.1 app from crashing?

    Hi All,
    I have developed an app in Windows Phone 8.1 environment (WinRT). When i tested the app in my local testing device, it worked fine but when i hosted the app on app store, it sometimes crashes. Please help me, how do i stop my app from crashing?

    Sometimes crashes or always crashes when deployed through the store?
    If you want to rely on data instead of magic then check the crash reports as Abdul suggests. If you want magic then my crystal ball says that if it always crashes the app is trying to write to its install directory.
    The install directory is writable for test deployed apps but not for apps deployed from the store.

  • How to perform click action on the notification received in windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight app , I added push notification service to my app and I am able to receive notifications . 
    My question is when the app is not opened and the notification is received , if the user clicks on the notification it is directly taking to the app ,
    but I want to redirect it to a specific page in my app How is it possible?
    Any help..
    Thanks..
    Suresh.M

    Thanks for your information
    but where to write the rootframe.urimapper  , I think it is in app.xaml.cs , If I write urimapper , how do I know I am navigating from notificaition?
    Suresh.M
    Why you need to know it is from notification? If you must need to know this, try to check deep link
    Best Regards,
    Please remember to mark the replies as answers if they help

  • How do I upgrade my Windows Phone Silverlight/SQL CE app to Windows 10?

    I have currently a Silverlight app in Windows Phone Store which uses SQL CE database. Data stored in database is very essential and users may not loose it in any situation or they stop using the app.
    I know I could in theory upgrade my Silverlight app to use SQLite, then wait for 6-12 months to be sure that all users have upgraded into this SQLite version and only after that publish my Windows 10 version of the app. But I really would not like to do
    that because waiting for 6-12 months is too long. My app is used maybe 1-2 times a month by an average user, that's why I think minimum of 6-12 months wait time would be necessary.
    I believe many developers have the same issue.
    Is any of these options possible:
    1. Silverlight is still in Windows 10 so the code for reading SQL CE databases still exists there. So Microsoft could easily implement in Windows 10 APIs an utility function something like ExportSqlCeDatabase(DataContext context, string outputFolder)
    which would export all tables in a database to CSV files. Then in my Windows 10 app I could import data from those CSV files into my new SQLite database.
    2. Can I prevent automatic application upgrade from a too old Silverlight app to Windows 10 version? Upgrade should be allowed only if user has first installed the Silverlight upgrade which already uses SQLite database. If an automatic upgrade is performed
    from a too old Silverlight version still using the SQL CE database, all data is lost.
    3. Can Silverlight app access files of another Windows Runtime app (from same publisher) in Windows 10? If this is possible, I could then implement a separate utility application using Silverlight which upgrades the old SQL CE database to SQLite in
    the actual Windows Runtime app by accessing its files (read+write access to other app's files needed). This option would be the worst but better than nothing.

    Take a look at Sam Jawaran's Build session
    Moving to the Universal Windows Platform: Porting an App from Windows 8.1 XAML or Windows Phone Silverlight to Windows 10 tomorrow morning (and available recorded later).
    I don't believe there's a clean way to read the SQL CE database once the app is upgraded to a Windows Runtime app. The best is probably to upgrade your app to convert from SQLCE to SQLite in Silverlight ASAP. That will give some time for customers
    to run it and update their databases before Windows 10 ships and you publish the Windows 10 version of your app.
    --Rob

  • Understanding the Windows Phone Development Paradigm

    Hi all I have been developing WinForm apps for a long time and over the past year or so have moved over to WPF. I guess I am quite old school in my ways but I still cannot get my head around data bound WinPhone apps.
    I have no issue developing local WinPhone apps that just store data locally. However I cannot understand why it has to be so complex (is it?) dealing with databound apps on WinPhone.
    In my head all I want to do is make a call to a server, via a datareader or other object and then populate my datareader. Like wise to update/insert take the data from my model stick it through an adapter and send it off to the server.
    Can anybody explain why this cannot be done on WinPhone (or can it and I'm missing something?). Also I'm struggling to get my head around the service aspect of a WinPhone app.
    It seem to me that you have to create a mobile service on Azure (or similar) and then actually write the code for it in c# (why can't I do this in vb.net? Does this mean I have to write my service in c# regardless of the language I choose to develop my app
    in?) and then publish it to my mobile service. My phone app then connects to this published service.
    Any tips good posts about which explains the whole concepts and reasons why WinPhone apps need to be developed this way. The MSDN ones to be honest seem to assume everyone knows the paradigm, without really explain the reasons for it.

    DataReader/Dataset is not available in Windows Phone. To create databound app you have to create WCF Service which you can host on your server and consume it in your Windows Phone app. You can have a Azure Service or you can host WCF Service on our own server.
    Although most of the samples are  in C# but you can also write code in VB.NET. You can use C# to VB.NET Converter to convert sample into VB.NET
    http://converter.telerik.com
    Gaurav Khanna | Microsoft VB.NET MVP | Microsoft Community Contributor

  • How to hold last frame in mediaplayer in Windows phone 8.1..?

    I am using mediaElement to play videos in an app in Windows phone 8.1. When I am moving to next channel by pressing the right
    arrow (which I have placed), its showing the first frame of the video before moving on to next video.
    I actually want to show the frame at the time when the video was switched to next channel. How can I do this..?

    Hi Jose,
    Well, if you have a media file you can get its thumbnail from its StorageFile using StorageFile.GetThumbnailAsync method:
    https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.storagefile.getthumbnailasync.aspx
    If you really need to grab the first frame from a video in your MediaElement, you have to write an MFT in C++ to do this. Please refer to this thread and read Rob's suggestion for details:
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/b3245a6c-23b5-4fff-a26b-1c0a8a87437c/grabbing-a-video-frame-to-make-a-thumbnail-in-a-c-xaml-windows-store-application?forum=winappswithcsharp
    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.

  • Unable to detect NFC tag (ISO15693) in Lumia 830 on windows Phone 8.1

    Microsoft in Windows phone 8.1 has added new Nfc related features including low level access(Non NDEF). I have Nokia Lumia 830 (PN547 NFC chipset is present in this device).Im not able to detect Nfc tag (ANT-7M24LR-A ,ISO15693) through Lumia 830, which
    im able to read/write using Nfc-V(ISO15693) in Android. I also have a Lumia 720 (old NFC hardware) but atleast it is able to detect the tag. Has anyone encountered this ? Whats the workaround ?

    Hi Franklin,
    Thank you for the quick reply.
    Current OS version on the Lumia 830  is : Windows Phone 8.1 Update (8.10.14157.200)
    I have taken reference of  the NFC Smart Card Reader project(nfcsmartcardreader codeplex) to read/ write to the tag. We are trying to read/write to the tag (ISO 15693) using the low level APIs (Non NDEF format).
    But my problem is that even before we can send/receive the data from the tag, the phone is not detecting the tag itself. If i try to debug the card added event doesnot fire in any case for (ANT-7 M24-LR-A) tag.
    I also have a Lumia 720 (old NFC hardware) but it is atleast able to detect the above mentioned tag.
    Lumia 830 is able to detect other tags like a generic NFC sticker (Mifare Ultralight) .
    Hi theDarkPriest,
    >>I have taken reference of the NFC Smart Card Reader project(nfcsmartcardreader codeplex) to read/ write to the tag
    Well, have you tied to read NFC Tag using Proximity API? If not, please refer to this article:
    http://blogs.msdn.com/b/windowsappdev/archive/2013/04/18/develop-a-cutting-edge-app-with-nfc.aspx
    If the Proximity API can detect NFC Tag correctly,  I think this issue should caused by this third-party library, you need to ask for help in its official site:
    https://nfcsmartcardreader.codeplex.com/discussions
    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.

Maybe you are looking for

  • Backed Up from macbook pro to external hard drive for use on PC--how to restore to macbook pro?

    Good evening,   My college student daughter uses her macbook pro, 13" Mid-2010,  for ALL her school work.  A few days ago it stopped working for her.  Blank screen.  Turned it off and on, blank screen with the gear spinning.  She took it to a place n

  • Proper user and group rights

    Dear readers and admins My question is about the "correct" setting of the user and group rights, so the following is possible. It relates to Server 10.3 and to 10.4. Requirements: Group 1 = "Regular user" Group 2 = "Administration, Accounting" User 1

  • [Solved] Pacman message after interrupted installation... persists

    As you can see I'm still a bit of a newbie. Yesterday I was installing TeX live, but while installing someone unplugged a USB stick and all went stuck... it all just freeze the system, I guess it was a hardware problem. Anyway, I restarted and when I

  • Data transfer between datbases?

    Hi, Here's my question: I have 2 databases.DB1 and DB2.I have 1 table in each with the same name and same structure .Lets say the table name is "STUDENT".Student table in DB1 has 100 rows in it.Now useing SQL ,i want the Student table in DB2 to conta

  • Post Goods Receipt in EWM : No items found for delivery

    Hi All, I am sending across am Inbound Delivery from ERP to the EWM System. The sequence of actions are as follows : 1. In bound delivery being sent from ERP to EWM. 2. Warehouse task being created in EWM. 3. Warehouse order being created in EWM. 4.