windows

shoes url not working in Ubuntu?

Hello all, i have been using Shoes in windows from couple of months and it was working awesome, but now i am having Ubuntu set up on my machine and i am trying to run shoes in it but it seems like URL is not working .... i.e nothing happens when i click on it. Have anybody observed this problem. Any help on this? thanks Pradyumna ...

Does GPL code linking with proprietary library depend which is created first?

Microsoft creates their windows and MFC DLL library, etc. An open source develop write a new MFC application and release the source code as GPL. The app has to link with the MS DLL/libraries to run in Windows, but I don't think anyone can argue that we now have the right to force the Microsoft's GPL their DLL. Does this mean the GPL...

Light HTTP Stack for Visual C++ Project

I just want a light HTTP stack. Something similar to WinInet or WinHTTP, with cookie support, etc. Are there any good alternatives to those? Seems like I find a bug or limitation in either one that I end up hung up on. ...

How to make sure the computer runs on NZST programmatically

How can I sync the system time to NZST by w32tm? And how can I make sure it wont be changed back by auto-sync PROGRAMMATICALLY? Thx in advance. ...

How do you determine 32 or 64 bit architecture of Windows using Java?

How do you determine 32 or 64 bit architecture of Windows using Java? Thanks. ...

Adding events like Oncopy,Oncut,Onpate to a dynamically generated text box

Hai Guys, How to add events like oncopy,onpaste to a dynamically generated textbox in a windows form applications... ...

Convert XLS to CSV on command line

How could I convert an XLS file to a CSV file on the windows command line. The machine has Microsoft Office 2000 installed. I'm open to installing OpenOffice if it's not possible using Microsoft Office. ...

Technology choice for redesigning an old VisualBasic-Application

Completely unexpectedly, I (a webdeveloper, with a decent knowledge in OO), am tasked to re-design our old flagship Windows-application and drag it screaming and kicking into the next century. Here's what we have now: 15 year old code, originally written in Delphi, about 8 years ago ported to Visual Basic (Kept in Visual Studio 2008)....

Connect with a database over the LAN

How to connect with a database over the LAN? I have only the name of the computer. ...

source insight like free source code browser and editor in windows

can anyone suggest me free source code browser (c/c++ )and editor in windows like source insight? ...

starting 64 Bit Windows Application Development

I intend to start writing a 64 Bit Scientific Computing Application (signal processing) for Windows using Microsoft Visual Studio 2008. What should I have ready as far as a development platform is concerned? How would it be different from 32 Bit development? What could be the porting issues for a 32 Bit version that I already have (ok -...

Drawing on multi screen with WPF

Hi all, I've created an application that display a topmost window on each monitor, to cover all available place. Then, I would like to allow to draw a rectangle on the windows. So, I create a rectangle that I add to the window when mouse move and mouse click ... This is working except when I'm drawing a rectangle that starts on a windo...

Is there anything unique for file and folder in windows c#?

Hi I am working on files n folder using C#....May I know is there any way to get the UID for file-folders....Till now i was using the full path of the file....But my problem in is renaming of files n folder...which will change the UID for file folder.. Plz is ther any way to do the same thanks in advance ...

How would I call 32bit exes in Windows 64bit with python?

I want to call a exe from python on a 64bit version of vista. I know to use subprocess, but all the 32bit apps are store in C:\Program Files (x86)\, and it doesn't like the spaces I believe. i have tried escape characters, doesn't fire, any ideas? ...

Better Performance: WMI vs SNMP?

What has better performance under Windows for retrieving stats like CPU/Memory/Disk usage, etc.? WMI or SNMP? Thanks, Steve ...

How to set Authentication Methods in IIS programattically

We are working on automating the deployment of some IIS applications. I've used cscript.exe inside a windows batch file to create the web app and such. There are however a few settings currently done by hand that I need to automate. Namely, if you look at the properties of an app, under Directory Structure -> Authentication and access...

Application is visible on taskbar?

How to know if a Application is visible on taskbar? I am using Delphi on windows. ...

Building a winform app in VS for windows 7 x64 - get an error on install

I have a winform application that i desiged in VS2005 that works fine in windows 7 x86 however when i try to install it on x64 I get the error: "You have to run the 64-bit version of DPinst.exe on this machine. Contact the vendor that provided you this package. " In VS I have the build set to 'Any CPU' which should handle 64bit. I cant...

Visual Studio C++ Implement Interface

Hey Guys, I know in Visual Studio, when programming in C#, if I specify that a class implements an interface, I can right click on the interface and "Implement Interface", which will auto-magically populate my class with the appropriate method signatures. EDIT: Let me apologize for the vagueness of the original question. I'm looking fo...

Why do C++ class definitions on Windows often have a macro token after 'class'?

I am trying to understand an open source project, where I came across the following class declaration: class STATE_API AttributeSubject : public AttributeGroup, public Subject { public: AttributeSubject(const char *); virtual ~AttributeSubject(); virtual void SelectAll() = 0; virtual const std::string TypeName() const; ...