windows-xp

Sitecore Images (ASHX extensions) not being picked up by IIS 5.1 or IIS7 Express- Getting 404 Instead

ぐ巨炮叔叔 提交于 2019-12-24 07:32:46
问题 At the moment I have no images being picked up at the moment, and this is off a completely default Sitecore Xpress install. I think this version is based on a 6.0 release I have installed it on a XP machine (no images) and then tried running it through WebMatrix, still with no images. I am at a loss really, and I have been grasping at straws a little. 回答1: Unfortunately I don't have much expirience with the Xpress edition. But one thing is that you need to have the mime-types setup on the

Microsoft Enterprise Library 4.1 Logging Fails on Windows XP SP3

微笑、不失礼 提交于 2019-12-24 05:17:09
问题 I have an application that uses the Ent Lib 4.1 logging application block. This application runs on XP SP2+, Windows Vista, and Windows 7. Most of the time, my logging works fine. (It typically targets the Event Log trace listener.) Sometimes, and I'm not sure what triggers it, a Windows XP machine will simply stop logging. I've tried adding a flat file trace listener to see if the issue was with the Event Log, but the flat file doesn't work either. Rebooting doesn't fix it either. On all of

Large items in the notification area (AKA system tray)?

[亡魂溺海] 提交于 2019-12-24 04:40:22
问题 I would like to place some large items in the XP system tray. (the one next to the clock) By this i mean items that take up more than the standard icon space. I know it can be done because I have seen several weather and time applications with this functionality. For example http://www.respectsoft.com/weather-clock-screenshots.php (see the clock screen shots) But I cannot find any doco on how to do this. While .net code would be preferred instructions in other technologies would also be

Install PHP on XP / IIS 5.1?

大城市里の小女人 提交于 2019-12-24 03:53:12
问题 I am trying to install PHP onto my development box (XP SP3 / IIS 5.1) I've got PHP 5.2.6 stable downloaded (the MSI installer package) and I am getting an error "Cannot find httpd.conf". After that the install seems to breeze by quickly (more quickly than I would have expected) and when I try to execute a simple PHP script from my localhost test directory that I created, I get a slew of missing DLL errors. I have seen posts out there which indicate that its possible and has been done. I dont

Install PHP on XP / IIS 5.1?

被刻印的时光 ゝ 提交于 2019-12-24 03:53:08
问题 I am trying to install PHP onto my development box (XP SP3 / IIS 5.1) I've got PHP 5.2.6 stable downloaded (the MSI installer package) and I am getting an error "Cannot find httpd.conf". After that the install seems to breeze by quickly (more quickly than I would have expected) and when I try to execute a simple PHP script from my localhost test directory that I created, I get a slew of missing DLL errors. I have seen posts out there which indicate that its possible and has been done. I dont

How can I get files older than a specified date?

夙愿已清 提交于 2019-12-24 01:53:48
问题 I apologize if this question was already asked but I can't seem to find exactly what I am looking for. I want to be able to find files in XP (using cmd) that are older than a specific date. I want to do something like DIR/FIND files that are older than 30 days. The following does not work but hopefully it will give you an idea of what I am trying to do. FOR /f %%f IN ('DIR /b /t -30 I:\FOLDER1\*.pdf') DO move /Y Z:\FOLDER1\%%f "I:\FOLDER2\" Thanks! 回答1: Julian date function are taken from

Echo into multiple files in Batch script

≡放荡痞女 提交于 2019-12-24 00:48:30
问题 How can I echo a line into multiple files in a single command? Example: echo Hello World! into file1.log and file2.log EDIT: Windows-XP Batch Script CHALLENGE: Give me a one-liner =D. If it can't be done w/one line I'm not interested. My solution was ECHO Hello World!>tmp.log & COPY file1.log + tmp.log & COPY file2.log + tmp.log But I'm hoping for one that is a single command and not multiple commands. 回答1: If you need it only for single lines (of input) you can write your own tee with batch.

Restrict a directory that can be used only through a .net Application

末鹿安然 提交于 2019-12-24 00:47:14
问题 I have a windows Application that stores certain files in a directory. I would like to know if there is a way in .net that I can restrict users not to have access to that directly (by just going to that directory in windows, and grab files) so only my application can add/verify/delete a file in that directory. 回答1: Could you use the Isolated Storage in .Net? While, it isn't necessarily restricted away from your users it may be a lot harder to find.... (stores under the local settings

MenuItem blue on hover in xp, fine in windows 7

爷,独闯天下 提交于 2019-12-24 00:17:45
问题 Using XAML we've created a series of buttons at the bottom right of our application. They are in a DockPanel, which is in a Grid. They're just used as toggles, when clicked it changes to the other image. The problem occurs when you hover over the button in XP, the button completely turns to blue, you can't see the image...just blue. This works fine in win 7... <MenuItem Name="PhonePad_MenuItem" Background="{DynamicResource Audio_Btn_Dialer_Disabled_Brush}" Height="22" Width="22" Click=

Take screenshot of any external application using C#

浪子不回头ぞ 提交于 2019-12-23 20:54:16
问题 We have a C# (WPF) application in which we want to take a screenshot of an arbitrary application launched by us (i.e. so we have a reference to the Process we started). The application may be minimized or behind other windows but we still only want the image of the individual application, not overlapping pixels. I know the typical P/Invoke solutions using BitBlt or PrintWindow work most of the time, but those fail (I only get black/transparent pixels) when dealing with an DirectX or OpenGL