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
2
votes
0 answers

Control 8 channel surround sound on external USB audio card in Java, Windows 10

Summary: How do I access all 8 surround channels on my external USB Audio soundcard when I can't find them through the javax.sound.sampled Sound API in Java, but the underlying Windows 10 can use them? I need a strategy to access all 8 channels from…
spl
  • 510
  • 4
  • 15
2
votes
0 answers

What's the maximum number of datarun bytes in an MFT record?

As the number of fragments in a file increases, you can watch the number of bytes used in the MFT record grow. As expected, it grows in increments of 8 until it fills every last byte of the 1024 byte base record, before splitting into a second…
David Wohlferd
  • 7,110
  • 2
  • 29
  • 56
2
votes
1 answer

CfCreatePlaceholders returns 0x8007017C

I'm using the Windows Cloud Filter API to write a sync provider, but my calls to CfCreatePlaceholders are always failing. Here's an example of the code I run once my provider is all connected: CF_PLACEHOLDER_CREATE_INFO cInfo[1] = { 0…
j_6582
  • 161
  • 9
2
votes
1 answer

UWP app fails to start on login using the StartupTask APIs

NOTE: I've already looked at this related question, this is not a duplicate I'm working on a UWP app which also uses the Desktop Bridge (the app package contains the UWP app and a WinForms component), and I'm trying to add the auto startup…
Sergio0694
  • 4,447
  • 3
  • 31
  • 58
2
votes
2 answers

Empty plot on Bokeh Tutorial Exercise

I'm following the bokeh tutorial and in the basic plotting section, I can't manage to show a plot. I only get the axis. What am I missing? Here is the code: df = pd.DataFrame.from_dict(AAPL) weekapple = df.loc["2000-03-01":"2000-04-01"] p =…
2
votes
1 answer

Rename multiple files at once using cmd [Windows 10]

I want to rename multiple files using command prompt / batch script (as such cases often arise where I need to rename multiple files) from - quiz-1.png, quiz-2.png, quiz-3.png, .., .., quiz-20.png to…
Lokeshwar Tailor
  • 341
  • 4
  • 12
2
votes
1 answer

Custom title bar color on Windows 10 desktop app

I have a hybrid WinForms/WPF desktop application running on Windows 10 that still targets .NET 3.5. It has a day mode, dusk mode, and night mode. In night mode everything basically goes red on black, but the title bars still default to white. In…
Jason
  • 309
  • 1
  • 3
  • 16
2
votes
3 answers

Can not import cupy with chainer 4.1.0

I have a project in python2.7.11 using chainer and cupy. After updating version of Chainer from 1.22 to 4.1.0, I can not using cupy >>> import cupy Traceback (most recent call last): File "", line 1, in ImportError: No module…
2
votes
1 answer

Why does my application requires admin priviliges when placed in C:\Program Files on windows 10 but not on windows 7?

My Java RCP application (App.exe) was recently converted from 32-bit to 64-bit. Since it is a 64-bit application i have used NSIS to create an installer which will dump all the required files along with App.exe in C:\Program Files. When the App.exe…
Sudeep
  • 153
  • 1
  • 1
  • 12
2
votes
1 answer

How to install the 64-bit version for Windows 10 of Graphviz 2.38

The Graphviz download page has to links, one for a .msi file and another for a .zip when running the .msi, it looks that it's for 32 bits, since the default directory installation is "Program Files (x86)", which is where the 32-bit installations…
Alex
  • 19
  • 1
  • 5
2
votes
0 answers

C# SendKeys extremely slow (delayed) in Windows 10

I'm using the "native" C# SendKeys, as well as the AutoItX library, in C# (VS 2015) to manually enter login credentials into a login window on a Windows 10 computer. For a long time, this has been working flawlessly. Then, apparently all of a sudden…
Frank H.
  • 1
  • 1
  • 11
  • 25
2
votes
0 answers

Can't run exe from server when booting PC automatically

The service was on Windows 10, I compiled it with VS2015 and language was C. an exe will be called in the function ServiceMain, it ran normally when I launched service manually and got results as expected from exe. but when I shutdown PC, then…
stanway
  • 29
  • 2
2
votes
2 answers

Gcloud app deploy gives unsupported Python 2.5 runtime error

When I run gcloud app deploy in my project folder I get the following error: ERROR: Service [None] uses unsupported Python 2.5 runtime. Please use [runtime: python27] instead. ERROR: (gcloud.app.deploy) Errors occurred while parsing the App Engine…
2
votes
0 answers

Jenkins won't build, ssh executable not found

I'm using Jenkins 1.611 to build on a windows 10 cloud form vm. I'm building from a repo on bitbucket. I have Git for Windows 2.12.2 installed and can clone and pull from the repo in question manually from the Jenkins workspace directory. I can…
J.Hammond
  • 251
  • 3
  • 17
2
votes
1 answer

How to remove entire files and folders created for the nodejs and npm installation

I don't know what happend. All of a sudden, my nodeJS and npm started not responding and many errors popup and i reinstalled many times and not yet that works. When one problem solves, another rises. So i want to clean enitre setup files including…
md-shah
  • 375
  • 4
  • 17