How can i use that? In Windows Phone 8.1 project there is no System.Data namespace. In internet I could not found any documentation for SQLite to Windows Phone 8.1
You need to install SQLite extension. http://visualstudiogallery.msdn.microsoft.com/5d97faf6-39e3-4048-a0bc-adde2af75d1b
This tutorial might help too.
Related
When I am building a Windows Phone 8.1 project, I get this error:
I have searched on the internet but can't find the solution. They say the Microsoft.Phone.dll should be located in C:\Windows\System32 but it isn't there!
I have also tried to make new blank Windows Phone Project 8.1 and tried to build that immediately and I get the same error.
Thanks in advance!
You can't add Silverlight assembly to Windows Phone 8.1 App Project. You should to distinguish between 8.1 Silverlight and 8.1 WinRT Windows Phone projects.
EDIT
If you want to use Microsoft.Phone.dll in your 8.1 project, you must to create Windows Phone Silverlight 8.1 App
Create an application
Choose OS Version
After that you can user Microsoft.Phone.dll
But I recommend to create an usual Windows Phone 8.1 Application and use new SDK.
How I can use OpenCV on Windows Phone 8.1 Universal in C#? I saw EmguCV but he has only commercial license for Windows Phone. Is possible other way to use OpenCV in C# on Windows Phone 8.1?
Visual Studio's Windows store apps creation libraries allow you to design a UI out of pure XAML, for Windows phone 8.1RT and above, OpenCV binaries are availale, that let you mix code from XAML and OpenCV's...
Check this Repository: https://github.com/Microsoft/opencv
Hope it helps :)
I'm using NetSpell.SpellChecker in my WindowsPhone 8.1 application, but when I compile the code I'm getting the following error:
The base3 class or interface 'System.CompoenentModer.Compoenent' in
assembly xxx referenced by type NetSpell.SpellChecker.Spelling could
not be resolved.
Does anyone have an idea how to solve it? Is NetSpell supported in Windows Phone apps?
If not, do you have any idea of how to implement spellcheck/auto correct in Windows Phone?
If you are using Windows Runtime to build apps for Windows Phone, the support is built in, use:
<TextBox IsSpellCheckEnabled="True" />
Unfortunatly this doesn't work in Windows Phone Silverlight applications.
And the NetSpell library doesn't seem to be compatible with Windows Phone, it is dependent on System.ComponentModel.Component, which according to the MSDN documentation is not supported on Windows Phone. I have yet to find another spell checker library. (NHunSpell also doesn't seem to work with Windows Phone)
If it is for your app, I would recommend writing the app as a Windows Phone Store app (Windows Runtime) and use the built in support instead.
I've downloaded the Windows Phone 8.1 SDK Update and I'm attempting to make a Windows Phone 8.1 project. I've updated visual studio with the latest patches but the only template options I have for 8.1 is the standard Windows Store apps as seen in the screenshot below:
Windows Store
Any idea how I can get "Windows Phone" to appear with the appropriate OS target?
I think you didn't install everything. Because i've got actually another screenshot. Following this link you must install Visual Studio 2013 Update 2 - everything needed for WP8.1 is there. Also if you wish to develop Windows Store apps (universal or something) you should install Windows 8.1 SDK from here
Look a bit bown in the list on your screenshot. On the same level the 2nd last option is Windows Phone. That should be it.
I would like to use sqlite with fts3 support on the windows phone 8.
I downloaded sqlite vsix package for the windows phone 8. But the sqlite does not support FTS3. Is there any way how to use SQLite with FTS support in the Windows Phone 8? Should I compile my own sqlite version from source code and set the SQLITE_ENABLE_FTS3 flag?
Thank you
Myth.