I want to save a log of whatever user is doing in my application. For example, if user clicks specific button or Icon I want to record it. How can I achieve that in windows phone?
I would use google analytics for this.
http://devatheart.com/2012/09/02/analytics-for-windows-phone-nuget-to-rule-them-all/
Related
My application is about getting the contact information of the user when filing an job application. I want for the user to have the ability to save what he/she initially filled up and when he/she wants to finish filling-up the form the information he/she already filled up will there. Is there a way to save the state of the application so that when the user closes the application or navigate to another page the form that the user filled-up wont be gone?
Depending on the number and types of fields of your application I would use Preferences.
https://learn.microsoft.com/en-us/xamarin/essentials/preferences?tabs=ios
I just want to integrate windows with my already developed system.
I need login screen that contains window user name And when i click on login button some other page or popup should ask me my system user name and password along with one button.
without my system user name and pass word user can not login to computer.
i just wanted to know that is it possible or not.
If it is possible than give me a way please..
Thank you.
I want "remember me" check in my login page in my windows phone 7 application. How can I do that? How can I make the system recognize the user?
You can make use of IsolatedStorage class to save the user login details in the Windows phone memory.
And you can again check the login details from IsolatedStorage, to verify the users authenticity.
Check this link for an example of IsolatedStorage Usage
I created a user which is Publisher, then i login to this user, but i don't know how to write/edit Article (in Front-end)
When you're logged in as a publisher you should get an extra icon in the title of the article which allows you to edit it - assuming your template has these icons in.
I would like to programmatically login another windows user in interactive mode.
I've created new Windows user account and would like to switch system to that account without of user interaction.
Could you please point me to some API commands or MSDN pages?
Thanks
looks like WTSConnectSession is the right direction
If you're not talking about a Terminal Server session, you'll want LogonUser() if you're logging in as that user, or ImpersonateLoggedOnUser() if you're wanting to do something as an already-logged in user. Both can be found in Advapi32.lib.