0
votes
1answer
36 views

Winrt StreamWriter & StorageFile does not completely Overwrite File

Quick search here yielded nothing. So, I have started using some rather roundabout ways to use StreamWriter in my WinRT Application. Reading works well, writing works differently. What' I'm seeing ...
-1
votes
0answers
58 views

Windows 8 UI Import into Windows 7 VB [closed]

I would like to import the Metro UI for Windows 7. Like the buttons, scroll bar, text fields, etc... And I would like to import them into Visual Basic 2012, which demonstrate this effect in a simple ...
0
votes
0answers
45 views

Windows store app:What are the .pdb folders

In my project folder i see that there is a lot of .pdb folders as shown in the picture below: What are these folders? and is there anyway i can remove or hide them?
0
votes
1answer
59 views

Package.Appxmanifest - Any way to get to portion of this in code?

I know you can get to Windows.ApplicationModel.Package.Current and use Id.Name to get the name, but this seems to be the Package Name in my manifest. A rather long string of numbers and letters. How ...
0
votes
0answers
27 views

How do I change the $(RootNamespace) macro in a WP8 C++ Component in VS 2012?

I am trying to change the $(RootNamespace) of a WP8 runtime component to solve the same problem that this question is trying to solve: Changing namespace name of C++ component in Windows Phone causes ...
0
votes
1answer
21 views

View the html designer within VS 2012 without switching to Blend

I am using VS2012 for creating html/javascript type of app for windows 8 store. When I create a html file, there is no way for me to view the html file unless I launch it in the blend. Sometimes when ...
0
votes
1answer
42 views

Visual Studio 2012 undocumented warning C4447

dllmain.cpp(16): warning C4447: 'main' signature found without threading mode l. Consider using 'int main(Platform::Array<Platform::String^>^ args)'. Above is a warning I got from building a ...
1
vote
1answer
92 views

C++/CX XAML image visibility

I have a project in Visual Studio 2012, using XAML & C++/CX. I would like to set the Visibilty property of an image object in XAMl to "Collapsed" from the C++ code. Here's what I got... ...
0
votes
1answer
110 views

how to change metro app WINJS Sqlite database path

i am developing windows8 application using HTML5 and Javascript. I am using SQLite3-WinRT database plugin, provided by GIT HUB https://github.com/doo/SQLite3-WinRT. I have successfully integrated the ...
1
vote
2answers
109 views

Mysterious Windows.UI.Xaml.Markup.XamlParseException

I'm trying to develop some custom controls (I'm actually using Templated Control to do this if that matters) for a windows app store app. I'm getting a rather ambiguous error (as seen in the title). ...
0
votes
1answer
79 views

Can I debug Windows Store applications on a non Microsoft tablet?

I am about to create a Windows Store application, and need to purchase a Windows RT device for testing. Is the Microsoft Surface the only device that supports remote debugging from Visual Studio? Or ...
0
votes
0answers
105 views

Using Class Libraries in WinRT VS-Solutions for unit-testing purposes

If I want to test my view models or my domain layer (which btw. I've put into a Portable Class Library Project) in Windows Store Apps, is it possible to use a common Class Library Project so that I ...
1
vote
1answer
129 views

Simulate no network with Visual studio 2012 tablet emulator

I am currently writing a WinRT application that has some network access to retrieve various details, I need to be able to simulate conditions when there is no network, or a very slow network to ensure ...
0
votes
1answer
186 views

WinRT Runtime Customization Background Colors

I'm trying to figure out how to use custom background colors for the entire application in WinRT. Essentially, I want to give the user an option to change the background color code. Selection and ...
0
votes
1answer
170 views

Best Way to store Application Configuration for Windows Store App

I've been reading on methods for WP7, but have yet to see any real writeup on what to do for a Windows 8 App. So, if I want to store settings. Some are text fields about the user that they enter, ...
0
votes
1answer
164 views

VS2012 Error C1107

I am getting the following error: fatal error C1107: could not find assembly 'platform.winmd': please specify the assembly search path using /AI or by setting the LIBPATH environment variable Steps ...
2
votes
0answers
231 views

Bug: Project based on self-made VS2012 Windows Store App template wont show up when using the charms or contracts?

Issue A project based on custom VS2012 Windows Store app template wont show up when using the charms or contracts. The steps I used: Created a new project, Blank one. Export a Project Template ...
2
votes
1answer
100 views

How to use a control from a dll / assembly in XAML?

I have a CustomControl derived class in a dll (MyNamespace.UI). How can I use this control in my main application? I've tried adding a reference to the project and then using a custom XAML namespace ...
1
vote
1answer
206 views

Sqlite database restrictions in windows store apps

I have some issues with Sq lite. I read a Microsoft article In that site it is mentioning as "When you create a new C# or VB Windows Store project in Visual Studio, it supports all architectures ...
2
votes
2answers
174 views

How to target WinPhone and WinRT in the same project?

I have created a Visual Studio 2012 C++/CX project that targets both WinPhone 8 and WinRT. The solution can be downloaded here (Hybrid.zip) if anyone is interested. Unfortunately, it doesn’t work as ...
1
vote
1answer
121 views

How do you use C++/CX and include Windows Runtime Libraries in a console application?

I would like to be able to access the Windows namespace (e.g. Windows::Storage::Compression, Windows::Web::Json) from a console application. I am currently using a Win32 Console Application Project.
-1
votes
1answer
66 views

Which data storage is preferable for Windows Tablet? [closed]

I am developing Windows 8 store apps for Tablet. My application is News paper application. I just want data storage possibilities(not interested in local storage & Roaming data). My request which ...
1
vote
1answer
108 views

Sharing Windows Phone Runtime Component

I have implemented functionality as a Windows Phone Runtime Component (C++) project. At the moment this project is part of a Windows Phone 8 Visual Studio solution. Is it possible to export/convert ...
1
vote
2answers
692 views

Visual studio Express 2012 running issues in Windows 8 Release preview for Windows Store Apps

I am using Windows 8 Release Preview 64 bit Operating system for my Visual Studio Express edition 2012 for Windows Store Development. But the XAML design page is not working. It is getting Error is ...
0
votes
1answer
76 views

Native code Windows8 Development without VS?

Since the VS C compiler has never done C99 very well I have always done my native code C development for desktop using a (terrible) port of gcc to windows. Anyway, I was wondering will WINRT's "native ...
0
votes
0answers
89 views

Handler “websocket” has a bad module “ManagedPipelineHandler” in its module list

I've got a Web Socket server and a client in WinRT app. When I deploy my server on localhost it works. But when I deploy on my Windows Server 2012 I got the following error: "Handler "websocket" has a ...
1
vote
2answers
147 views

How can I simulate Microsoft Surface tear-down timeout?

I've been developing an app for Windows 8 and can test Suspend, Resume, Shutdown, etc. from Visual Studio 2012. However, when I test the app on a Microsoft Surface, there is one other state I can't ...
0
votes
1answer
44 views

Copy the content of an appxmainfest file to another using Pre-build command

I've been trying to get this re-build command working for a Windows 8 Project in Visual Studio 2012. if "$(ConfigurationName)"==ReleaseOEM copy "$(ProjectDir)PackageOEM.appxmainfest" ...
1
vote
1answer
133 views

Batch compiling C# code for WinRT and Windows x86

I recently published a library targeted to build for .Net4.5. Now that Windows 8 is out, I'd like to essentially build for that platform too. Unfortunately, some of the code I used in the original ...
0
votes
1answer
128 views

How is makepri.exe integrated into MSBuild?

I am trying to understand the Resource Management in WinRT. The documentation says: MakePRI.exe is a command line tool used for creating and dumping PRI files. It is integrated as part of ...
3
votes
1answer
117 views

How to reference an x86/x64/ARM class library (not an AnyCPU class library) in WinRT

In mvvmcross, I've got a plugin class library which references SQLite for WinRT. Because of this, I can't build that class library as AnyCPU - instead, I have to reference it as x86, x64 or Any CPU. ...
0
votes
1answer
129 views

Which project file element specifies a WinRT class library project and not .NET?

I have a WPF class library that I want to port to be a WinRT class library. My plan is to copy the project, edit the project file so that it's a WinRT project instead of WPF, and see where I stand. ...
0
votes
1answer
136 views

WinRT (Metro App) - Trying to create GregorianCalendar, JulianCalendar, HebrewCalendar - Name not found

Using Visual Studio 2012 to write a Metro App. I am trying to port some of my .NET 2.0 code up. I need to create instances of certain calendars to do date conversions of some scanned data. Roughly, ...
0
votes
0answers
114 views

data-driven unit test for Windows Phone 8

Is there data-driven unit test for Windows Phone 8?, i have managed to install Unit test framework from Nuget source for windows phone 8 and perform simple test. Examples Provided in the following ...
0
votes
1answer
650 views

Windows Runtime DLL created using Visual Studio 2012 doesn't load in a Windows Store app

I am writing a Windows 8 Store app. The main app is a XAML/C# app but it also uses a WinRT component that I have written using C++/CX. I am using Visual Studio 2012 to create this app. For the ...
0
votes
1answer
156 views

Extension SDK for Windows 8 Store apps doesn't work during remote debugging

I created an Extension SDK which basically consists of a Windows Runtime component that I have written using C++/CX. I did this so I can make my component available to developers building Windows 8 ...
0
votes
1answer
96 views

Need C++Builder and WinRT projects

I'm addressing developers with a specific request. Our plans for the PVS-Studio 5.00 static code analyzer are to implement integration with the C++Builder environment and support for the C++/CX ...
3
votes
2answers
260 views

Certification fails for Windows Store App with ATL-based library

I have a Windows library developed in C++ that uses ATL collections, ATL CString and COM interfaces with CComPtr heavily. I removed all non-winrt-allowed API calls from the library, and it builds ...
5
votes
2answers
3k views

Can't find d3dcompiler_43.dll for DirectX programming

I am trying to learn DirectX Programming. But I have hit a snag. I seem to be missing this file: d3dcompiler_43.dll I have installed (in this order): Visual Studio 2012 Windows 8 Windows Phone 8 ...
0
votes
0answers
53 views

Windows Store Certification: The types in the MainDerp namespace are located in file C:\…\MainDerp.winmd that does not match the namespace

I'm trying to publish an app on the Windows Store, but I keep getting this error from the Windows Application Certification Kit (WACK..), preventing me from publishing my app. The error I get is this: ...
0
votes
1answer
77 views

File 'PATH\bin\Release\APPNAME\Controls\xyz.xaml' could not be found

I created a new class library for windows store apps and within this library I created a Usercontrol in a folder named 'Controls'. I use this class library in another project (especially this ...
1
vote
1answer
734 views

Is there any way to create a WinRT app using a Windows 7 development machine? [duplicate]

Possible Duplicate: Can I develop software for Microsoft Surface on Windows 7 machine Is there any way to create a WinRT app using a Windows 7 development machine, or do I have to install ...
3
votes
4answers
807 views

Can I develop software for Microsoft Surface on Windows 7 machine

I want to develop a WinRT app for Surface. There is one detail I cannot find anywhere. Will I be able to compile and run on the device using Windows 7 or I need to upgrade to Windows 8?
13
votes
1answer
473 views

Is it possible to create WinRT project with cmake?

To create WINRT project we need to have CMake >= 2.8.10 and: Set project type to be Windows Store App(CMAKE: SET_TARGET_PROPERTIES(target PROPERTIES VS_WINRT_EXTENSIONS TRUE) Add compiler flag /ZW ...
2
votes
3answers
88 views

A seeming Catch-22 re: developing ARM solutions on a non-ARM device

In order to see my XAML forms in the designer, I have to set the Debug platform to x86 (if I set it to ARM, I get a msg in the designer that the XAML form cannot be shown when set to ARM). So: how ...
0
votes
0answers
21 views

How to create resizable UIs in WinRT? [duplicate]

Possible Duplicate: Screen resolution detection in Windows 8 Apps I just experimented around with WinRT App Development in VS2012 and C#. The only controls I added were three grids: ...
4
votes
1answer
113 views

Appname in a Tile - update

Hello I developed an application with Tile Update. When I look it in my metro, there is no Application Name, but only the small logo from the app-manifest. Is it possible to show my app-name in my ...
0
votes
1answer
687 views

How to set target path for content files in Visual Studio 2012

I'm building a Win8 styled app (metro app?) with Visual Studio 2012. I have some asset files I need to deploy with the app (mp3 files). I need them to be in music-folder, say ...
1
vote
2answers
225 views

Display message in release mode for C++ metro app

I am using OutputDebugString to print out message in output window during C++ metro app debug mode. It works fine. When I change it to release mode, the message no longer appear in the following ...
3
votes
5answers
2k views

Getting an array of bytes out of Windows::Storage::Streams::IBuffer

I have an object that implements the interface Windows::Storage::Streams::IBuffer, and I want to get an array of bytes out of it, however while looking at the documentation this interface looks pretty ...

1 2