windows-7

Unable to browse repository after setting visual SVN Server

馋奶兔 提交于 2020-02-20 09:49:12
问题 I have setup VisualSVN Server 2.1.7 on my windows 7 x64 system. I have used all default options : Installed path : C:\Program Files (x86)\VisualSVN Server Repositories path : D:\Repositories Server name, port : testsrvr, 8443 (use secure connection = checked) Using "subversion authentication". I have created a user and a test repository. Given "Read/Write" access to that repository for that user. When I try to browse the repositories, IE shows "Internet Explorer cannot display the webpage". I

Perl Apache : Perl script displayed as plain text

风格不统一 提交于 2020-02-10 01:38:07
问题 While configuring with apache and perl cgi scripts , don't know why index.cgi / index.pl are displayed as plain text instead of executing them. When I put http://localhost in browser it displays below code, instead of executing it. List item #!C:/Dwimperl/perl/bin/perl.exe -w print "Content-type: text/html\n\n"; print <<HTML; <html> <head> <title>A perl web page</title> </head> <body> <h3>A hello world form perl</h3> </body> HTML exit; This are parts of httpd.conf file which I have edited

Windows7 WAMP 64-bit stack MySQL problems

旧时模样 提交于 2020-02-06 09:01:04
问题 By using this guide here -> http://www.elxis.org/guides/developers-guides/64bit-apache-php-mysql-windows.html And hacking through the errors and issues that came up, I've got an apache, php, and MySQL stack almost working on Windows 7 - all 64 bit. PHP and apache are working just fine, and phpinfo tells me that mysql support is enabled. Now here's the problem. Any php script that actually calls MySQL gives me a "connection reset" error. I've tried turning off my firewall; it made no

Why is my WPF style for CornerRadius not being applied in Windows 7?

自古美人都是妖i 提交于 2020-02-06 08:45:11
问题 I created a simple WPF App while answering an SO question, my solution works on my Windows 10 machine, but when I run the app on my Windows 7 laptop the style isn't being applied. I believe this is something to do with Window's style setting over riding my style, how can I force it to use mine instead? I'm running the same .exe on both machines. <Window.Resources> <Style x:Key="CircleButton" TargetType="Button"> <Style.Resources> <Style TargetType="{x:Type Border}"> <Setter Property=

Why is my WPF style for CornerRadius not being applied in Windows 7?

不羁的心 提交于 2020-02-06 08:44:12
问题 I created a simple WPF App while answering an SO question, my solution works on my Windows 10 machine, but when I run the app on my Windows 7 laptop the style isn't being applied. I believe this is something to do with Window's style setting over riding my style, how can I force it to use mine instead? I'm running the same .exe on both machines. <Window.Resources> <Style x:Key="CircleButton" TargetType="Button"> <Style.Resources> <Style TargetType="{x:Type Border}"> <Setter Property=

permissions in IIS for asp.net local website

不羁的心 提交于 2020-02-06 08:25:34
问题 Hi guys i want to create a website[local] and one of its abilities must be taking screenshot from desktop (desktop of pc where IIS is running, totally i mean server side desktop), you should say why serverside , answer is , i want to see my desktop from my mobile device when im downstairs to see if downloads are finished or not :D I use this code in asp.net page in codebehind int screenLeft = SystemInformation.VirtualScreen.Left; int screenTop = SystemInformation.VirtualScreen.Top; int

permissions in IIS for asp.net local website

橙三吉。 提交于 2020-02-06 08:25:26
问题 Hi guys i want to create a website[local] and one of its abilities must be taking screenshot from desktop (desktop of pc where IIS is running, totally i mean server side desktop), you should say why serverside , answer is , i want to see my desktop from my mobile device when im downstairs to see if downloads are finished or not :D I use this code in asp.net page in codebehind int screenLeft = SystemInformation.VirtualScreen.Left; int screenTop = SystemInformation.VirtualScreen.Top; int

Delphi 7, Windows 7, event handler, re-entrent code

不想你离开。 提交于 2020-02-06 02:56:33
问题 I've got some very old code (15+yr) that used to run ok, on older slower machines with older software versions. It doesn't work so well now because if fails a race condition. This is a general question: tell me why I should have known and expected the failure in this code, so that I can recognise the pattern in other code: procedure TMainform.portset(iComNumber:word); begin windows.outputdebugstring(pchar('portset ' + inttostr(icomnumber))); with mainform.comport do try if open then open :=

how to find cells with “#VALUE!” in EXCEL 2010 VBA

ε祈祈猫儿з 提交于 2020-02-02 16:27:06
问题 I need to find the max value in a column by EXCEL 2012 VBA. Some cells have "#VALUE!". My code does not work. Sub find_max() Dim rng As Range Dim dblMax As Double dblMax = 0 Set rng = Range("A2:A11") For Each cell In rng If (cell.Value <> "#VALUE!") Then // error ! type mismatch If dblMax < CDbl(cell.Value) Then dblMax = CDbl(cell.Value) End If End If Next cell MsgBox dblMax End Sub I also need to print the cell location (mark it with a color) with the max value. Any help would be appreciated

Low-level Keyboard Hooks/SendInput with Winkey+L possible? (workstation lockout is intercepted in Vista and higher)

给你一囗甜甜゛ 提交于 2020-02-02 02:37:12
问题 I work on a project called UAWKS (Unofficial Apple Wireless Keyboard Support) that helps Windows users use Apple's bluetooth keyboard. One of the main goals of UAWKS is to swap the Cmd key (which behaves as Winkey in Windows) with Ctrl , allowing users to do Cmd + C for copy, Cmd + T for new tab, etc. It is currently developed using AutoHotkey, which worked pretty well under Windows XP. However, on Vista and Windows 7, Cmd + L causes problems: Regardless of low-level keyboard hooks, Win + L