windows-8

Embedded Xaml pages on DLL

亡梦爱人 提交于 2019-12-11 03:27:07
问题 I am developing some UI components with the new Metro Design (WinRT) in order to provide them to a third party company. We are having some trouble deploying the package of the controls. When they reference our .dll files produced by our controls on a new Project, they can access all the objects and instantiate them, but when compiling, an error of the type: "Payload file '...\bin\Debug\Charts\Line\Line.xaml' does not exist." . (if we provide the /bin .dll) OR XamlParseException at Windows.UI

create alias for path

左心房为你撑大大i 提交于 2019-12-11 03:25:12
问题 Is it possible in PowerShell to create alias for path? For example: I have to write all time PS PS C:\Users\Jacek>cd C:\windows\microsoft.net\framework\v4.0.30319 I will happy if I could write PS PS C:\Users\Jacek>cd dotNet4path 回答1: You could just create a variable in your powershell profile with that path as the value. Then all you would need to do is something like cd $dotNet4path To add something to your profile profile, type $profile, into a powershell window and it will display the path

Installshield 2011 - crashes at build between “Embedding manifest” and signing

自作多情 提交于 2019-12-11 03:10:08
问题 Since upgrading to a windows 8 & 8.1 machine all my InstallShield projects began failing at signing. The error occurs after or during the embedding manifest into setup.exe, with the following error: Exception ACCESS_VIOLATION (0xc0000005) at address 0x76b34db0 trying to read address 0x00000001. File : C:\Program Files (x86)\InstallShield\2011\System\isdev.exe Version : 17.0.0.714 Exception : c0000005 Address : 76b34db0 Access Type : read Access Address : 00000001 ... When I opted to debug

windows 8 disable smartcard plug and play

坚强是说给别人听的谎言 提交于 2019-12-11 03:04:35
问题 I have a delay problem reading my smartcard and I think that is possible to be a problem with Smartcard Plug and Play service. I googled about this and found that is possible to disable with gpedit.msc ..the problem is that gpedit.msc is not accesible with Windows 8 (non professional). In windows 7 there is a registry called EnableScPnP that works, but I didn't found this at Win 8. How can I disable Smartcard Plug and Play with win8? 回答1: Try setting the same EnableScPnp registry key (see

Windows 8 Azure Emulator is Remapping Port 80 to 81

我与影子孤独终老i 提交于 2019-12-11 02:56:12
问题 I was developing a project with a WCF REST and TCP(inter-role) endpoint on Windows 7. I just upgraded to Windows 8 and now I have serious problems with it. First of all, when I deploy my project to azure I get these warnings: Windows Azure Tools: Warning: Remapping private port 80 to 81 in role 'OfisimCRM.WebClient' to avoid conflict during emulation. Windows Azure Tools: Warning: Remapping private port 443 to 446 in role 'OfisimCRM.WebClient' to avoid conflict during emulation. Skype is

sys_get_temp_dir() - returns C:\Windows on windows8

牧云@^-^@ 提交于 2019-12-11 02:37:22
问题 On windows8 I got this with php 5.3: echo sys_get_temp_dir(); output: C:\Windows Am I not understand something or it is a bug? UPD trying $_ENV : <?php var_export($_ENV); output: array ( ) Checking upload_tmp_dir : <?php echo ini_get('upload_tmp_dir'); output: C:\Windows\Temp 回答1: Looking at the PHP source, it will call GetTempPath to determine the temp directory. According to the documentation, the windows directory C:\Windows is the last fallthrough option. You should check under which user

Bind IsSelected Property of ListBoxItem in ListBox with Multiple selection mode

纵然是瞬间 提交于 2019-12-11 02:36:14
问题 In WinRT App (C#) I have List<Item> items , which bind to ListBox . Class Item has 2 fields: string Name and bool IsSelected . As you already understood, I want to bind IsSelected field to IsSelected Property of ListBoxItem. Why I need this? Why I didn't use SelectedItems property of my ListBox ? When ListBox just loaded, I already have some Items, which must be IsSelected = true I don't want to create another collection to store all selected items. What I'm looking for? I'm looking for

XAML Storyboard for Background ImageBrush

寵の児 提交于 2019-12-11 02:33:26
问题 I have the following XAML Grid: <Grid Style="{StaticResource LayoutRootStyle}" x:Name="mainGrid"> <Grid.Resources> <Storyboard x:Name="FadeOut"> <DoubleAnimation Duration="3" To="0.0" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/> </Storyboard> <Storyboard x:Name="FadeIn"> <DoubleAnimation Duration="3" To="0.35" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/> </Storyboard>

Unable to debug azure project in the emulator

我的梦境 提交于 2019-12-11 02:21:26
问题 Error: There was an error attaching the debugger to the IIS worker process for URL http://127.255.0.0:82/ for role instance ... So basically I have: Windows 8 Enterprise Visual Studio 2012 Azure SDK 1.7 Project with two roles: Worker role Web Role (ASP.NET MVC 4) What have I tried Enabled running 32-bit applications in AppPool Checked for <compilation debug="true"> in Web.config aspnet_regiis.exe -i Azure project is configured to run at Full IIS (with Express it's working like a charm, but

IIS - Missing Windows Authentication Feature [closed]

℡╲_俬逩灬. 提交于 2019-12-11 02:19:22
问题 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 5 years ago . There's anyway to install/enable IIS Windows Authentication when it's missing in "Turn Windows Features On or Off" menu? I'm running an Win8 machine in a Local Workgroup. 回答1: I guess you need Pro or Enterprise edition 回答2: I ran into the same problem, so far tried these, you should also take a look at these