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

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Windows 8 Background Downloader Issue

I'm having an issue with a Windows 8 metro application that I am building. I am using the JavaScript Windows 8 library for this application. My issue is that I have some code which downloads a file ...
0
votes
0answers
12 views

Windows 8, MediaCapture.StopPreviewAsync from javascript

I'm using the Window's MediaCapture class from a Win8 html/javascript application. When I stop displaying the preview video in a <video /> tag, I figured I'd need to use the StopPreviewAsync ...
0
votes
1answer
13 views

App settings to be stored into roaming data store

I have implemented an entry in SettingsFlyout control for settings pane. The page itself contains a dropdown. Whatever option user select from this dropdown need to be stored in roaming data store. ...
0
votes
0answers
28 views

Windows Runtime in Desktop apps

Most developers (belonging to SME companies) upgrading to Windows 8 and Visual Studio 2012 have mostly had to do so for one of the following reasons: Targeting .NET 4.5 to utilize support for new ...
0
votes
0answers
5 views

Updating appbar button using flyout menu

I have a question that is probably easy but I'm just overlooking. So I've created an app bar with a single button on it that creates a flyout menu when pressed. The button is created so that it can ...
1
vote
0answers
10 views

Windows 8: SQL Server Connection Delay

I have just moved to Windows 8 on my dev box, and I am having an issue with all external SqlConnection.Open() commands taking 2+ seconds (connecting to local has no overhead). This is irrelevant of ...
0
votes
1answer
28 views

How to return array from JavaScript function that retrieves data from text file?

I am building a Windows 8 Store app with HTML/CSS/JavaScript. I am reading in data from a text file through a function, and then putting that data into an array. I am trying to return the array ...
0
votes
3answers
40 views

How to bind DateTime.Now to TextBlock?

In my Windows 8 app I want to show the current time in a TextBlock element. The time value should update every second. The following code just works fine, but I think it's not exactly the ideal ...
0
votes
0answers
13 views

Windows 8 desktop application vs Metro app

I need to create applications on Windows 8 tablets. Selling the application is not an issue, it's mainly needed for my own work. I cannot decide if I should create a desktop application or a Metro ...
1
vote
0answers
6 views

Windows8 internet explorer shortcut

I tried to experiment with create/update shortcuts for Windows 8 TaskBar. I started playing with Internet Explorer.lnk C:\Users\XXXX\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User ...
4
votes
0answers
28 views

Sorting values of ObservableCollection (Reactive Extensions)

In my application i am having a list with more than 400 push pins. For avoiding the UI block i am using the following terminolagy along with Rx framework. var observer = ...
2
votes
2answers
13 views

How to make Mail Body Text in Two lines in Windows 8 using LaunchUriAsync

Here is my Code var body="Hello World"; var mailto = new Uri("mailto:?to=a@a.com&subject=Hello&body="+body); await Windows.System.Launcher.LaunchUriAsync(mailto); I wanted to display ...
0
votes
0answers
22 views

Rotate a document by 90 degrees before printing

I have created a sample code to print a document using C# XAML in a Windows 8 App. Now when I print I want the document to be printed 90 degrees rotated. How can I achieve this? Following is my ...
0
votes
0answers
10 views

Start chat with contact or open People profile from my app

In my Windows 8 Store app the user can pick a contact via the ContactPicker. I then want to be able to use the information to start chat with/send a single instant message to that contact. However, ...
0
votes
1answer
11 views

wp8 Package.Current.InstalledLocation.GetFolderAsync can't get the new folder under Assets

I created new folders under assets, and used the following code to get the new folder but failed by : The system cannot find the file specified. (Exception from HRESULT: 0x80070002) var folder = ...
0
votes
1answer
16 views

Confusion about the App developement For windows surface Pro and Windows surface for windows rt

I want to start an app for surface but the confusion I got is one of surface core contain windows rt and pro version contain windows 8.for pro i am fine with the development but for windows rt ...
0
votes
1answer
27 views

Bind IsSelected Property of ListBoxItem in ListBox with Multiple selection mode

In WinRT App (C#) I have List<Item> items, which bind to ListBox. Class Item has 2 fields: string Name and bool IsSelected. As you already understood, I want to bind IsSelected field to ...
0
votes
0answers
8 views

Reposistioning Icons in Windows Store apps

I'm using a set of icons inside my Windows Store App for some functionality, I want to code for rearranging according to user wish like how we see in Windows 8 Start Screen. I want guidance and some ...
-1
votes
1answer
13 views

GridView Sample in windows 8?

I need GridView Sample to bind image and text data to item template.Anyone please tell me samples on that ,how to bind the data to gridview in windows 8?
0
votes
0answers
4 views

Apache not lauching in Xampp on Windows 8 [closed]

I recently upgraded my laptop to windows 8, I launched Xampp, then launched Apache, it didn't work. It gave me these errors: 10:24:43 AM [Apache] Error: Apache shutdown unexpectedly. 10:24:43 AM ...
0
votes
1answer
13 views

how to display form at windows 8 homescreen

How would I get a Windows form to show up on not only the desktop but also the Windows 8 metro start screen? I know it's possible because the on-screen keyboard does this: ...
1
vote
1answer
21 views

Install .Net 3.5 on Windows 8 with Inno Setup

I've been using Inno Setup to check for and install the .NET 2.0 framework for one of my applications. It's worked pretty faultessly by checking for a Registry Key and simply downloading the .NET ...
1
vote
0answers
51 views

WinForms app not running on Windows 8 (nothing happens!)

I developed a WinForms application using Visual Studio 2010 and targeting .NET Framework 4.0. I created a setup project, installed it on many Windows 7 computers, and it runs smoothly. Then I ran the ...
0
votes
0answers
25 views

Implementing a Windows 8 app with nested navigation

I'm currently developing an app for Windows 8 which should provide nested navigation. The main view is split into 3 parts, a menu area on the left side, a Content area and a Header. Both the menu and ...
0
votes
0answers
8 views

Windows Store app ComboBox fire event on user change

In my Windows Store (Metro) app, my ComboBoxes fire their selectionChanged() events every time their item sources get updated or their selected value/index gets changed in code. How do I make it so ...
2
votes
1answer
14 views

Pushpin resize binding zoomlevel

I'm using WinRT with bing maps and i'm trying to set (programmatically) the RenderTransform value of my pushpin when zooming on map. I tried this Solution but seems that the Windows 8 controls do not ...
0
votes
1answer
25 views

Win 8 MonoGame - Game resolution vs. screen resolution

I'm currently working on a Win 8 Windows Store game (Monogame, C#). I set the garphics.PrefferedBackBuffers to 1366x768. The laptop that I use mostly to develop doesn't support this res neither does ...
-2
votes
0answers
13 views

WebAuthenticationBroker stay logged in

I'm using the WebAuthenticationBroker class to log in with Facebook in my app (Metro App C#).However when the user checks "Stay logged in" he needs to log in each time. Any ideas to let the user stay ...
0
votes
0answers
7 views

Binding issue with groupedview Windows 8 App XAML/C#

A time ago I have asked how to implement a GroupedView and it worked quiet well, but now I have a problem. In my new App, the Grouped view only shows the GroupHeadings, but not the elements. The ...
1
vote
1answer
14 views

Virtual Android device error?

I have downloaded and installed the android bundle sdk from android com and I have created a virtual device but when I want to debug my new application the virtual device hangs at the android logo ...
1
vote
1answer
36 views

How can we create a Windows 8 Application which supports in all resolutions?

Which is the best approach to create a windows 8 application which supports all resolutions including Snapped & Filled States . [1366 X 768 1024 X 768 1920 X 1080 2560 X 1440 1280 X 800 1920 X ...
-1
votes
0answers
11 views

How to improve graphical performance of Windows 8 on KVM? [closed]

I installed Windows 8 on KVM. But its graphical performance is less than desirable. First I tried to use SPICE protocol to solve this problem, but it doesn't support Windows 8. Next I tried to use ...
2
votes
1answer
19 views

App seems to close when in background

Some times my windows store app disappear from Alt-Tab List, if user finds app via top left corner app list and re-opens it then it re-launches completely.What is the reason? How can i handle this ...
1
vote
1answer
19 views

Converting Bing Map’s “ViewChangeEnded” Event to an Observable sequence in WinRT

How I can convert Bing Map’s “ViewChangeEnded” event to Observable sequence in Windows 8.
0
votes
1answer
24 views

Windows Store app proxy issue

i'm trying to get some data from internet using following code: HttpClient client = new HttpClient(); string URL = "http://server/test/userauth?operation=loginAuth&userName=" + ...
0
votes
0answers
13 views

Metro App check if a webserver/webpage is up and available

What javascript code can be used in developing a Windows 8 app to check if a webpage or webserver is up? Example localhost or 127.0.0.1 or stackoverflow.com Does simply using AJAX normal to use? How ...
8
votes
0answers
41 views

How I can make use of Microsoft Rx Framework to implement Bing Map effectively in WinRT / Windows 8

In my e-commerce application I need to plot my nearby stores in Bing map, And my another requirement is during the time of zooming and paning the map I need to update my stores based on the map ...
0
votes
1answer
16 views

Can't write back to Access DB on new machine (Windows 8)

I have an application using ".mdb" Access DB written in VB.NET, VS 2012. In Windows 8, I can run it, establish a connection to the DB, read the data from DB with the "SELECT" statement, but when I ...
1
vote
2answers
29 views

Correct interaction with GridView

In Windows 8 App (Pc + Tablet) (C#) I have GridView. Which event I need to use, to correct realize that: On PC Left Key Mouse Click = do something (like open new page or another) Right Key Mouse ...
-5
votes
0answers
10 views

Did a windows 8 refresh. Now origin asks me to re download all the games. Is there a way to avoid it? [migrated]

I did a windows 8 refresh. All the desktop programs were removed. I had 5 games in origin installed. Now, it asks me to download again. Is there a way to avoid re download?
-1
votes
0answers
9 views

Unable to access Windows 8 admin share c$ after enabling localAccountTokenFilterPolicy [closed]

So I have two Windows 8 computers, a desktop and a laptop. I went through the trouble of enabling admin shares on both machines because I feel this is more secure in my home environment (surrounded by ...
0
votes
0answers
22 views

Windows Live Tile not flipping as expected

I am using Push Notifications from Azure to my tile on StartPage. This is my Azure Script function insert(item, user, request) { request.execute({ success: function() { ...
0
votes
1answer
12 views

Launching an App when user click son toast using OnLaunched Event

I am trying to send Launch a page when user clicks on Toast notification by overriding OnLaunchedEvent in App.xaml. Here is the code to it. protected override void ...
5
votes
1answer
49 views

Is one syntax a better choice for anonymous handlers?

Here are all the ways I know to handle an event. Any other syntax is just a playing with scope. // one Button.Click += delegate { /* do something */ }; // two Button.Click += delegate(object s, ...
1
vote
0answers
12 views

windows 8 XmlDocument.LoadFromUriAsync HRESULT E_FAIL has been returned from a call to a COM component

Suddenly all the xmldocment.LoadFromUriAsync(new uri("url")); gave me this exception "HRESULT E_FAIL has been returned from a call to a COM component." in all my windows 8 store app aplications, even ...
0
votes
2answers
13 views

Configure SVN on WIndows 8

I am new in SVN configuration. I have Windows 8 with 4 drives. I am planing to configure TortoiseSVN 1.7.12 on one of drive and will do the checkout from another drive. I have installed it but ...
0
votes
0answers
15 views

Integrating google analytics in Windows 8 HTML5/Javascript Game

I have developed a Windows 8 HTML5/Javascript Game. Now, I am trying to integrate Google Analytics into the game to track the events of the player. Firstly, I tried to integrate it Just like we ...
0
votes
0answers
22 views

Looking for an equivalent in windows 8 store app for DigestUtils.MD5 method

Looking for an equivalent in windows8 store app for DigestUtils.MD5 method. The following C# method different byte values than the DigestUtils.MD5 method. Please help. public static byte[] ...
0
votes
1answer
66 views
+50

Binding to code behind from custom control

I have a GridView that has several buttons. One of them is defined by the following template: <DataTemplate x:Name="SubjectItemTemplate"> <Canvas Width="340" Height="170" ...
1
vote
0answers
21 views

What does the OrientationSensor do? How does it differ from the Inclinometer?

Windows 8 provides various sensors for Windows Store apps. One of them is the OrientationSensor. I don't really understand what it does, or rather how it differs from the Inclinometer. MSDN has a ...

1 2 3 4 5 150