Windows is a family of client, server, and mobile operating systems, developed by Microsoft. If your question has nothing to do with Windows APIs or Windows-specific behaviour then do not use this tag, even if you are running on Windows.
44
votes
20answers
12k views
What is your favourite Windbg tip/trick? [closed]
I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills?
...
0
votes
1answer
8 views
get list of logged on users on remote windows computer from a list computer
Wuld have used the old question if I were allowed to ask a follow up question:
My question is the same as here: Get Logged on Users from a List of Computer Names the answer is good but I dont know ...
0
votes
0answers
21 views
Why does the apparent resolution change when the application(wpf,opengl) enters fullscreen mode?
I am writing an application meant to be used in fullscreen mode. The problem is that the resolution seem to change whenever the application enters fullscreen. It is very important that the application ...
0
votes
1answer
128 views
Can't run iis express 8 on windows 7
When I try to run iis express 8 with following command
"iisexpress.exe/trace:error"
on windows 7 I get following error lines:
"C:\Program Files (x86)\IIS Express>iisexpress.exe/trace:error
Starting ...
0
votes
0answers
2 views
Remap Port 443 to something else on localhost in Windows
I am trying to run Windows Azure Emulator on my localhost. My Access control service on emulator is located on port 8444. I want that whenever i access .accesscontrol.windows.net:443 on my localhost, ...
0
votes
0answers
12 views
While cycle don't doing job correctly
I've done a program that use 5 threads for processing images..every thread doing a job, and my objective is that all threads works together like an assembly line. But this not happened. And I think ...
-1
votes
0answers
7 views
How can I launch already opened browser window (or tab)?
I want to launch already opened browser window or tab from another program in Windows OS.
ex) If I run chrome.exe "www.cnn.com" then launch already opened browser tab(www.cnn.com) instead of open new ...
0
votes
0answers
3 views
zeromq: PULL/PUSH client crashes after upon connection of 31. server on windows
I'm experimenting with the PUSH/PULL pattern for distributed computing in a local network.
Up to now everything seemed to work out, however, I had o discover that upon the startup of the 31 worker ...
0
votes
0answers
12 views
Open and edit SVG files using C/C++
I'm developping an editor that must use SVG shapes to create diagrams.
To open and display SVGs I use librsvg which is actually pretty good but only useful to render SVGs not to edit them.
I would ...
0
votes
0answers
6 views
Populating arrays of user defined types in COM
Whats the best way to get a variable sized array of user defined types (a struct) populated by a com function?
I basically want to pass in an empty array or double pointer of a user defined type to a ...
2
votes
1answer
8 views
could not find oci pdo driver in windows
We installed apache and php on windows server 2008 to try to be connected with oracle database with php command.
We inserted in php.ini the following lign : extension_dir.
But when we tried to connect ...
5
votes
5answers
4k views
How do i change the hosts file in a windows program?
how would a program in c++/ C / c# program change the hosts files content in windows?
I know this sounds like phishing, honestly not.
1
vote
0answers
22 views
How force C# application not run as adminsitrator?
I'm writing an updater for my application, but it always show the UAC promt when I run it.
The application don't require Administrator rights, it downloads only a .zip file from the internet and ...
0
votes
0answers
5 views
Windows tablet offline gps location
I have a windows 7 tablet, which would be used in the field with no access to wifi or a data network. It is has an internal GPS device. I am looking to create something, that would get a snapshot of ...
0
votes
0answers
8 views
What is the low-level trigger for Windows Click events
The standard sequence of events to trigger a mouse click in Windows is documented here:
MSDN
Essentially it is:
MouseDown event.
Click event.
MouseClick event.
MouseUp event.
...
0
votes
0answers
4 views
Why XML-RPC requests on OpenERP don't work in windows?
I've got some problems with XML-RPC request on windows on an openERP v6.
sock_common = xmlrpclib.ServerProxy (path +"/xmlrpc/common")
uid = sock_common.login(dbname, pseudo, pwd)
...
0
votes
0answers
10 views
Casting a class to WPARAM and sending it in PostThreadMessage
I need to send a message to a thread which does not belong to a window, so I believe PostThreadMessage is the only option. In this message I wish to send the address of a dynamically created class ...
0
votes
0answers
5 views
Silveright textbox and decimal conversions between windows and mac
We currently have a problem where we are hosting a Silverlight 4 application that runs on both Windows and Mac.
We are doing calculations based on amounts entered in a text
...
0
votes
1answer
8 views
What do you mean by Windows SDK Multi-targeting Utilities
After you install Visual Studio 2012 with the SDK and .NET 4.5 you would see a registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v8.0A\WinSDK-NetFx35Tools with a name ...
1
vote
2answers
33 views
Full Path of Loaded Dlls?
I am trying to debug some shared library problems on a machine with dozens of shared libraries with the same name. I need to find the one .dll out of 10 identically names file that is working ...
0
votes
0answers
15 views
Porting AngularJS application on Windows 8 Surface?
I've written an awesome application in AngularJS which I want to port it on Windows 8 Surface. The application works well in Window 8 IE10 but in webview it breaks.
Angular Routing does not work, ...
0
votes
1answer
13 views
How do you automatically start a WAS server on machine reboot?
I'm running a WebSphere Application Server 8 environment under Windows 2008 Server R2 and I've installed a test environment for some software I'm developing.
However, on reboot, I have to manually ...
0
votes
1answer
27 views
Creating a batch script to open a file that prompts for username and password?
I have a local website running in my work place and there are a few links that require admin rights in order for them to be opened. I am wondering if there is a way to create a batch file to do this?
...
0
votes
0answers
5 views
use jruby + paperclip + windows, upload a chinese char file appear no such file or directroy error
This error only if the file name is Chinese, when the file name is English everything is ok.
file: 华东PH市场备忘录(M)最新标准6.4日.ppt
error:
No such file or directory - ...
53
votes
7answers
9k views
How to get 100% CPU usage from a C program
This is quite an interesting question so let me set the scene. I work at The National Museum of Computing, and we have just managed to get a Cray Y-MP EL super computer from 1992 running, and we ...
0
votes
1answer
108 views
how to compile libnet for python 2.7 on windows
I have python 2.7 on windows xp, I need libnet but it's not supported for python 2.7 .
I tried to compile it using cygwin, as I don't use python on cygwin gnu and I could not compile it using ...
1
vote
1answer
328 views
Android Installation on Windows
I download
android-sdk_r06-windows_2
eclipse-java-helios-win32
ADT-0.9.7
jdk-6u21-windows-i586
apache-ant-1.8.1-bin
and i follow google guide but i can't install android ...
0
votes
1answer
19 views
Login to a website and open it in web browser
I am new to perl and i have started with mechanize.
I logged in to a website sucessfully but after that i wanted to open the website in
my browser in windows it just opens the website instead of ...
1
vote
1answer
60 views
Problems with wpf windows location
I have an application that runs in a second screen, when the user runs the application in the first screen the application detect the second monitor and change their position to the secondary screen.
...
0
votes
1answer
11 views
Stability? Can windows scheduler tasks run indefinitely
I've set up 2 windows scheduled tasks to run indefinitely.
The advantage of having them in the scheduler is that we have other, period-triggered tasks (e.g. once-a-day, once-a-minute) set up in the ...
142
votes
7answers
107k views
Objective C for Windows
What would be the best way to write Objective-C on the Windows platform?
Cygwin and gcc? Is there a way I can somehow integrate this into Visual Studio?
Along those lines - are there any suggestions ...
0
votes
0answers
18 views
BeautifulSoup import error in Python3.3
Only a week into Python. I've installed BeautifulSoup4 using easy_install. Install seems to be okay being that no error when in Python shell and use from bs4 import BeautifulSoup.
Error comes up ...
0
votes
0answers
20 views
Cross platform application development [closed]
I have developed software on windows platform using c# (using vs 2010) and ms-sql 2010. Now a days I am thinking to redesign my application again. and I am planning to develop this application in WPF. ...
2
votes
2answers
24 views
Are JNI native invocations from different Java threads serialized?
I am making a Windows JNI .dll. I am trying to determine whether the JVM can ever make concurrent calls to the same native function. Here is the Java code I wrote:
public class TestThreads implements ...
1
vote
2answers
154 views
Broadcasting to owned window with PostMessage vs. SendNotifyMessage
Recently I came about a strange difference between the two Win32 API calls "PostMessage" and "SendNotifyMessage" (at least noticed on Win7 64bit SP1):
An owned top-level window of another process ...
0
votes
0answers
5 views
apache 2.4 do not run on window server 2008
I installed xampp 1.8.1.0 into window server 2008 enterprise 64 bit (not PC. Local server). Installation is fine. when I start the apache, the xampp is not responding. When I start the apache from ...
-1
votes
1answer
34 views
How many windows services can be in “Starting” state at once?
I was writing some powershell code to start a number of internally developed windows services in parallel. The services don't depend on other services and I ran the Start-Service command in a loop ...
0
votes
0answers
21 views
Windows - File size differs from size on disk? [migrated]
It isn't a major concern of mine, but I am curious as to why a .txt file's size is 21bytes, and the size of it on disk is 4kilobytes. Here is a snapshot of what I mean:
I am also wondering if the ...
2
votes
2answers
18 views
Windows batch file renames filename unexplainably in FOR loop
Windows batch file renames filename unexplainably in FOR loop
I have a small Windows 7 batch file to rename a library of MP3 filenames. I've included only the last few lines of code in this question. ...
0
votes
1answer
22 views
Move folder using windows copier in VB6
How can I move a folder (with sub-folders in it) using windows file copier dialog box in VB6. I mean it should move the folder using windows file copier .
-2
votes
0answers
6 views
Convert windows server 2008r2 to hyperv
Can anyone tell me how do i convert windows server 2008r2 to hyperv.
Thanks,
Mohammed Hussain
IT Security specialist.
0
votes
1answer
8 views
Running EXE application in GINA beofe login screen (Command line)
I have created a Credential Launcher for Windows 7 and was able to run Windows application after the Tile button click event, it was very easy.
I added a few registry settings and *pbAutoLogon = ...
3
votes
1answer
440 views
How to make Unicode charset in cmd.exe by default?
866 charset installed by default in Windows' cmd.exe is poor and inconvinient as compared with glorious Unicode.
Can i install Unicode by default or replace cmd.exe to another console and make it ...
0
votes
1answer
36 views
Scheduling a windows start on C
I'm wondering if it's possible to turn on a computer by itself after shutting it down but without me having to press the button. Let's say that I shut down my computer and I want that it turns on by ...
0
votes
0answers
6 views
Trouble with sqlite3 ruby 2.0 on Windows
I'm a newbie to programming, with ruby/rails successfully installed on my (mac) home computer. I'm trying to get ruby 2.0.0p195 (and Rails) set up on Windows at work (Windows 7, 32bit) and I'm failing ...
0
votes
1answer
47 views
ndk8e debug error “Unable to detect application ABI's”
OS: Windows8 x64
Eclipse: ADT bundle form http://developer.android.com/sdk/index.html
NDK: NDK8e for Windows 64 from http://developer.android.com/sdk/index.html.
I set ...
-2
votes
1answer
319 views
C compilation errors on using stdprn
My OS is: Windows 8
IDE: VS 2012
Here is my C program. (from book)
/* print_it.c—This program prints a listing with line numbers! */
#include <stdlib.h>
#include <stdio.h>
void ...
0
votes
0answers
17 views
NDK debug error for windowsx64
OS: Windows8 x64
Eclipse: ADT bundle form http://developer.android.com/sdk/index.html
NDK: NDK8e for Windows 64 from http://developer.android.com/sdk/index.html.
I set ...
0
votes
0answers
11 views
How to get the user name at the early stage of logon
What is the best method to get the username at the early stage of the Windows logon?
I need to be able to determine the currently logged on user after the user is authenticated and before the registry ...
0
votes
0answers
7 views
Shortest possible code to display GDI Bitmap to full-screen Direct3D precisely upon VSYNC
Simple Question:
I am looking for a very small C++ or C# code snippet that can copy a GDI Bitmap image to full-screen Direct3D, upon a VSYNC page flip.
Complex Detail: It's for a measurement ...






