Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to create windows phone 8.1 silverlight app in offline mode.
Is there any way?
Please tell me. Any help would be greatly appreciated.
This is not an answer which will show you code, but just the high-level design that could be possible.
You want to display some data
Check if you have internet
2.1 If you do, check if you want to update (do you update every time you can, or do you update every X tries, X seconds, ...)
2.1.1 When you fetch the data, store it in a file or database.
2.2 If you don't, check if you have the result in a file or database
Show the data you got in step 2.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 days ago.
Improve this question
I want create a windows application .net or .net framework c# that :
login to google play store as a Clone Google play in windows form c# and download apk
Please advise where to start
A little confused as to how the work steps are.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am developing Cross-platform application using xamarin forms for all WindowsPhone, iOS and android app.
Those application can work offline also for this I want use database storing information for offline use.
I need your suggestion which database ORM I do use for development and which one is best.
Thanks in advance!
In the near future i would vote for realm ,but since at the moment they are not stable and missing many key features in Xamarin.Forms, then I would vote for SQLite for now.
For me to store information I use the Settings Plugin for that. But that is because I am lazy at the first place :)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i need this type of page in my application is this possible to make this kind of selection list in windows phone. please help me and provide me the right direction to achieve this.
If you're using Silverlight, you need to use a LongListSelector, which already has support for sections (A-Z, or whatever you want).
You can follow Microsoft's tutorial here:
https://msdn.microsoft.com/en-us/library/windows/apps/jj244365(v=vs.105).aspx
However, for the newer Windows Runtime, the class is now ListView. You can see how to use it here: http://www.visuallylocated.com/post/2014/04/28/Migrating-from-the-LongListSelector-to-the-ListView-in-Windows-Phone-XAML-Apps.aspx
Please note that it will be visually different than iOS.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to make a C# WindowsFormApplication project to collect and store answers.
I then want to use these answers to generate input for selenium web driver which is a console application.
Is it possible to join the two projects together so I first collect my answers on the form, and when I click run on the windows application form, for the console application to start running? If so, how would this be done?
In case you don't want to use database as suggested by kat0r you can use sockets to make them communicate together.
The obvious answer would be to store the questions in a file/database, and simply access it from both applications. You can start other programs with something like Process