windows-8.1

Disable body of mail in WINRT application

依然范特西╮ 提交于 2019-12-02 17:36:58
问题 I have a date picker and time picker in my app and I'm trying to send mail as described here which contains the date as well as the time in the body of the mail. So, Now my question is how to disable the body part of the email as the user shouldn't edit the date or time once it is selected from app. What's the point of security in this ? Code: var mailto = new Uri("mailto:?to=me@mysite.com&subject=Date Selected :+datepicker.value+"); await Windows.System.Launcher.LaunchUriAsync(mailto); 回答1:

Windows 8.1 / Windows 10 breaks my ASP.NET / IIS : “Service unavailable”

孤人 提交于 2019-12-02 16:27:27
With Windows 8.1 finally released to MSDN/Technet today I came across the following issue running my ASP.NET application after doing an in place upgrade with Win 8.1 RTM: Service Unavailable HTTP Error 503. The service is unavailable. The AppPool has died and shows a status of Stopped The IIS log has nothing There's a clue is in the Windows Application log which contains this error The Module DLL C:\WINDOWS\system32\inetsrv\rewrite.dll failed to load. The data is the error. How can I recover my IIS to make it work again? It looks like a simple uninstall and re-install of the rewrite module

Windows event id 4802 and 4803 triggered at the same time (invoke & dismissal of screen saver)

走远了吗. 提交于 2019-12-02 15:25:41
问题 Event id 4803 (Dismissal of a screen saver) is triggered immediately after Event id 4802 (Invoking a screen saver). Note that screen saver is actually still on till user interaction is detected. I am using windows 8.1. On windows 7 Event id 4803 is emitted correctly i.e. after screen saver turns off triggered by user interaction. Why is Event id 4803 triggered right after 4802? Update: I've been testing out the screen saver invoke/dismissal mechanism by windows 7 and it seems that if youtube

Startup is really slow for all Cygwin applications

风流意气都作罢 提交于 2019-12-02 14:06:47
Start of any Cygwin application takes more than a minute on Windows 8.1 x64. It doesn't matter, either I'm starting mintty from shortcut or cygwin.bat or ls.exe or bash.exe from bin folder. Each of them will be slow. After Bash or mintty is started they are working fairly quick: $ time for i in {1..10} ; do bash -c "echo Hello" ; done Hello ... Hello real 0m1.273s user 0m0.060s sys 0m1.181s Steps, which I've tried: Reinstalled and tried both Cygwin and Cygwin64 a few times (version 2.864) Started them as Administrator Tried to run them in Windows 7 compatibility mode Disabled "Automatically

Windows event id 4802 and 4803 triggered at the same time (invoke & dismissal of screen saver)

China☆狼群 提交于 2019-12-02 12:26:23
Event id 4803 (Dismissal of a screen saver) is triggered immediately after Event id 4802 (Invoking a screen saver). Note that screen saver is actually still on till user interaction is detected. I am using windows 8.1. On windows 7 Event id 4803 is emitted correctly i.e. after screen saver turns off triggered by user interaction. Why is Event id 4803 triggered right after 4802? Update: I've been testing out the screen saver invoke/dismissal mechanism by windows 7 and it seems that if youtube is enabled same thing occurs. 来源: https://stackoverflow.com/questions/36941113/windows-event-id-4802

How to i make a .bat that targets a program and types in a text box

本秂侑毒 提交于 2019-12-02 11:52:17
I have no idea where to start on this one. I have seen answers that are like this but I don't know how to format them for what I want. I just need to target the minecraft server while its open and close it by typing "stop" in the console. I have no code to show for but this will be in a other file so I can launch it and then have it close the program. btw I don't think I can use taskkill But anything will help ;) thankyou very much! This is not possible using a batch file alone. There are two main ways to get input to another program in the system (in this case, java.exe): Get your program to

Delphi 7 - Screenshot without capturing form - Windows 8 - DWM.exe

十年热恋 提交于 2019-12-02 10:17:37
问题 Friends, Need to screenshot of the all desktop WITHOUT MY FORM and load in TImage. Success in Windows XP, 7 - with just ALPHABLEND = TRUE + SCREENSHOT PROCEDURE. But same code does not work in Windows 8 - capture all screen INCLUDING THE FORM. I know the problem is related to AERO - DWM.EXE - success using pssuspend.exe (sysinternals) - suspending winlogon.exe and killing dwm.exe Someone could tell me how to capture all desktop without my form also in Windows 8? prntscr.com/314rix - SUCESS IN

Disable body of mail in WINRT application

怎甘沉沦 提交于 2019-12-02 10:05:18
I have a date picker and time picker in my app and I'm trying to send mail as described here which contains the date as well as the time in the body of the mail. So, Now my question is how to disable the body part of the email as the user shouldn't edit the date or time once it is selected from app. What's the point of security in this ? Code: var mailto = new Uri("mailto:?to=me@mysite.com&subject=Date Selected :+datepicker.value+"); await Windows.System.Launcher.LaunchUriAsync(mailto); Damir Arh The way you decided to generate the email, you don't have any control over the email client from

How do I eliminate rogue “counters” on my Windows Store main page?

我的梦境 提交于 2019-12-02 09:38:13
问题 I have a minimalistic main page - 4 buttons and a Bing Map. When I run the app, though, I see two rogue "counters" (don't know how else to describe them) in the upper left and upper right. Here's the one on the upper left: What's causing them, and how can I get rid of them? BTW, the black vertical strip on the left is "as designed" (no pun intended) - below the "counter" are my four buttons, stacked vertically (I deliberately gave the Bing Map only 80% of the page, not the 100% it greedily

List and connect to Bluetooth devices

喜欢而已 提交于 2019-12-02 07:28:45
I'm tryiing to make my Windows tablet app communicate with an other device via Bluetooth. First I want to scan for devices, then i want to connect to the choosen device. I've made a simple test app: Blank front page and added a button and a listboxto it. Then I've tried the following code witch I've forund else where here on SO: ListBox1.Items.Clear(); var devices = await DeviceInformation.FindAllAsync(RfcommDeviceService.GetDeviceSelector(RfcommServiceId.SerialPort)); foreach (var device in devices) { ListBox1.Items.Add(device); } But the list is just empty Then I've tried to just enum