I have created an UWP app with an app service and communication between those are done using value sets in an AppServiceConnection. I can however not find out what types of data that are supported in the value sets that are transferred. Here is some test code class MyClass { [...] read more
I am making a UWP application that utilizes an AppServiceConnection to send data to a COM style application. The AppServiceConnection.SendMessageAsync() takes a type of Windows.Foundation.Collections.ValueSet The ValueSet class is a collection, similar to a dictionary that stores KeyValuePairs of types <string, object> I am having trouble adding data to the [...] read more
I am trying to make an old Delphi 32-bit DLL usable from my C# applications. Using the default system DLL surrogate (dllhost.exe) seems to be the most comfortable solution. To prove this would work I created a minimal 32-bit test DLL with Delphi that just implements one interface with one [...] read more
I am not able to add a custom type to he ContinuationData in the FileOpenPicker. I can add string/int/datetime, but when I try to add my custom CustomFolder object it fails with the following exception. CustomFolder TargetFolde = new CustomFolder() FileOpenPicker open = new FileOpenPicker(); open.SuggestedStartLocation = PickerLocationId.PicturesLibrary; open.ViewMode = [...] read more
I'm working on a WinJS app which works perfectly on one particular Windows 8 image, but will not deploy on another that we use. Attempting to run any WinJS project from visual studio results in the following error: Error 1 Error : DEP0800 : The required framework "C:\Program Files (x86)\Microsoft [...] read more