windows-8.1

OpenClipboard fails with 0x800401D0 (CLIPBRD_E_CANT_OPEN))

被刻印的时光 ゝ 提交于 2021-01-27 07:40:35
问题 I have a simple WPF app which creates a Thread, polls the clipboard every second and trims any strings it finds However, in the background thread, once the string content changes, the clipboard methods fail with the exception OpenClipboard Failed (Exception from HRESULT: 0x800401D0 (CLIPBRD_E_CANT_OPEN)) Example: I have "ABC" on my clipboard and launch the app. A messagebox will popup with the string ABC. Now I copy a string "DEF" and instead of a message box popping up, the application

Mount .iso file win windows 8 with a batch file [closed]

最后都变了- 提交于 2021-01-27 04:53:51
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Improve this question I have a game which i have backed up to an iso file (the disk drive in my laptop is noisy), and want to run it from a single shortcut without having to mount the iso file every time. I run windows 8.1 so the iso files mount natively. Any ideas? 回答1: powershell

How to fix visual studio error “cannot find one or more components .Please re-install the application” in windows 8.1?

巧了我就是萌 提交于 2020-07-17 09:28:10
问题 As Alex suggests find devenv.exe and run it . when search for devenv.exe then I found it's there . When I run this file getting error " cannot find one or more components .Please reinstall the application " .I re-installed visual studio thrice still getting same error . How to fix this error . It's visual studio ultimate with update 3 . I don't have ISO file , file automatically downloaded by installer.It's got installed smoothly i.e. without giving any error . Edit: Initial question was How

Win8.1 will fire unload and load event to the WPF application when we close and reconnect to this machine using RDC from win7 or other OS

送分小仙女□ 提交于 2020-04-07 18:44:32
问题 This is a strange issue only in Win8.1. As we all know, if there is a running application in a machine, there should not be any other behavior against the application when we connect/disconnect/reconnect to this machine by Remote Desktop Connection. However, we found that Win8.1 will fire unload and load events to the WPF application when we close and reconnect to the machine using RDC. And this is an unwanted behavior which may cause error. Here are the stable reproduce steps: Write a WPF

BackgroundTaskBuilder Register() issue

懵懂的女人 提交于 2020-03-23 18:21:56
问题 I was developing application with Geofencing, when stuck at issue: ArgumentException (Value does not fall within the expected range) when I am trying to register background task for geofencing. Sample from MSDN has the same problem. I will show code from sample for clarity (link to sample: http://code.msdn.microsoft.com/windowsapps/Geolocation-2483de66#content use scenario 5, http://msdn.microsoft.com/en-us/library/windows/apps/dn440583.aspx - instruction how to test). All what I have done:

Make the windows cursor bigger on windows 8

若如初见. 提交于 2020-02-24 06:34:07
问题 I'd like to make the windows cursor bigger. I have a c++ windows application with the following code that I hijacked from a similar question. I am loading a cursor from a .cur file. Already tried this link: The biggest size of Windows Cursor can't decide if the answer is "impossible" or "possible". I've tried this and it doesn't work on windows 8 --> i'm loading a 128x128 file and it still appears very small (32x32). can anyone post something that has actually worked for them? // load cursor

Make the windows cursor bigger on windows 8

北城以北 提交于 2020-02-24 06:33:19
问题 I'd like to make the windows cursor bigger. I have a c++ windows application with the following code that I hijacked from a similar question. I am loading a cursor from a .cur file. Already tried this link: The biggest size of Windows Cursor can't decide if the answer is "impossible" or "possible". I've tried this and it doesn't work on windows 8 --> i'm loading a 128x128 file and it still appears very small (32x32). can anyone post something that has actually worked for them? // load cursor

Capturing images in web application on Windows 8.1 tablets

▼魔方 西西 提交于 2020-02-21 10:31:26
问题 I am about to develop an application that is to run on Windows 8.1 tablets. An important feature is to be able to click on a button to access the camera to take some pictures. Ideally I would like to create it as a Web application rather than a native application due to a number of reasons (licences, cross-platform, development time: have no experience in native apps, etc.). I have looked at the options for capturing images from HTML 5 and have found HTML Media Capture which allows me to

FlipView SelectionChanged event occurs only when touch manipulations are complete

主宰稳场 提交于 2020-02-03 04:05:26
问题 From the docs: Note When a user flips through FlipView content using touch interaction, a SelectionChanged event occurs only when touch manipulations are complete. This means that when a user flips through content quickly, individual SelectionChanged events are not always generated for every item because the manipulation is still occurring. Is there a way to configure the FlipView control to fire SelectionChanged for each flip? This behavior makes implementing paging interesting as the user,