The Win32 API is the core set of application programming interfaces (APIs) available in the Microsoft Windows operating systems. This tag is for questions about developing native Windows applications using the Win32 API.
0
votes
0answers
8 views
How can I change the language in AfxMessageBox?
I have an MFC app that uses AfxMessageBox to display message boxes. The app itself lets an end-user to change the user interface language. On the inside it does so by loading resources using LCIDs (or ...
0
votes
1answer
15 views
Howto add multiple menu items to windows shell extension?
I am trying to add multiple menu items to the context menu of the windows shell.
What I have done so far is the following code, this adds my items as sub-menus while I want them to be on the main ...
-1
votes
1answer
19 views
compute hash of the listed files
This is a small piece of code I wrote to list files in a dummy directory and then calculate the hash values of the respected files in visual studio 2010. I am able to successful list the files through ...
0
votes
2answers
16 views
Start program with user rights from within a elevated program
I have an application that requires elevated rights (it is something like a custom installer).
From within this application, I use ShellExecute() to show a PDF file.
It seems as if the Adobe Reader is ...
2
votes
1answer
29 views
Getting the TEB of a 64bit process on WIndows
I'm trying to get the TEB of a 64 remote thread in Windows 8.
Following the definition from here, I do this:
sz = sizeof(NTSTATUS) + sizeof(PTEB) + sizeof(HANDLE) + sizeof(HANDLE) + ...
0
votes
0answers
10 views
Resource Manipulation Results In Windows Compatibility Manager Error
I'm using WinApi to write resources in some executables. When I execute them they run just fine, no errors. After they close and terminate the Windows Compatibility Manager comes up and shows me some ...
0
votes
1answer
63 views
Application closing before shutdown c++
I have created a console application that runs through a windows service.
Service starts the application and runs it well.
The problem is when i attempt to restart/shutdown my PC, application is ...
0
votes
0answers
12 views
SQLDriverConnect fails sometimes when enclosing the password in {}
According to the documentation for SQLDriverConnect,
Because of connection string and initialization file grammar, keywords and attribute values that contain the characters []{}(),;?*=!@ not ...
1
vote
0answers
18 views
When I load my filedisk driver, I got the ERROR_PROC_NOT_FOUND(127) error code
I want to develop an encrypt-virtual-disk based on the FileDisk-17 opensource project.
Here is my solution:
In IPR_MJ_READ, when the ZwReadFile returns, I use function 'DecryptData' to decrypt the ...
0
votes
1answer
17 views
How to dynamically create a shortcut to a folder in openedge progress
Is it possible to create a shortcut from withing the app-builder?
Perhaps a Win32 API function?
Thank you.
1
vote
0answers
19 views
System.managment resources monitor for statistcs info such as I/O, CPU, Memory usage… etc'
as i try to do some benchmarks on local database managment systems
i had the need to come up with a ui that will show information like
cpu usage of each core , memeory usage , hdd I/O ..etc'
i do ...
0
votes
1answer
42 views
Passing by reference using CreateThread()
I know the general gist of how to launch a thread using CreateThread() in C++, and have created an application that successfully launches them. I know that if I were to use C11 threads pass by ...
0
votes
1answer
22 views
Window resizing and scaling images / Redeclaring back buffer size / C++ / DIRECTX 9.0
C++ / Windows 8 / Win api / DirectX 9.0
I am having real big issues with this:
https://github.com/jimmyt1988/TheGame/tree/master/TheGame
Problem is that I have defined some adjust coordinate ...
0
votes
3answers
31 views
Conditioning Yes or No in C MessageBox()
I had a problem of conditioning what I want this MessageBox() to do when a user clicks "Yes" or "No".
Here is my pseudo code show what I mean:
MessageBox(0,"Click \"Yes\" or \"No\".","A MessageBox() ...
0
votes
1answer
45 views
c++ changing the values in a bitmap
Im trying to change the pixels in the "cool.bmp" image and draw it to a window altered. so far all the code executes correctly but when i change the bytes in the pix array the image does not change ...
0
votes
0answers
4 views
how to generate html form from xsd using MSXML SOM API?
i saw following link which says it is possible to generate html forms using microsoft SOM API.
http://msdn.microsoft.com/en-us/library/windows/desktop/ms762755(v=vs.85).aspx
But there is no sample ...
0
votes
1answer
10 views
WinAPI Cannot InsertMenuItem
I'm creating a menu in Win32 App. I want to create 2 items for submenu, but it shows only one.
BOOL foo;
hSubMenu = CreatePopupMenu();
if (!hSubMenu)
return NULL;
InsertMenu(hMenu, 0, ...
0
votes
0answers
36 views
How to enable modern look and feel of tool bar for Win32 Application?
Recently I started learning GUI programming based on Win32 API. When I add tool bar control (from comctl32.lib) to my simple application I find it looks flat while the menu bar has more "Windows 7 ...
-1
votes
1answer
24 views
Download older versions of the DirectX SDK [closed]
I am looking for older versions of the DirectX SDK. I'm interested purely from an educational perspective and am particularly interested in the documentation files. Particularly to view first hand the ...
0
votes
1answer
29 views
Text is rotated when use DrawText() on Bitmap?
I want to draw the text on Bitmap and I did it with the summary code below
BITMAPINFO bitmapInfo;
bitmapInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bitmapInfo.bmiHeader.biWidth = _imgWidth;
...
0
votes
1answer
17 views
SendKeys getting into infinite loop
I am trying to write an WinForms application which simulate keyboard button clicks.I tried SendKeys.Send()/SendWait(), but, it leads to infinite loop.I tried to sleep the thread for 5 sec., but, it ...
0
votes
1answer
30 views
Drawing a child window on top of another child window?
I have different screens serving different purposes in my win32 app, each screen having a different background. The main window have its own static background.
I am drawing screen background on a ...
2
votes
1answer
40 views
How I can make a file unexecutable in winapi?
How I can make a file unexecutable in winapi ?
Something like quarantine in anti-viruses .
Is it possible or not ?
Thanks a lot .
1
vote
0answers
33 views
Smallest Windows PE Executable? [duplicate]
A long time ago, I came across a web page that offered the smallest (or one of the smallest) Windows PE executables. I believe the page was an analysis from a contest (like an obfuscated C contest). ...
0
votes
2answers
51 views
How can I integrate with a Windows application which lacks a plug-in architecture?
I need to make minor modifications to a legacy Win32 application, but have no access to the original developer or source code. The application was not designed to be extended by third parties. What ...
3
votes
1answer
26 views
How to create a new process with command line arguments and give the PID to the parent process?
I'm trying to create a cross platform function for creating a new process using both Unix and Windows.
Using fork() & exec() in Unix is easy enough. Though I'm having trouble figuring it out in ...
0
votes
2answers
44 views
C++ Win32 Console Color
I know a bit how to do colors in Win32 C++ console. But it's not really efficiënt. For example:
SYSTEM("color 01")
Slows down a lot on your process. Also:
HANDLE h = GetStdHandle ( ...
0
votes
0answers
22 views
Python win32api doesn't work in Apache 2.2
I've got a problem printing.
I'm using the win32 API:
win32api.ShellExecute (0, "print", myfile, None, ".", 0)
This works just fine if I don't run Django through apache but when I use apache it ...
0
votes
2answers
28 views
Win32 Uderstanding semaphore
I'm new to Multithread in Win32. And I have an assignment with Semaphore. But I cannot understand this.
Assume that we have 20 tasks (each task is the same with other tasks). We use semaphore then ...
1
vote
0answers
69 views
How to debug code in WM_PAINT in c++?
I have the following code in the WM_PAINT message handler of the main window :
void BossController::paint ( HWND hwnd, HBITMAP skin )
{
PAINTSTRUCT ps;
HDC hdc;
hdc = BeginPaint ( hwnd, ...
1
vote
1answer
16 views
ReadFile named pipe after client closed other end
I have multithreaded app working quite well, except the following scenario:
Initially I read from pipe 16 bytes, then depending on the header I read the rest.
The problem is that sometimes client ...
0
votes
0answers
50 views
Missing either data or entire lines on serial port read
I am trying to read streaming serial data at 115200b and cant seem to pick it all up.
using the input method ($data = $Port -> input), I get the first 14 or 15 characters of every line. I need the ...
0
votes
0answers
46 views
programmatically turn acess point on/off in windows?
how to turn wireless on/off programmatically by that I mean doing the same thing as going to metro control panel (in windows 8) and switch the wireless on/off .
I have search on Google and in here ...
0
votes
0answers
39 views
How can I include a Timeout with ReadFile
I have redone some code which was hanging when the result of the szFullCommand returned too much data with WaitForSingleObject. Now I'm getting all of the data into the returned bytes, but how do I ...
-2
votes
0answers
19 views
Creating a child window in a visual studio forms application gives a exception
I created a visual C++ windows forms application.
and add two window forms to the project.
i can run the forms individually on each run time...
But cannot open them simultaneously.
following is ...
1
vote
1answer
24 views
How can I createprocess in windows and not wait for it to complete?
I have a little windows c++ program that just fires off other programs, but I find when I kill my parent program, all the children die. I want to spawn them off with no relation to the parent anymore. ...
0
votes
3answers
62 views
How to convert LPTSTR to LPCWSTR?
I need to convert from LPTSTR to LPCWSTR.
I need this because I'm getting LPTSTR from GetDlgItemText, which I'm going to feed to ExtTextOut, which accepts LPCWSTR.
Edit:
Before passing of the value ...
1
vote
1answer
22 views
Is there any universal way in .net or win api to check if file / folder name is not special reserved one like “COM0”, “LPT1” and etc?
Aside of doing crazy cycles like this for every type of port:
bool IsGoodFileName(string file_name)
{
for (int i = 0; i < 256; i++)
if (string.Compare(file_name, "COM" + i) == 0)
...
0
votes
1answer
66 views
using Strings in C/C++ — [ ] after LPCTSTR
came across this and was wondering what it does
LPCTSTR szmyLPCTSTR;
// doing _tcsncpy things with that string
//at the end then there is this line which i am not sure what it does
...
0
votes
0answers
18 views
Messages vs. virtual device driver
Are there any advantages of implementing a virtual device driver instead of simply sending input messages to active window? Would it make any difference for receiving application?
I'm talking about ...
0
votes
1answer
62 views
Default push button works just once
I have a simple dialog box with a list box, edit box and two buttons, Send and Clear, Send being the default. When it is pressed the string is read from the edit box and added to the list box. Clear ...
0
votes
0answers
14 views
Updating icon resources between two exe files
I have an executable file and then I make a copy of it. The executable has got 2 icon resources in it, specified in the resources.rc file
1 ICON "pen.ico"
2 ICON "hl.ico"
I can verify with PE ...
2
votes
4answers
94 views
How to decrease CPU Usage when it reaches to 100% when using while(1) loop
I am working on UDP Server/Multiple Client Application.
There are multiple threads handling multiple clients.
There is one single thread which keeps on sending KEEPALIVE Messages to each active ...
0
votes
1answer
17 views
Is mms:// URL supported over Media Foundation?
I am running Media foundation sample example MFPlayer to render the URL mms://.
this is getting failed with error code MF_E_INVALIDMEDIATYPE.
In GetMajorType of this Sample, type is coming as ...
0
votes
3answers
42 views
win32: waitable event object for GUI messages?
Is it possible to create an event object that becomes signalled when GUI message(s) is/are available, like one can create event objects that signal the presence of data on a socket for instance? The ...
0
votes
1answer
30 views
Is it possible to determine if another process has read your memory?
It isn't so complicated to read another process's memory, and I'm skeptical there is any reliable way of protecting your process's memory from being read by memory inspection tools or developers with ...
0
votes
3answers
44 views
Using the Windows 8 SDK to compile for Windows 7
(This question uses zlib as an example but isn't specific to it.)
I'm trying to compile zlib on Windows using the MSVC project file it comes with. I'm using VS2012 with the Windows 8 SDK, but my ...
0
votes
1answer
12 views
How to distinguish which operation was completed in IOCP processing thread?
My application can simultaneously send and receive data from the client using WSASend and WSARecv. So, How can distinguish which operation was completed in IOCP processing thread (send or receive)?
...
2
votes
1answer
34 views
C++, DirectX 9, Windows API - Resizing changes my coordinates?
I draw a rectangle to be 500 x 500 pixels.
My Window is 1920 x 1080.
When I resize the screen to lets say 1376 x 768, the image that was 500 x 500 pixels is now slightly smaller (It has been scaled ...
1
vote
0answers
26 views
Opposite of PathCreateFromUrl
I need to convert a local file path into a file protocol URL to be opened by a web browser (IE in particular.) What I need is the opposite of what PathCreateFromUrl API does. So is there such API?




