Questions tagged [windows-10-desktop]

the tag windows-10-desktop is for questions concerning application development for the Windows 10 Desktop. Windows 10 Desktop development uses the Win32 API and provides a user interface similar to a traditional Windows UI that supports and may require the use of a keyboard and mouse. Along with this tag should be a tag indicating the language being used and the platform such as .NET. This tag is not used for posts concerning WinRT application development.

Windows 10 comes in three main flavors: Windows 10 Desktop, Windows 10 Mobile, and Windows 10 IoT. Development can be done in a wide variety of languages with several different target processors as well as the different target versions of Windows 10.

The Windows Desktop, Win32, uses the Windows 10 version of the Win32 API which contains functionality that is unavailable in the WinRT in order provide the security of a protected environment for WinRT. The most common processor target is x86 or x64 CPUs.

See the discussion and links in How to: Use Existing C++ Code in a Universal Windows Platform App.

The Windows Runtime, WinRT, with Universal Windows Platform applications allows for a code once, compile many for specific target. A UWP application can be built to target one of several different processors (x86, x64, ARM) as well as any of the versions of Windows 10 (Windows 10 Desktop, Windows 10 Mobile, and Windows 10 IoT).

367 questions
0
votes
2 answers

Virtualbox Ubuntu Nginx not working on Windows 10

I have installed a fresh Ubuntu 16.04-server on Virtualbox on my Windows 10. After the installation I installed Nginx. I set the port to 81 because port 80 is being used by a process I can't identify. I can ping the IP of the VBox which is 10.0.2.15…
putoshop
  • 112
  • 3
  • 13
0
votes
0 answers

Darken Frame Background on Desktop UWP with XAML & C#

I am using user input images as the Frame Background in my app and I want to darken the image. Reducing opacity does the opposite and brightens the image as the Window color is white on Desktop and not black and I can't see any function to change…
Akshay Jain
  • 884
  • 5
  • 19
0
votes
0 answers

Windows-10 LoadLibraryA fails with error 126

My application calls LoadLibraryA to dynamically load a dll. This works perfectly fine on Windows-7 with VS-2013 but errors out on Windows-10(UWP) with VS-2015. The app is written in Java which tries to load our native dll(written in C++) On…
Ganesh kudva
  • 990
  • 3
  • 13
  • 34
0
votes
0 answers

Headphones connected event(or check) in Universal Windows Platform

I need to catch an event when headphones are connected to tablet or desktop PC in my UWP app. ARM version of the app(for Mobile family of UWP devices) catches such event as…
0
votes
1 answer

How to get tablet's IMEI number?

This is not WinRT application. It's standard WPF. The device behaves as normal Windows PC, has Windows 10 installed. It has 3G broadband modem and a SIM card slot.
Harry
  • 4,524
  • 4
  • 42
  • 81
0
votes
1 answer

managed c++ classes crash in create_task

Basically, what is happening is when trying to change a variable of a Managed class (UWP), it crashes. Additionally, it seems to only crash if I try modifying a variable which is created with the app namespace. In other words, if I create a new…
0
votes
1 answer

Bundler Incompatible

I have installed latest version for ruby and rails but test install is giving error . Please could you help me resolve this issue im using windows 10 Fetching gem metadata from https://rubygems.org/....... Fetching gem metadata from…
s.s
  • 1
0
votes
2 answers

Consent UI creation for Windows 10 app

I am developing Windows 10 app. For User account information capability, I need to add consent UI. I just want to know whether some API is already available to display consent UI or we have to design the consent UI to get the consent from the user.
Ramesh
  • 392
  • 1
  • 12
  • 39
0
votes
2 answers

An Extra Drive is Showing in My Computer but not in Disk Management in Windows 10

Hey Any one please help me !! An unknown extra drive is shown in My Computer and when i tried to open it ... it says Access Denied .... I don't know from where it come from and when i checked it in Disk Management its not their. Please help me to…
Ashish Bharwal
  • 157
  • 1
  • 3
  • 13
0
votes
1 answer

How to open Bluetooth Settings from a WPF Application?

I am developing a Windows 10 WPF application and I am using 32feet.net for working around with the Bluetooth. Now I am facing a problem to Turn Off/On the Bluetooth programmatically so the alternative that I have found is to Access the "Action…
Apoorv
  • 2,023
  • 1
  • 19
  • 42
0
votes
2 answers

MySQL 5.7 not running windows 10

MySQL version - 5.7.11 I am unable to run mysql server on my windows 10 even after running command prompt as an administrator and marking run as administrator in the exe files for mysql and mysqld. Following are the contents of log file present in…
0
votes
1 answer

Easiest way to print RichEditBox Document

UWP Windows 10. C# What the easiest way to print RTF Document from RichEditBox? I found the solution from MSDN, but I don't completely understand this. In this example prints element (like RichEditBox screenshot). I need just to print…
0
votes
1 answer

Image slideshow in Windows universal apps

I have been trying to create a Image Slideshow in my app. Been Searching forever for help and ended with this. image slideshow with dispatcher timer in windows store apps I could understand the solution but what I didn't get is the URI Code. Where…
0
votes
2 answers

How to open Excel in windows 10 at the background without "Save as"

This code opens excel at the background with no issue on windows 7 and 8, however on windows 10 it pops out with "save as" prompt. Do you have any idea how can I get rid of "Save as" prompt? object misValue = System.Reflection.Missing.Value; xlApp =…
Laky
  • 373
  • 4
  • 17
0
votes
3 answers

MS Windows 10 Edge Live tiles system cache

I've changed paths (polling uri's) to XML with data but Windows still requests the old one xml url. I was updating xml url in the following steps: Turn live tiles off Unpin tile MS Edge browser cache and history clearing Delete all content within…