The successor to Microsoft Windows 7 that focuses on a new interface style for touch-based devices and tablets.
0
votes
0answers
2 views
Metro app working properly when deployed in windows 8 desktop machine & emulator, but not working properly on surface RT Tablet?
i am developing a C#/XAML windows 8 Metro app,
The application is working properly in windows 8 machine and emulator but not working properly in the Surface RT tablet i.e....
For example , i have a ...
0
votes
1answer
5 views
How to mirror image/preview coming on front camera in my windows 8 phone app
My reference for the app is this link . It uses video brush to render the preview.
http://msdn.microsoft.com/en-us/magazine/hh708750.aspx
The guy talks about giving mirror experience for front ...
1
vote
1answer
24 views
How to access async methods from WCF?
This is my WCF service with method signIn() which looks through a database for a user and returns it's UserID.
[ServiceContract]
public interface IService1
{
[OperationContract]
int ...
0
votes
1answer
18 views
Name table in SQLite-net
I'm building a Windows 8 C#/XAML app that uses SQLite as a storage database, and I'm trying to create multiple tables using the SQLite-net syntax.
From what I've researched so far, a table is ...
-1
votes
0answers
18 views
Reinstall Windows 8 from iso file
I just have my new asus laptop with Windows 8 preinstalled on it. And I have the cd key associated. I used the Windows assistant to give me an iso file thank to my key but it said that I can't use ...
-1
votes
0answers
10 views
Emscripten and visual studio 2012
Currently, I'm trying to compile a code in Visual Studio 2012 with Emscripten in Win 8.
I followed the instructions on the site Emscripten well as another.
...
0
votes
0answers
11 views
Toast Dismiss not working in C# Windows 8
I have even registered for my Toast Notification:
toast.Dismissed += Toast_Dismissed;
I have handler for it as:
private void Toast_Dismissed(ToastNotification sender, ToastDismissedEventArgs e)
...
0
votes
0answers
8 views
How to get my app listed under Vendor / OEM Picks in Windows Store [on hold]
I developed Windows 8 Store app and want to promote it under [Vendor] Picks in the Windows Store. You know vendors such as Samsung, Asus, Dell, HP, Sony and others have their app lists in the store.
...
0
votes
1answer
21 views
Button hover effect and touch (WPF)
I have WPF desktop application with a Button. When I run it on normal PC and go with mouse cursor over the button, it becomes blue (default Windows theme). When I move cursor out, button is gray ...
0
votes
0answers
7 views
Move to the next control on enter/return press in Windows 8 Store application
I have a windows 8 store application with numerous textboxes. When I press enter on the keyboard I'd like the focues to move to the next control.
How can I do this?
Thanks
0
votes
0answers
8 views
No WiFi WEP shared security key in windows 8 [on hold]
Why there is no WEP shared security in windows 8. is there any way that I can access my wifi router with WEB shared key using my laptop with windows 8 professional running on it.
0
votes
0answers
5 views
TextCompositionManager equivalent in Windows 8 Metro apps
Within WPF I created a custom touch screen keyboard. For each button press (which is a key of the keyboard) I call the following code which inserted the key at the correct position in a textbox ...
0
votes
0answers
15 views
Is AppContainer available on Azure / Windows Server?
Windows 8 AppContainer appears to provide an attractive sandboxing/process isolation model. Is it available on Windows Azure? Windows Azure cloud service instances seem to run a version of Windows ...
0
votes
0answers
15 views
Visual Studio 2012 Debugger does not give any useful exceptions?
I have been using VS2012 to write metro style apps for the past few months, and the debugger was working as it should. For some reason, I have been having issues with the debugger for the past couple ...
0
votes
1answer
48 views
Lambda expression as parameter to be used as AsTask() callback
I'm using the BackgroundTransfer.DownloadOperation in a method and I want the caller to be able to pass a lambda expression to be called when progress is updated:
DownloadOperation dwo = await ...