Top "Windows-8" questions

The successor to Microsoft Windows 7 that focuses on a new interface style for touch-based devices and tablets.

How can a Metro app in Windows 8 communicate with a backend desktop app on the same machine?

In a situation where you have the UI frontend built using the new Metro style of apps for windows 8, and …

c# wpf winapi windows-8 windows-runtime
Is there a way to convert a System.IO.Stream to a Windows.Storage.Streams.IRandomAccessStream?

In Windows 8; I would like to pass the contents of a MemoryStream to a class that accepts a parameter of …

c# .net windows windows-8
How to ActiveSync Windows Mobile 6 to windows 8

I have some devices with Windows CE 5, CE 6, Windows Mobile 6.1 and 6.5. Synchronizing with ActiveSycn 4.5 on XP and Windows 7 I have …

windows-8 windows-mobile-6.5 activesync windows-mobile-5.0 windows-mobile-6.1
How are live tiles made in Windows 8?

I've searched the samples, the developer site, the getting started and the enhancing bla bla bla pages. Even using some …

c# xaml windows-8 live-tile
How to convert SVG file to XAML in windows 8 / WinRT

How i can convert SVG file to XAML in windows 8 / WinRT. I am new to this XAML / SVG environment. So …

xaml c#-4.0 svg windows-8 windows-runtime
VB6 Running on Windows 8?

Assuming that vb6 does not run on Windows 8 because the VB6 run time libraries are not shipped with Windows 8, would …

windows vb6 compatibility windows-8
Progress bar with HttpClient

i have a file downloader function: HttpClientHandler aHandler = new HttpClientHandler(); aHandler.ClientCertificateOptions = ClientCertificateOption.Automatic; HttpClient aClient = new HttpClient(aHandler); aClient.…

c# windows-8 download windows-runtime windows-8.1
Internet Explorer 10 Windows 8 Remove Text Input and Password Action Icons

I am testing a highly-customized web application in Internet Explorer 10 on Windows 8, since it is an up and coming release, …

html css internet-explorer windows-8 internet-explorer-10
How to check if file exists in a Windows Store App?

Is there any other way of checking whether a file exists in a Windows Store app? try { var file = await …

c# windows-8 windows-runtime microsoft-metro filenotfoundexception
Is it possible to call an awaitable method in a non async method?

In a windows 8 application in C#/XAML, I sometimes want to call an awaitable method from a non asynchronous method. …

c# windows-8 async-await