windows-xp

Changing TortoiseSVN from underscore “_svn” to period “.svn” folders

北战南征 提交于 2019-12-25 06:57:33
问题 I am having a problem switching a TortoiseSVN installation from using "_svn" folders to ".svn" folders. The TortoiseSVN version is 1.7.13 and the machine is running 32 bit Windows XP. It seems that no amount of uninstalling, restarting, and reinstalling of TortoiseSVN will force it to change from using the "_svn" folders. I've deleted every bit of TSVN and Subversion related registry data that I could find after uninstalling the software, in addition to removing every settings related files

File creation fails in standard account (Vista)

ε祈祈猫儿з 提交于 2019-12-25 04:39:14
问题 I have created C# application, which creates a image file on Desktop. It works fine on XP and Vista (admin account) but it fails to create image file on Desktop in Vista (standard account). Whether i have to include manifest file to the application to work properly? If i add manifest, will it work on XP without any problems? Sorry if it is lame question. Thanks in advance. 回答1: Make sure you're using the System.Environment.SpecialFolder class to tell you where your user's Desktop really is.

How can my application read windows messages (WM_SETTEXT) from another application?

杀马特。学长 韩版系。学妹 提交于 2019-12-25 04:38:47
问题 Is there a way to intercept window messages from another app other than a global message hook? Platform: Windows XP. 回答1: You can set a hook procedure by calling SetWindowHookEx function. Specify the identifier of the thread with which the hook procedure is to be associated. MSDN 来源: https://stackoverflow.com/questions/1366710/how-can-my-application-read-windows-messages-wm-settext-from-another-applicati

How do I call ICDBurn::GetRecorderDriveLetter() in VS2008 C++? (Solving XP CD write to root)

萝らか妹 提交于 2019-12-25 03:16:01
问题 I am trying to implement the solution given in GetSaveFileName() not returning path of CD burning staging area on XP I'm trying to implement this in VS2008 C++. The ICDBurn::GetRecorderDriveLetter() method is not static and thus cannot be called as written ( ICDBurn::GetRecorderDriveLetter ) in the above answer. ICDBurn can't be instantiated because it's an abstract class. How do I call ICDBurn::GetRecorderDriveLetter() from C++? 回答1: You need to create the COM object first. ICDBurn* pICDBurn

Making HTTPS call in C# with the BouncyCastle library

為{幸葍}努か 提交于 2019-12-25 03:08:42
问题 Using C# 4.0, I need to make HTTPS call with the BouncyCastle library (Short story : Windows XP + TLS 1.2). When using the following code, I get a "HTTP Error 400. The request verb is invalid." Here is my code : using (var client = new TcpClient("serverName", 443)) { var sr = new SecureRandom(); var cl = new MyTlsClient(); var protocol = new TlsClientProtocol(client.GetStream(), sr); protocol.Connect(new MyTlsClient()); using (var stream = protocol.Stream) { var hdr = new StringBuilder(); hdr

How to launch vbs script after internet connection is detected in windows xp? [closed]

房东的猫 提交于 2019-12-25 02:15:03
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . How can i launch a vbs script after the wifi connection has been stablished? Thanks in advance. 回答1: You could launch a VBScript that loops looking for a response from an internet site/device/whatever. When it sees it, it will execute code, otherwise it will try for up to XX

Why Rails fails with: ruby.exe has encountered a problem and needs to close. We are sorry for the inconvenience

徘徊边缘 提交于 2019-12-25 01:56:05
问题 I run a Rails 3 application on Windows XP and it fails sometimes with the following error: This causes the WEBrick server to shutdown. When I start the server again, sometimes the page loads as expected and sometimes it fails again with the same error. I noticed that the error appears when I change one of the JavaScript files that belong to the loaded page. What could be the reason for this ? How could I debug this ? My Ruby version is: ruby 1.9.2p0 (2010-08-18) [i386-mingw32] . 回答1: You need

“The feature you are trying to access…” from MSI on local drive

試著忘記壹切 提交于 2019-12-25 01:44:35
问题 This is a follow-up on this question, which was solved by locating the installation package on a local drive. Unfortunately, it seems that on some machines, this doesn't solve it. I have the following log available === Verbose logging started: 03.07.2013 23:17:03 Build type: SHIP UNICODE 4.05.6001.00 Calling process: C:\WINDOWS\system32\msiexec.exe === Resetting cached policy values Machine policy value 'Debug' is 0 ******* RunEngine: ******* Product: C:\myInstallation.msi ******* Action: ***

Read serial port work good in windows XP but stop working and slow in windows 7

纵饮孤独 提交于 2019-12-25 01:33:47
问题 I'm talking about C# programing and communicate with serial port and different results in Windows 7 and XP. my code is: int count = 0; float data1; float data2; private void button1_Click(object sender, EventArgs e) { serialPort1.PortName = textBox1.Text; serialPort1.BaudRate = Convert.ToInt32(textBox2.Text); serialPort1.Open(); serialPort1.Write("?"); } private void button2_Click(object sender, EventArgs e) { serialPort1.Close(); } private void button3_Click(object sender, EventArgs e) { /

What resolution .ico files do XP and Vista show on the desktop?

放肆的年华 提交于 2019-12-24 22:44:09
问题 There's loads of choices for .ico files but I can't see any logic in how Windows chooses which resolution/bit depth to show 回答1: There are the sizes of icons I bundle, which is the union of all the sizes you may need for XP and Vista depending on the settings the user chooses: 16x16 22x22 24x24 32x32 40x40 48x48 64x64 96x96 128x128 256x256 来源: https://stackoverflow.com/questions/230795/what-resolution-ico-files-do-xp-and-vista-show-on-the-desktop