windows-xp

Can't install PostgreSQL: An error occurred executing the Microsoft VC++ runtime installer on Windows XP

雨燕双飞 提交于 2019-12-02 17:50:46
I downloaded installer postgresql-9.0.1-1-windows.exe from the official site, ran it, and then got an error: An error occurred executing the Microsoft VC++ runtime installer What is the reason for this error message? Platform: Windows XP SP3, Dell Inspiron 1501. Processor: AMD Sempron 3500+ Milen A. Radev One of the reasons this can happen is because the installer attempts to install an older version of the VC++ runtime than what you are currently using. See this installation log, found in your user's temporary directory (e.g. dd_vcredist_amd64_20190214193107.log ): [20C0:20E4][2019-02-14T19

SaveFileDialog silently crashes WinForms app on WindowsXP

人走茶凉 提交于 2019-12-02 17:26:35
问题 I'm developing WinForms app using C#, .NET 4.0, and DevExpress components. On Windows 7 everything is working just fine. On Windows XP SP3, few seconds after SaveFileDialog is shown and closed, application will silently exit. There is no unhandled exception, Application exit event will not fire, I'm only getting message in the Visual Studio Output window: The program '[3164] MyApp.vshost.exe: Managed (v4.0.30319)' has exited with code 0 (0x0). Code that is causing this issue is very simple:

Opening a remote machine's Windows C drive [closed]

吃可爱长大的小学妹 提交于 2019-12-02 17:11:12
I'm trying to locally mount a machine's C drive that is on my LAN. I need to able to browse the contents of the other machine when tracing through code. I once saw a sys admin do some crazy windows incantation from the cmd prompt. Something like $remote_machine/local_access/C Is anyone familiar with how this is done? If it's not the Home edition of XP, you can use \\servername\c$ Mark Brackett's comment: Note that you need to be an Administrator on the local machine, as the share permissions are locked down If you need a drive letter (some applications don't like UNC style paths that start

How to start MySQL server on windows xp

余生长醉 提交于 2019-12-02 15:54:20
Whenever I try to start MySQL by typing > mysql -u root I get the error ERROR 2003(HY000): Can't connect to MySQL server on 'localhost' (10061) How can I solve the problem above? I just downloaded MySQL and unzipped it in the E: drive. I have not done anything else. Do I have to make a connection first? If so, how can I do that? The MySQL server can be started manually from the command line. This can be done on any version of Windows. To start the mysqld server from the command line, you should start a console window (or “DOS window”) and enter this command: shell> "C:\Program Files\MySQL

How do you copy and paste into Git Bash

和自甴很熟 提交于 2019-12-02 13:46:18
I'm using msysgit running on Windows XP. Tried Ctrl + V , Right click, Middle click, google... no luck. Amber Press Insert . Also, to copy from the window, try clicking the console's window icon (topleft) and choosing Edit -> Mark, then drag a box on the text, then press Enter. (You can also paste via the window icon menu, but the key is faster.) UPDATE Starting from Windows 10 the CTRL + C , CTRL + V and a lot of other feature are implemented in conhost.exe so they should work with every console utility on Windows. (You have to enable Properties -> Option tab -> Quick Edit Mode) Ref: http:/

TAnimate in Windows XP/Vista with themes enabled won't work

老子叫甜甜 提交于 2019-12-02 13:45:29
A coworker has been using a custom AVI to indicate progress during some longer operations for years. It's always worked fine. Recently he decided to move from Delphi 7 to Delphi 2007, in part to get theme support for his applications. (We've finally got most people, but not all, running on XP.) The animation stopped working. Disabling themes makes it work again. TAnimate is a wrapper around the Windows Animation Control, created using InitCommonControlsEx(ICC_ANIMATE_CLASS). The MSDN documentation says that "If you are using ComCtl32.dll version 6 the thread is not supported, therefore make

What free Powershell editors can I use on Windows XP SP2?

拥有回忆 提交于 2019-12-02 13:13:50
问题 I have Windows 7 at home with Powershell 2 and I really like the free version of the PowerGUI Powershell editor. I'd like to start using Powershell at work but we are on version 1.o on XP with SP2. I was going to install PowerGui but it looks like it requires some Core components or maybe even Powershell 2.0. I expect that our XP production servers may not have this version and I think it is safe to stay with 1.0 for now to avoid pushback from the keys with the keys to the production box. My

tkinter 'NoneType' object has no attribute 'pack' (Still works?)

房东的猫 提交于 2019-12-02 12:05:19
I'm fairly new to Python and have just started to play around with tkinter. Running the below code I get an attribute error for but1.pack() ( NoneType object has no attribute pack ). But as far as I can tell this error is having no effect on the window's functionality, it is still pack ing the button. The window still appears and all the buttons behave as expected. Searching I can see other people have had this error, but none of the answers given solved my problem. Hoping you can help. The code: import tkinter import ctypes lst=[] user32 = ctypes.windll.user32 screensize = user32

Strange output in cmd while batch file is running

ぐ巨炮叔叔 提交于 2019-12-02 12:00:06
问题 I have that script in batch file: cd C:\TESTS\front-tests call git pull cd C:\TEST\front-tests\AutoApp\bin\debug start AutoApp.exe And git pull do not work because I can not change directory. Here is the result image: I do not know from where do the strange symbols, before cd command, come from. Any ideas? 回答1: The batch file is saved as utf-8 BOM prefixed. What you see as the cd prefix is the byte order mark. Save the file as ANSI or utf-8 without BOM to make it work. 来源: https:/

C++ binary doesn't work on windows XP

一笑奈何 提交于 2019-12-02 11:37:34
问题 I have a very basic program in C++ compiled in VS 11 Beta on windows 7. All project settings are default except Runtime Library. I changed Multi-threaded DLL (/MD) to Multi-threaded (/MT). This staticly links the runtime library as far as I know. Trying to run this exe on another windows 7 machine with VS 11 Beta installed works fine. Trying to run it on a windowx XP machine with no VS installed causes an error popup saying. " * *.exe is not a valid Win32 application" Is there some settings