Windows is a family of client, server, and mobile operating systems, developed by Microsoft.
-1
votes
0answers
16 views
how to detect multiple USB ports and read data from USB using python
I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB be inserted.
Also, i am having difficulty in writing the code to ...
0
votes
0answers
4 views
WTSQueryUserToken always throws “An attempt was made to reference a token that does not exist” on Windows 7 in C#
I'm trying to launch a process from a Windows Service on Windows 7.
This is my code to obtain the user token.
uint sessionId = Kernel32.WTSGetActiveConsoleSessionId();
var userTokenPtr = new ...
0
votes
0answers
7 views
How to stop my Speech Recognition application responding to MS Built-In speech commands
Please have a look at the following code
private void button2_Click(object sender, EventArgs e)
{
SpeechRecognizer sr = new SpeechRecognizer();
Choices colors = new ...
1
vote
0answers
48 views
Memory allocation of values in a std::map
I've had some experience in C++ from school works. I've learned, among other things, that objects should be stored in a container (vector, map, etc) as pointers. The main reason being that we need the ...
1
vote
0answers
17 views
What is the direct equivalent of the Motion API from Windows Phone on Windows 8?
I'm trying to port a Windows phone program to windows 8, but for orientation the Motion API is used to I have lines of code like the following
If Motion.IsSupported Then
...
4
votes
2answers
66 views
Efficiency of registry call vs. storing user options in a static variable
I have a program that stores some user options in the registry (about 5 options). The options are fetched from the registry within an inline function. The options need to be checked several times ...
0
votes
1answer
25 views
How do I pipe output to an exe in a batch file. [closed]
I want to replicate:
#!/bin/bash
echo "SOME JS CODE
SOME JS CODE
SOME JS CODE
SOME JS CODE" | node
on a windows machine.
4
votes
2answers
23 views
Semaphore for CMD instances working in Parallel
I have .bat that would be started X times (with different arguments) at the same moment.
I would like them to modify one specific file but it has to be done in sequence with controllable delay. ...
0
votes
0answers
5 views
WshShell Run Without Waiting But Exec for Status Update (run vs exec issue)
Launching a script via JS in a Windows environment.
I need 2 things:
No pop-up window (ie. shell.run(cmd, 0))
I can't wait around for thread to finish (ie. shell.exec() or shell.run(cmd, 0, false))
...
1
vote
2answers
21 views
MongoDB slow after periods of inactivity
I have created a site that uses MongoDB as the database engine and at the moment it is still under construction so it is not getting much traffic. This means that there are periods of no requests and ...
2
votes
0answers
25 views
Why does easy_install work with some Windows binaries?
Background
Windows does not include a compiler by default, and installing a compiler (and perhaps configuring Python to use it) is a complicated enough task that many developers avoid doing so. To ...
0
votes
1answer
47 views
read data RS232 without polling
i read data from RS232 in a for loop.this has no good performance.i want don't have a for loop instead of that there was a thing like event that when data is receiving it fire. is this possible? for ...
0
votes
0answers
23 views
Failed to load a dll in the Temp Directory on a Windows Server
I have developed an C# application that run very well in local.
But there is a problem when i put on the server.
The application use a DLL library (A.dll) in a point of the execution, this A.dll ...
0
votes
0answers
8 views
file type is not a valid win32 application [migrated]
I have searched many related questions on various sites but found no solution for this variation of the problem.
I have a filetype (.vlm) located on a network drive, and the program I use to open it ...
0
votes
0answers
12 views
Extracting files from zip file from Mac on Windows XP [closed]
Unfortunately, I have to use a Windows XP Machine at work and I'm having this issue extracting files zip files that were created on Mac.
For example, right now I'm trying to download this Opencart ...
1
vote
1answer
40 views
How to write text on a image in windows using python opencv2
I am a newbee to Python OpenCV.
I wanted to put some text on an Image.
I am writing the code as:
cv2.putText(image,"Hello World!!!", (x,y), cv2.CV_FONT_HERSHEY_SIMPLEX, 2, 255)
It gives ERROR, ...
0
votes
0answers
36 views
Visual C++: stop symbols from being exported
I'm working on a dll project and am using the following to clean up some of my exported symbol names:
#pragma comment(linker, "/EXPORT:Some_function=_Some_function@4")
where Some_function is ...
0
votes
0answers
19 views
Is there a setting to control the timeout for 'Application Recovery and Restart'
I wanted to know, if a setting i.e. registry key exists to control the time-out that is used in the Application Recovery and Restart. To clarify by time-out, I'm referring to the 60 seconds mentioned ...
0
votes
1answer
3 views
Where are the configuration files kept for Project Groups in Netbeans 7?
I want to delete some project groups in Netbeans 7.2 that I no longer use.
Netbeans 7.2 & 7.3 don't keep the configuration information for Project Groups in $USER_HOME/.netbeans as previous ...
1
vote
0answers
16 views
DirectX SDK project - porting to VS2012
I'm porting to visual studio 2012 a solution with a project which uses some headers from the directX SDK in this path:
C:/../Microsoft DirectX SDK (June 2010)/Samples/C++/DXUT11/Core
the problem ...
-1
votes
0answers
15 views
Start a windows service under Windows XP Embedded (from the execution of a recovery SW)
I'm writing a windows service application for Windows XP Embedded (XPE), and I need to be sure that the service is always active, but I need to act some complex actions before restarting it, so a ...
-1
votes
0answers
5 views
Tabstrip icon displaying square box for windows mobile app, works fine for android app [closed]
Tabstrip icon displaying square box for windows mobile app, works fine for android app.
0
votes
0answers
20 views
Python Windows8 CMD 32 bit/64 bit
I have Activestate Python 2.7 installed at D:\Python27.
The normal system environment paths are set
The Python is 32 bit and runs on a 64 bit computer.
With W8 64 bit there appears to be 3 types of ...
0
votes
0answers
13 views
How to implement per file thumbnail for file association?
I have a file type that I want to associate with my program. I could make every file of that type have the same standard icon like how all HTML files look the same or all txt files, but what I want to ...
0
votes
2answers
18 views
Delete operating systems and start from scratch
I am on a Dell XPS 200 desktop computer. The computer originally came with Windows XP, but I upgraded it to Windows 7. I also installed Ubuntu 12.10 on here so whenever the computer starts up, you can ...
0
votes
0answers
8 views
Copying just the files from a hierarchy of directories in WIndows? [closed]
The title might seem a bit unclear... What I'm trying to do is to copy all of the files from a group of folders into a different directory, but without copying the folders. For example, if I had:
...
0
votes
1answer
8 views
PHP exec or shell_exec not returning process id (PID) on Windows Wamp
I am on windows 7, using a WampServer, and trying to use FFMPEG.
The encoding works, but I can't get a process id back from either the exec()
method nor the shell_exec() methods.
This is my code :
...
0
votes
0answers
9 views
how to convert address box text to geo long lat. in wp7
I want to convert my address box text into Geo coordinates so i can put pin on map. here is the xaml code of my map.
<Grid x:Name="LayoutRoot" Background="Transparent">
...
0
votes
1answer
31 views
AsyncCallback not being called second time
I`m implementing ping-pong over tcp. I have Pinger written in C#. And two pongers. One written in C# and another written in C++. Pinger just sends message to pongers and pongers reply to him. The ...
0
votes
0answers
22 views
Windows application which has some processes in one window
Chrome, IE, firefox has one parent process and some render processes. But these render processes' window(tab) are located in a main parent window.
How do their window(tab) attach on it?
Do they use ...
-2
votes
0answers
10 views
Carry over Windows credentials to use on website [closed]
Does anyone know of a way to carry over your Windows login credentials and use them at the sign in page for a website?
0
votes
0answers
21 views
QT auto start aplication with OS
I have a problem with this operation only in windows 8.
here is the code which work in other Windwos OS (Win7/Vista/XP)
#ifdef Q_WS_WIN
QSettings ...
-1
votes
0answers
11 views
Configuring a dedicated IP behind a proxy [closed]
I purchased a proxy server from Javapipe,however my dedicated software requires me to add the proxy IP into the ipv4 list.
Whenever I add the IP there,the proxy can't connect to the dedicated ...
0
votes
0answers
40 views
Python check if file is in use on Windows
I've done some searching on how I can see if a file is in use by another process before i try and open it.
Best I've seen is the code below, but it seems a bit hacky to me, wondering if there might ...
0
votes
0answers
20 views
C++/CX way of iterating Map<String^, Object^>^?
I have a object of type of Map<String^, Object^>^. How do I iterate in C++/CX way? I am trying to use iterator but I am not clear about syntax. Documentation doesn't provide an example.
0
votes
0answers
7 views
qt 5, QFileDialog, win, getExistingDirectory: return dir parameter when I chose an entry on left side of Dialog
QString dir_path = QFileDialog::getExistingDirectory(
this
, "Open Directory"
, "./"
, QFileDialog::ShowDirsOnly);
When I ...
0
votes
0answers
6 views
How to implement Windows plugin, to implement new way for scrolling documents?
I think I have great idea about new way for documents/code/web pages scrolling.
The truth is, that empty area on scroll bar and up/down buttons are one of the most rarely used parts of window:
...
3
votes
0answers
53 views
The Ruby gets method truncates my input at 256 characters
I am trying to enter a long string (> 256 characters but generally < 512) in Ruby with:
puts "Enter long string"
ilogo = gets.chomp
puts "#{ilogo}"
For some silly reason, it always truncates the ...
0
votes
2answers
13 views
Multiple instances of a RegEx string in FINDSTR
I am looking for a way in a Windows batch file to find if a file contains the word Shutdown a given number of times.
I have tried this using FINDSTR:
FINDSTR /r .*Shutdown.*{5} file.txt
This ...
0
votes
0answers
10 views
How can I enable the Mcrypt for my live site?
I am working on locklizard integration with ecommerce site, for the I need to enable the MCrypt for my site. I have added libmcrypt.dll through FTP in php folder,I have also added php.ini file and ...
0
votes
0answers
12 views
Opening an OpenVPN connection in Windows using the command line
I am a complete newbie when it comes to OpenVPN, so I'm a bit confused at the moment.
I can easily open a VPN connection using the OpenVPN GUI in Windows 7: I put in the IP, the GUI asks me if I want ...
0
votes
0answers
28 views
Re enable Windows Authetication in SQL Server [migrated]
My old employee has disabled Windows Authentication in our server. Now I'm not able to access the SQL Server even though I have Administrator access to the server. I need to reset the sa password.
...
0
votes
1answer
17 views
save image locally & display windows phone 7
I'm trying to implement an app of news (feedrss) by using WP7 i've tried this solution , but it does'nt work for me , here is my code :
namespace PhoneApp1
{
public partial class MainPage : ...
0
votes
0answers
5 views
Windows NDIS Driver: Concurrent Read/Write on a single device (IRP_MJ_READ/WRITE)
Starting with the ndisprot sample from Microsoft I try to write a NDIS protocol driver. From User space I try to read and write to the device simultaneous (out of two threads). Since I don't receive ...
1
vote
1answer
24 views
How do I use IFileSystemImage2's put_BootImageOptionsArray from IMAPI2 (getting E_NOINTERFACE)?
I am trying to use the IFileSystemImage2 interface to create an ISO with multiple boot records using Imapi2.
To do this, I should be able to use put_BootImageOptionsArray passing in SAFEARRAY* of ...
2
votes
1answer
16 views
How to speed up clearcase static view update?
I have a clearcase static view with many vobs. Unfortunately I cannot use dynamic view. The total amount of data is about 40 Gb. Sometimes I need to update view from command line with minor changes in ...
0
votes
1answer
23 views
Update a file inside existing MSI
I am following these steps to extract a file from MSI and edit it and keeping it back. But when I install the new MSI, its not able to find the files inside the cabinet (.cab).
Extract the cab file ...
0
votes
0answers
10 views
Read print queue and output jobs to files
I wish to output a printqueue jobs to files for processing. (TEXT)
I need dynamic filenames...
Any suggestions?
0
votes
0answers
5 views
Eclipse Icon got corrupted in Windows [migrated]
I was working with Eclipse. In between I assigned .log file with Notepad++.
All of sudden, My eclipse icon got corrupted and when running Eclipse, I am seeing default [.exe] file symbol, which is ...
1
vote
2answers
21 views
Windows Kit 8.0 and Visual Studio 2012 - are they shipped together? [closed]
I'm a novice with Visual Studio 2012 development and I have been given a machine where there are some header files I need in the following directory
C:\Program Files (x86)\Windows Kits\8.0
I'm ...



