windows

Which version control suits best this list of requirements

Hello, Our dev team is small (3 developers) and windows based. I'm looking for a source control that can do the following: Check out files for editing and warn others that file is used Check in files and merge if they have changed Split baselines for release versions and merge baselines if needed Visual Studio integration Can work ov...

How do I inform other applications that my application is a part of the Windows desktop?

I would like to create a "toolbar" for windows in c# and would like to fit it the in top space of the Windows desktop. I would like the other windows program not be able to overlay my application. I also want other applications to treat my window as a part of the desktop so that when they maximize, you can still see my application. ...

Running PHP scheduled task through Windows Apache Module....

Okay, so we have this site that we took over from a previous firm...PHP, Zend Framework, MySQL etc. It's an interesting site in that they utilize a CMS that's external (they manage some data like forums, user subscription, etc.) So there's a library that communicates via web service calls from PHP to the CMS, and then from JavaScript i...

Perl substitution using string that contains a dollar sign on windows

I'm using perl on windows and am trying to do a one liner using perl to substitute a placeholder in a file using a windows variable that contains a dollar sign. Does anyone know what the correct usage is to make it work with the dollar sign. I've tried various ways and can't seem to get it to work. For example, I have a properties file...

SendInput (C++) is not working.

The return value is 4 and I'm running Visual Studio in administrative mode so permissions should be ok. I don't see anything typed out though. Any help? I'm using Windows 7 x64. INPUT input[4]; input[0].type = INPUT_KEYBOARD; input[0].ki.wVk = 0; input[0].ki.wScan = 'a'; input[0].ki.dwFlags = KEYEVENTF_SCANCODE; input[0].ki.time = 0; i...

How to compare two structs in c ?

Hi! I know, that if i want to compare two structs than i have to write it for myself, because there isn't any function for this, but i can't figure out how should i do that. I have three structs : primary, secondarystruct, and difference(this should contain the different items). All three has the following members : char * filename, cha...

How to remove the app name on the control pannel on windows mobile?

Hi, My device is windows mobile 6.5 and I'm trying to remove my installed application. So I removed all exe/data files what my app used. But after removing those files, there is still app name in the control pannel's remove Program menu. How could I remove the app name on the program list? (I thought it will be removed if I search th...

Which native Windows library deals with files, file sizes, created dates? (for use with JNI)

I need to write a JNI wrapper for windows file system calls. I want to be able to get the size and created date of files on a windows system using the appropriate native library. Can anyone point me in the right direction? thanks ...

What's the most efficient way to track the mouse cursor position on Windows?

In Mac OS X's Cocoa Framework, there are Tracking Rects, which effectively allows you to register an area of your view and get callback messages when the mouse enters or leaves. Is there a similar API in Windows? I'd like to avoid using a timer to call GetCursorPos() every x interval. It could be that they're named something totally di...

what is the simplest way to differentiate between windows versions?

how do I know programaticcally whether my OS is Longhorn server or vista (client). It seems the major version and minor version are same for both. http://msdn.microsoft.com/en-us/library/ms724833(VS.85).aspx so, is there any better alternative? ...

Problem cloning / fetching repository using Git plugin for Hudson on Windows

Before anybody shoots me down for this - I have already checked every appropriate thread and still not found a solution to my problem. I have Hudson with git plugin installed on windows server (not my choice) and Hudson runs as a service. Git/bin is on the path. However I cannot clone the repository. Here is a shortened display of the c...

C# Help needed changing code that deletes folders with long paths

Hi all, A while back I asked a question on stackoverflow about deleting folders that have long paths (>260 characters), the most popular solution was to move into each directory to reduce the length of the path. I've struggled with this and I'm no further on, could someone please suggest how I would intergrate the suggested code into my...

Accessing the camera in Windows Mobile 6 with PythonCE

I have a windows mobile device - HTC Touch Viva - and PythonCE installed on it. I want to capture the camera image using python script. I have ctypes in PythonCE, so was wondering if I could load the DLL that controls the camera and access those methods directly. Please let me know if anyone has done this before. ...

How do i get menu events from a menu item in the system menu of a console window?

I have added a menu item to the SystemMenu of the console window of my application which i created using the AllocConsole() function. but I could not figure out how to process the events for the menu items I've added. How can i process those menu events? Thank you ...

What's the best monitoring framework and tool like Nagios in the MS Windows Environment?

I know Nagios that runs in the UNIX Envirionment. But I can't find one that runs in MS Windows. I prefer freeware or Open Source. But I don't care commercial production. ...

install imap in windows

I'm trying to write a script in php that requires imap functions. I found the functions at here. How do I download and install it in windows ? ...

How to get Directory information via Windows native API?

I can get the created date, file size etc for a file using the following code: // Error handling removed for brevity HANDLE hFile = CreateFile(path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); LARGE_INTEGER fileSize; GetFileSizeEx(hFile, &fileSize); FILE_BASIC_INFO fileInfo); Ge...

Can i use Enterprise LIbrary while developing Windows application and how ?

Can i use Enterprise library while developing Windows application and how ? ...

Opposite of "always on top"

I want to set my application to be on desktop level, like Windows Gadgets. Is this possible to achieve? Thing is, i have borderless application I want to run on desktop. I tried to find the option, but I found only "always on top" which is opposite of what I want to achieve. ...

Have a Linux shell script stuff a string into a Windows user's copy/paste buffer

We have a script right now which our Windows users run on a Linux host by way of putty. From time to time the script produces a string that the user must copy and paste into a Windows application. Without running a full-blown X display server on the Windows box, I'd like to modify the script so that the string is populated in the Windo...