windows-8.1

ASP.NET website issues with Windows 8.1/IE 11 browser

試著忘記壹切 提交于 2019-12-04 05:21:57
We have ASP.NET application, currently we are doing compatibility testing for this on Windows 8.1/IE 11. Found some issues related to UI alignment, _dopostback and imagebutton click. Previously faced the same issues with Windows 8/IE 10 as well. Those issues are addressed by adding IE browser file in app_browser folder in the project. But we have not found any ie.browser latest file for IE 11 support. From some of the blogs came to know hot fixes are there to resolve this issues.Tried by installing hot fixes in hosted machine, _dopostback and UI alignment issues got resolved. Image button

Unexpected Error: -2147483638 while deploying windows8.1 application to me device

江枫思渺然 提交于 2019-12-04 04:27:44
问题 I'm currently working on Windows8.1 Phone Application Development. Application runs fine on the emulator but when i try to deploy it on my Lumia 535, It gives this strange error message (Snapshot). "Debug using ARM" is selected and my device is connected and unlocked. HyperV is enabled too thanks in advance :) 回答1: Try the following.. Disconnect USB press 'Window key' + R type 'services.msc' press 'ok' In the list find service Windows Phone IP over USB Transport (IpOverUsbSvc) . Right click

How to programmatically navigate in a FlipView with swipe animations

为君一笑 提交于 2019-12-04 04:18:37
The Windows Dev Center states regarding the UseTouchAnimationsForAllNavigation property: The XAML FlipView control supports three modes of navigation; touch-based, button-based and programmatic. When a user navigates by touch, the FlipView items scroll smoothly into view. When you set this property to true, the same navigation animation occurs whether the navigation is touch-based, button-based and programmatic. I'm currently navigating from my page's code behind by assigning the SelectedItem property of the FlipView: FlipView.SelectedItem = FlipView.Items.Last(); However, the swipe animation

Windows phone 8.1 Emulator launching issue

自闭症网瘾萝莉.ら 提交于 2019-12-04 03:55:56
问题 While launching the sample application in windows phone 8.1 emulator I am getting this error. **Error 1 Error : DEP6100 : The following unexpected error occurred during boostrapping stage 'Connecting to the device': SmartDeviceException - App deployment failed. Please try again. AccelerometerCS.WindowsPhone Error 2 Error : DEP6200 : Boostrapping 'Emulator 8.1 WVGA 4 inch 512MB' failed. Device cannot be found. App deployment failed. Please try again. AccelerometerCS.WindowsPhone** Any possible

Error : DEP0700 : Registration of the app failed. error 0x80070002: Windows cannot register the package because of an internal error or low memory

喜你入骨 提交于 2019-12-04 03:27:56
I am using visual studio 2013 to create a window 8.1 store app. When I run simulator. I received error message "Error : DEP0700 : Registration of the app failed. error 0x80070002: Windows cannot register the package because of an internal error or low memory. (0x80073cf6) App1". I have try reinstall it, but still have this error. How do solve it? problem is "visual studio is not able to delete the application data in local folder" so when you go in the location C:\Users\UserName\AppData\Local\Packages you will find application data of app installed in your computer now you need to find your

Bad Swing UI scaling on high resolution (MS Surface)

不想你离开。 提交于 2019-12-04 02:47:43
I'm currently working on a little Java application, that involves Swing GUIs. On my development PC everything looks fine but when I run it on my MS Surface, some icons seem to be too large for the components (or the components too small for the icons). Here's what I mean: Google research has lead me to conclude that this is due to Surface's high resolution and Win8's zooming to let some items appear a little larger. So I reset that zoom to 100% and it actually fixed the bad scaling. Unfortunately, this doesn't really fix my problem. Everything is far too small without the zoom, so I'd rather

How to open multiple Visual Studio windows on Windows 8.1? [closed]

≡放荡痞女 提交于 2019-12-04 02:45:37
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I was using Windows 7 and I was able to launch more than one Visual Studio and work at the same time. Now I have windows 8.1 OS and whenever I try to launch second Visual Studio it brings me the one currently launched. Is there a solution for that or should I settle to this new thing? If you have one instance open of Visual Studio, locate it in the taskbar. Rightclick on the Visual Studio icon and

How to move folder/files with path names > 255 characters in Windows 8.1? [closed]

隐身守侯 提交于 2019-12-04 01:32:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . How can you copy/move a folder or file with path name length > 255 on windows? I have looked around for ages, and the only possible way I have found is to use the subst method. I wish I didn't have to mess about with this. I simply want to copy/move a file or directory, X , to location Y . I'm fine with making a

Is Universal Windows Platform the replacement of WinRT of Windows 8 and Windows Phone apps?

*爱你&永不变心* 提交于 2019-12-03 23:26:20
Is Universal Windows Platform the replacement of WinRT of Windows 8 and Windows Phone apps? I mean, there was a WinRT platform to develop metro apps exclusively for Windows 8. Now, that is replaced by UWP, isn't it? That is correct, UWP is the new platform for ALL Windows devices going forward (Win 10+). However WinRT is not replaced by UWP but is instead an extension on top of it, making UWP a much broader set of APIs that can be used across even more devices. As Microsoft themselves state: With this evolution, apps that target the UWP can call not only the WinRT APIs that are common to all

Getting Exception from HRESULT: 0x80072F0D when posting to a service in Windows phone 8.1

为君一笑 提交于 2019-12-03 21:34:08
When I am trying to post a data to an API using HttpClient in Windows Phone 8.1, I am always getting Exception from HRESULT: 0x80072F0D exception. In fiddler, it works fine. try { var requestbody="json data" HttpClient httpClient = new HttpClient(); HttpRequestMessage msg = new HttpRequestMessage(new HttpMethod("POST"), new Uri(addressUri)); msg.Content = new HttpStringContent(requestbody); msg.Content.Headers.ContentType = new HttpMediaTypeHeaderValue("application/json"); HttpResponseMessage response = await httpClient.SendRequestAsync(msg).AsTask(); } catch (Exception ex) { getting *