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

How do I install a signed driver on Windows 10 without getting "Program Compatibility Assistant" message

When I try to install my device driver, I get the "Program Compatibility Dialog" A digitally signed driver is required : Process Detection Driver Cetrus. Windows blocked the installation of a digitally unsigned driver. Uninstall the program or…
MrLister
  • 634
  • 7
  • 32
0
votes
1 answer

sqlcmd on Windows/SQL Server 2016: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'

We recently migrated to Windows 10 in a Windows 2016/SQL Server 2016 environment. The linked servers were supposedly set up the same as on the old network, but the following sqlcmd no longer works: sqlcmd -S DBServer1 -q"Insert into…
0
votes
0 answers

How to open a new window in Windows Forms application using C#?

I'm using a windows 10. In a Windows Forms application I'm trying to open a new window when I right click on the application icon from the task manager. Please refer the image: As I'm a fresher I'm not getting any clue to implement this. Can anyone…
Arulpriya
  • 173
  • 10
0
votes
1 answer

QT C++ application using QGIS API

I'm trying to develop a QT C++ application that uses QGIS API and I can't manage Qt Creator to compile the code. I've read several topicts at gis.stackexchange and from other sources. The information is mostly outdated and I havent't found a…
0
votes
1 answer

Legacy app and scaling in Windows 10

we have a quite old application that is based on Microsoft Access. Parts of the UI are still Microsoft Access, other parts use WinForms and the newest parts use WPF (trying to get rid of the old parts step by step). We discovered an odd scaling…
Nostromo
  • 1,177
  • 10
  • 28
0
votes
1 answer

File.Exists function not working in Windows8 or higher

The file exists function always return false even file exists. I tried to copy file path n pasted in run and tried to open manually, it failed even File exists physically (Win7 works fine, Win8 or higher issue) Tried several solutions from the…
Sampat Patil
  • 31
  • 1
  • 1
  • 4
0
votes
1 answer

How to automate open control panel and add a language and move up?

I am trying to add a language in windows 10 creators update (RS2). Now tried using the bat and xml file mentioned here, How to change system locale in batch , its not working in new OS. Windows is restarting but not applying and moving up the…
Mcore8x
  • 133
  • 12
0
votes
1 answer

script file referenced in PBK file fails to connect and crashes settings

I have legacy code from Windows 95 that is still being worked on and sold. It creates RAS dial-up entries that reference a script (*.scp) file in the DEVICE=switch section of the PBK file. The entry is created using RASSetEntryPropertiesA() in…
Gregor Brandt
  • 7,659
  • 38
  • 59
0
votes
1 answer

DesktopAppConverter does not recognize installed files into roaming folder

The Setup created by InnoSetup is installing two files into the Roaming Directory. For example: C:\Users{user}\AppData\Roaming\Get\Rezeptverwaltung\zutaten.xml C:\Users{user}\AppData\Roaming\Get\Rezeptverwaltung\rezepte.xml I also can see the…
0
votes
1 answer

Remove Write-Protection on Network Drive

I'm on Windows 10 Enterprise. I have created a folder for a task and mapped it to drive V:\, a network drive. In trying to copy a file to it, I receive the error "The disk is write-protected. Remove the write-protection or use another…
pythonian
  • 1
  • 1
  • 3
0
votes
0 answers

MySql exception on Windows 10: SocketException with ErrorCode 10053

I have a small application which is trying to import data from a MySql database into a SQL Express database. This is under development in Visual Studio 2013 on Windows 10, using Entity Framework Database First to model the MySql database, connect to…
0
votes
1 answer

using SQL Server 2016 inside vs2015 is this normal?

I'm trying to learn asp.net, and suddenly in the free online course SQL was used. I found SQL Server 2016 to be free for developers and so I installed it. Eventually i managed to create manually a simple database, and put some values in it, well not…
Peter
  • 2,043
  • 1
  • 21
  • 45
0
votes
1 answer

Why does rebuild after restarting PC cause network errors?

Using Windows 10 Pro and VS2015 Pro with all updates at the time of writing. Ran VS in safe mode and repair install of Visual Studio with no luck. Note that SSMS and other apps can access the database OK at any time. The code can be reduced to…
ajayel
  • 3,027
  • 2
  • 26
  • 33
0
votes
3 answers

How can i open this python file with double click?

There are some files that open with double click . But not this one . I want to open it with double click . it has the following code written inside it: from tkinter import* tk=Tk() tk.title("App…
KAR PAT
  • 1
  • 1
0
votes
2 answers

UWP: Deployment error: Cannot register the xxxxx package because the extension is missing an EntryPoint or StartPage attribute. (0x80073cf6)

I try to create an JS UWP App with a win32 fullTrustProcess AppService extension. I followed the example here: https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/AppServiceBridgeSample but when I try to deploy to local…