Visual C++ Component Extensions is a set of high-level language extensions for C++ to work with Windows Runtime (WinRT).

learn more… | top users | synonyms

0
votes
0answers
4 views

Why isn't PPL's when_all returning the type I expect?

I'm writing a WinRT function with C++/CX that loads plugins. Each plugin lives in its own folder, and plugin folders are grouped together in well-known locations. That way I can (for example) have ...
2
votes
1answer
38 views

how to access namespace “windows”

#include<iostream> #include<string.h> #include<Windows.h> . . . using namespace Windows::Networking::Connectivity; . . . ConnectionProfile^ internetConnectionProfile = ...
0
votes
1answer
28 views

C++/CX way of iterating Map<String^, Object^>^?

I have a object of type of Map<String^, Object^>^. How do I iterate in C++/CX way? I am trying to use iterator but I am not clear about syntax. Documentation doesn't provide an example.
1
vote
0answers
28 views

Windows 8 metro app identifier not found error

I have three functions declared in my MainPage.xaml.h file: int GetOperator(Platform::String^ str); bool IsNumber (Platform::String^ str); bool IsOperator (Platform::String^ str); and use them in ...
0
votes
0answers
23 views

what's the winRT equivalent of std::queue in a C++ Windows metro app?

I'm trying to implement a Shunting Yard Algorithm in a Windows Metro app I'm working on. Being new to Windows Metro apps, I'm having some difficulties adapting to C++/CX. I get a compiler error ...
0
votes
0answers
11 views

How can I fix C2039 'emplace' is not a member of 'std::vector(_Ty)'?

C2039 'emplace' is not a member of 'std::vector(_Ty)' I encountered this error in collection.h which I have never even touched! Here is this code snippet the error leads me to: virtual void ...
0
votes
2answers
50 views

Windows Phone with C++

I want to make a Windows Phone app (version 7.5 and 8 preferably) in C++. I searched the net and came to know that for this purpose XAML is not supported and I will have to generate the UI from C++ ...
0
votes
0answers
28 views

Is it possible to create an array of arrays in WinRT with C++/CX?

I am messing around with this topic a day now. I tried to use Vectors, IVectors and Arrays. Arrays can't have a higher dimension than 1 in WinRT, Vectors seem to be impossible to use in a public ...
0
votes
0answers
21 views

How do you indent and format an XML file in a Win 8 app?

I've got some code that generates an Windows::Data::Xml::Dom::XmlDocument^ in a win 8 app XmlDocument^ document = ref new XmlDocument(); auto A = document->CreateElement("elemA"); ...
1
vote
2answers
41 views

Assign Image instead of Stream to Windows::UI::Xaml::Controls::Image

I created a UserControl consisting of a Grid which contains a single Image-control. <UserControl x:Class="Album.AlbumPicture" ...
0
votes
1answer
43 views

How to implement UserControl in WinRT

I have created a simple UserControl consisting solely of a Grid and an embraced Image. Now I want to apply events such as "ManipulationDeltaEvent", etc. for touch-control. When I assign an ...
1
vote
1answer
18 views

Windows 8 Apps - plist equivalent to hold dictionaries

In iOS plist files are useful resources since you can hold an array or a dictionary inside it and read from the plist file using a code like this: NSMutableDictionary *myDic = [[NSMutableDictionary ...
1
vote
1answer
47 views

Automatic conversion of winmd to DLL

I'd like to create a tool that accepts a .winmd file (Windows Runtime Component) and generates a C# DLL out of it (containing all the public types defined in the component). As far as I've learned, ...
-1
votes
0answers
69 views

Need help figuring out what's wrong with this metro C++ chat application

Okay, I'm trying to write a very simple chat application for a Windows 8 Metro app. My experience with Windows 8 is zero, and am doing this in C++ only because I have too. Problem is that I can't ...
-1
votes
1answer
37 views

C++/CX - Case insensitive comparison of two String objects

I have two String^ objects and i'd like to do a case-insensitive comparision for equality. That is "blah" should be considered equal to "BLAH". I know that String::CompareOrdinal is available to me, ...
0
votes
0answers
11 views

Create two tasks, one times out in case the other does not come back

Let s say I have a c++/cx task that returns a string^ I want to create another task that timeout in event this task did not return to ensure that I can return an empty string if the original task ...
0
votes
0answers
22 views

Create an Async Login UI (a bit like FilePicker)

I'm reasonably certain that we mortals can not do this, so I figured I'd ask the question here, and hopefully we'll generate some good material in the process of answering it. Situation: I'm creating ...
0
votes
2answers
41 views

C++/CX - Check the type of an object?

Is it possible to check the type of an object in C++/CX ? I have a Vector of objects which derive from ICustomObject and as I enumerate the objects from the Vector, i'd like to know what the actual ...
0
votes
0answers
75 views

Create new objects inside lambda

I am working on a Windows 8 app. I am trying to create an object of one of my classes inside a lambda but it is throwing an exception. I don't understand why. Can someone explain what I am doing here: ...
1
vote
0answers
61 views

Convert Array<unsigned char>^ to an IBuffer

Is there a way to Convert an Array<unsigned char>^ to an IBuffer^? All i want to do is the equivalent of this in c# (WinRT) to c++/CX Byte[] somebytes = GetBytes(); using (var stream = new ...
0
votes
1answer
57 views

In C++/CX, why don't unreferenced hat ^ parameters generate warnings?

I'm working on a Windows Store app and just bumped Visual Studio's warn level up to 4, so I've been fixing unreferenced parameter warnings. In the process, I've noticed that unreferenced ...
0
votes
1answer
44 views

C++/CX - Vector of Vectors?

Is it possible in C++/CX to have a Vector of Vectors? I'm just curious how the syntax would look. Currently, I have... Vector<String^>^ ...and I have found that I may actually need to have ...
0
votes
3answers
64 views

How do I define 'out' parameters a in C++CX Windows Runtime Component?

By the looks of Google it seems like this might not be possible, but: How do I define an 'out' parameter in a C++/CX 'ref class'? If your answer is that this isn't possible, please provide a ...
0
votes
0answers
77 views

Call C# method from C++/CX code

I've already seen this post but in my case I have native only Direct X project. Can I call C# method from C++/CX in such case?
1
vote
1answer
80 views

How To Catch an Exception [C++/CX]

I am working on a Windows 8 app (C++). I have used the httpclient class from the Windows 8 samples collection. inline void CheckHResult(HRESULT hResult) { if (hResult == E_ABORT) { ...
1
vote
0answers
69 views

Device unique id from C++/CX

Can I get device unique id(UDID) from C++/CX code on WP8? Or how can I do it if I doesnt? I've tried already to use DeviceExtendedProperties(it doesn't work, probably it is .net only class).
0
votes
0answers
40 views

Calling other functions inside Lambda [C++/CX]

I'm working on a Windows Store app (C++). The app loads data from database using a webservice and I want that data to be shown on the page. Why can I not call functions w.r.t an instance of a class ...
1
vote
2answers
72 views

How to use friend class in C++/CX?

I need to access class A 's private member in class B 's function and I want to use friend class. however, it seems can not be used as the c++ way . "error C3816" class Class2 was previously ...
0
votes
0answers
44 views

Chain the completion of an async function to another

I am working on a Windows Store (C++) app. This is a method that reads from the database using the web service. task<std::wstring> Ternet::GetFromDB(cancellation_token cancellationToken) { ...
0
votes
1answer
31 views

What are the reference-counting rules for reinterpret_cast from raw pointers to hatted ones?

If I use a reinterpret_cast to convert from IInspectable* to Object^, am I still responsible for releasing the original IInspectable*? Clearly the produced Object^ will release itself when it goes ...
0
votes
1answer
126 views

Including windows.storage.streams.h

I'm trying to put class NativeBuffer from this answer but when windows.storage.streams.h I have much errors like: Error 1 error C2872: 'AsyncStatus' : ambiguous symbol c:\program files ...
1
vote
1answer
93 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
80 views

C++/CX - How to convert a number stored as String^ to byte?

I have a C++/CX Windows 8 application and I need to do something similar to the following conversion: String^ foo = "32"; byte bar = <the numeric value of foo> How can I convert the number ...
1
vote
2answers
118 views

C++/CX caught exception - how to print the full stack?

I have a Windows Store application (for Windows 8) written in C++/CX and I have wrapped a chunk of my code in a try/catch block. The catch block is working and catches an exception, but so far I ...
0
votes
1answer
59 views

Porting old C project into C++/CX

I'm rather new to C++/CX, and right now have an old C project which I need to port into C++/CX. The output are flushed into text-file or standard output, but it's not that important right now since I ...
0
votes
2answers
119 views

Passing class objects as arguments in Windows 8 App and receive them on click event

The objects passed as arguments are only received an Navigation event. I want to receive them on Click Event,what should I use instead of Parameter?? void App1::MainPage::btuN_Click(Platform::Object^ ...
0
votes
1answer
59 views

What do these statements mean in C++/CX?

These are the statements this->SizeChanged += ref new SizeChangedEventHandler(this, &MainPage::MainPage_SizeChanged); Scenarios->SelectionChanged += ref new ...
0
votes
1answer
109 views

Passing class object as argument in Windows 8 C++ App

I want to pass a simple class object from one XAML page to another in a C++ Windows 8 application. I have created a class in App.xaml.h: ref class StaticInfo sealed { public: property ...
0
votes
0answers
169 views

Any Windows 8 C++/CX books? [closed]

Just wondering is there any Windows 8 C++ books around or tutorial on the language syntax ? I know this is C++ but there still different stuff such ^. I haven't used much C++, i do mostly C# for like ...
1
vote
1answer
87 views

What is the working of this thread in C++/CX?

Here is the code: //statement 1 auto task1 = ref new WorkItemHandler([&](IAsyncAction^ task2) { //statement 2 if (task2->Status == AsyncStatus::Canceled) { //statement ...
1
vote
0answers
44 views

C++/CX and CString

How can I use ATL classes (strings, collections, IPC, files and I/O, regexps, etc) in a C++/CX component? For strings and collections STL is functionally more or less equivalent (they just usually ...
1
vote
1answer
74 views

Is it possible to create an unsealed base ref class in Windows Runtime for Windows Phone?

Is it possible to create a base class in Windows Phone 8 variant of Windows Runtime, that other public ref classes can use? For Windows Store apps MSDN documents a way to do this (see below). ...
3
votes
0answers
69 views

How do I pass a NULL C# String to C++/CX or WinRT? [duplicate]

I am writing a simple app in WinRT and would like the C++ bit to do some processing. I want to be able to pass null if the function is to ignore the parameter as an empty string means something as ...
1
vote
1answer
106 views

Consuming C# component from C++/CX and C#

I have created a simple control SimpleControl.xaml in C++/CX defined as: <UserControl .. > // Attributes omitted for reading simplicity <Grid> <Grid.RowDefinitions> ...
0
votes
1answer
99 views

When should I use ref classes in C++/CX?

I'm wading back into the C++ world for a project, and between spending a lot of time with C#, and the new stuff in C++/CX, I'm a bit rusty. When is it appropriate to use the ref class type introduced ...
0
votes
1answer
234 views

Windows Phone 8 manual application exit c++

I am writing a C++ DirectX application without XAML for Windows Phone 8. I have met on difficulty. In the certifications requirements it is mentioned that: "Verify that either the app closes ...
-1
votes
1answer
121 views

How to create add WinRT objects in C++/CX at runtime?

I want to create a WinRT object (say a textblock) in a function (say an event) and add it to a page (say a grid setting its row and column nos. all at runtime) in C++/CX. Is it possible?
0
votes
1answer
38 views

Why does Canvas::GetLeft always return 0?

<Canvas Background="Black"> <Rectangle Fill="Salmon" Name="selBox" Width="100" Height="100" Margin="657,175" /> <Button x:Name="btnAnimate" Content="Animate" ...
2
votes
1answer
454 views

Listview selection display with no padding and no checkmark

I have this XAML to display a ListView in a C++/CX code. The ListView will be used as a selection menu. <ListView x:Name="itemsListView" ItemsSource="{Binding Source={StaticResource ...
0
votes
0answers
32 views

How to troubleshoot not called runtime component of Phone 8 application

I have a simple Windows 8 Phone application and added a C++ runtime component to it that the app calls. I've created the component, referenced it from the app and everything builds correctly. I look ...

1 2 3 4 5