Win32GUI is a C++ generic library for Win32 GUI programming.
0
votes
1answer
18 views
How to create region of specified color from window
I have one window which is painted with some colorkey(16,0,16). Occasionally some part of window is getting painted by different colorkey. I would like to create a region out of this windows which has ...
0
votes
1answer
30 views
child of tab dialog control cover the tab itself
I create a tab control in WM_INITDIALOG this way:
INITCOMMONCONTROLSEX icex = {0};
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC = ICC_TAB_CLASSES;
InitCommonControlsEx(&icex);
...
0
votes
1answer
48 views
Acquiring selected text from active window using c++
I have the below code where I am trying to get the selected text from an active windows and print it onto the console.
DWORD new12=0;
KEYBDINPUT* input = new KEYBDINPUT[key_count];
if( ...
1
vote
0answers
54 views
VLC Like seekbar in Win32 C
I am coding a media player in VC++ using pure Win32 API's. Everything is done so far. But for a seek bar currently I am using slider control. But the problem with slider control is that when a user ...
-5
votes
2answers
84 views
reading and writing of new line charecter
I am really confuse now what to do with \n and \r\n charecters.I am reading and writing some files in c++.
Basically i want to maintain log file of one exe where following conditions are consider.
...
1
vote
0answers
20 views
Rendering issue witth setting a WPF window as an owner of win32 window
I set the owner of win32 windows as Application.Current.MainWindow( A WPF window).
Everything worked fine as what i required but when win32 window is moved over the WPF window
.The win32 dialgos get ...
2
votes
0answers
46 views
Drawing rounded and colored owner draw buttons
In my windows application I am creating child button windows using CreateWindow() API. I am marking the style of buttons to be BS_OWNERDRAW, because I want to color the same and also want to make them ...
0
votes
2answers
70 views
Writing new line character in file
I just want write blank line into the file. i use following code but is not working.
char* RegID;
RegID = "10";
char* mndtime;
mndtime = "10";
char* ...
0
votes
1answer
39 views
win32gui get window content (internet explorer_server)
For the extraction of text from a chat window I started off by gathering the window handles.
I managed doing this by the following code:
import time, win32gui
def callback(hwnd, IEServers):
if ...
-3
votes
1answer
96 views
Using the Win32 API without WinMain? [closed]
I'm trying to use the Win32 API from a DLL to handle it due to it's quite messy but I only know how to call it using WinMain. Is there I way I can call a method to invoke the window?
0
votes
1answer
29 views
Win32 App (Aero): Prevent dialog move
I've a dialog based Win32-app on Win7-Aero which only displays a dialog. The dialog should have a title bar. I don't want that the user can move the dialog on the screen.
I've no luck so far... ...
0
votes
1answer
64 views
How to run action in background in c++ win32? [closed]
I'm learning C++, can you help me "an example" how to run some action in background like BackgroundWorker in C#?
VOID myWork(int i)
{
if (i == 2)
// How to run bellow action in background?
...
0
votes
1answer
36 views
Deactivating desktop background when a pop up is shown to user
I have a win32 application that runs full screen when started. The application has some button which invoke pop up dialogs.
Is there a way to make the entire desktop (except the pop up) go ...
-1
votes
0answers
31 views
BS_FLAT style for button not working
I am trying to create a window of "BUTTON" class using CreateWindow() on the client area of a parent window.
The dwstyle member in the input API is mentioned as WS_CHILD!WS_VISIBLE|BS_FLAT.
...
0
votes
1answer
72 views
Child window drawing issue in win32
To Start with , this is the desired look that I want to achieve but with rounded corners of the white region, and am not fully successful in doing so
To achieve this , I have identified the screen ...
2
votes
1answer
74 views
MFC colored button with native win7 appearance
I am using MFC to create a dialog project and trying to impart color to the buttons.
I came to know that the only way you can do is to make the button owner draw. OnCtlColor() does not work for ...
0
votes
2answers
33 views
What factors control dialog button appearance?
I am a little confused on what are the factors that contribute to the appearance of the UI elements (like buttons) on windows dialogs. My confusion appears out of the following observations:
1- I ...
2
votes
1answer
65 views
Adding submenu items to menuitems
I was having trouble adding a submenu item to a menuitem to my window menu in C++. I was adding a number (20 to be exact) of saving slots for my game.
Here is the code I have for the save slots:
...
0
votes
1answer
58 views
Pass object's pointer as parameter to DialogBoxParam()
I would like to pass an object's pointer as the fifth parameter of DialogBoxParam().
INT_PTR WINAPI DialogBoxParam(
_In_opt_ HINSTANCE hInstance,
_In_ LPCTSTR lpTemplateName,
_In_opt_ ...
0
votes
1answer
43 views
How can i get the content of the edit box which created in win32?
I created an edit box with the method in win32,which like this:
HWND hwnd=CreateWindowEx(WS_EX_CLIENTEDGE, TEXT("Edit"),
NULL,WS_CHILD|WS_VISIBLE|ES_PASSWORD,
0, 0, 200, 20, m_hWnd, NULL, ...
0
votes
0answers
102 views
Changing Cursor and showing tooltip for a Button Control
Problem with the code below:
- Not showing tooltip for button controls on a popup dialog box.
- Not changing cursor while mouse moves on button area (whereas i can change so in near by area of button)
...
0
votes
2answers
87 views
Conditionally compile to Win32 GUI or Linux Console app
I've been tasked with writing an application that conditionally compiles to a Win32 GUI application under Windows, or a console application under Linux.
My biggest stumbling block so far is just ...
0
votes
0answers
115 views
How to enumerate child devices of a Bluetooth Low Energy device?
I am working on a Windows 8 Win32 application in Visual C++.
I need to create a handle to the child device of a Bluetooth Low Energy device. For this, I need the device path or device name to [create ...
0
votes
1answer
134 views
Checkbox change the text color [duplicate]
The background changed, but the text color not.
here my code:
case WM_CTLCOLORSTATIC:
{
DWORD CtrlID = GetDlgCtrlID((HWND)lParam); //Window Control ID
if(CtrlID == IDC_CHECK_CHAT)
{
...
1
vote
1answer
327 views
C++ win32 program for creating menu bar(program compiles and runs, window is also displayed but no menu bar appears)
I am referring to this tutorial for creating menu bar in window:
http://www.winprog.org/tutorial/menus.html
The program gets successfully compiled and runs. I can see the window but not able to see ...
0
votes
0answers
52 views
How to Enable Mouseover Text in Eclipse PyDev for PyWin32 Modules
I am using the win32gui module of PyWin32 on Windows 7 64-bit Python 2.7 with the PyDev add-on for Eclipse. Code compiles and runs successfully, and I eliminated the "unresolved import" error by ...
2
votes
3answers
142 views
How to add OpenCV display window as child of another window in Win32 c++ Applications?
I have a framegrabber (Silicon Software ) which I managed to show the images from a pointer in memory buffer using OpenCV. now I want to create an application (Win32) and place the openCV window as a ...
2
votes
1answer
57 views
Auto press a messagebox button [duplicate]
I am writing a python unittest program. I need to auto-press a button in a messagebox. I don't know whether there is any function in win32gui can realize this. Can anyone provide a link or a sample ...
0
votes
0answers
87 views
Use Python Win32gui to check messagebox
I am writing a python unittest program. I want to check whether a messagebox appears after several seconds. I find FindWindow(className, windowName) in Win32gui can be used to detect a certain window. ...
0
votes
1answer
41 views
Create Win32 Window without blocking the current UI
I have an WPF application, and I want to create new Win32 window (cause it's window written in C++) on button click.
And, I have a problem. If I navigate the cursor to the button, there is the tooltip ...
0
votes
0answers
83 views
CMFCOutlookBar displaying a maximum of only 8 tabbed controls inside CMFCOutlookBarTabCtrl in enabled state
I am having difficulty using CMFCOutlookBar control and its associated control called CMFCOutlookBarTabCtrl. These controls are provided by MFC framework to basically leverage the look and ...
0
votes
0answers
35 views
how to create a listctrl with a sunken inner edge but no outter line frame?
Msdn Says that WS_EX_CLIENTEDGE is :
Extended Window Styles Specifies that a window has a 3D look — that is, a border with a sunken edge.
I used is CreateEx() function to create a window.
For a ...
-2
votes
1answer
94 views
Something's wrong with my windows button demo ( VC ) [closed]
Firstly, the button title "AUTORADIOBUTTON" disappeared.
Secondly, when closing the window, it crashes everytime.
(This problem has been solved, I used redundant ReleaseDC = =b. Delete the last ...
0
votes
0answers
175 views
Automating button click for the Windows Security popup with Python
I'm using the win32gui library to get a handle to the Windows Security popup and use win32con to click the "Install" button within but without success. Has anyone done this before successfully in ...
2
votes
1answer
138 views
Python: How to get the text label from another program window?
I want to read text labels from another program, with Python. I think I have to use WM_GETTEXT, but I don't know how and I couldn't find anything on the internet. My program gets the active window, ...
0
votes
1answer
174 views
win32gui get the current active application name
I am just learning python and I am relativity new to it.
I created the following script that will get the current active windows title and print it to the window.
import win32gui
windowTile = "";
...
0
votes
3answers
129 views
How can i copy the visual content of a window and put it on a new window in win32 c++?
I've read something about GetDIBits or BitBlt but i do not understand them.
That could be because i don't understand how Windows actually handles graphics on windows. It would be perfect if someone ...
0
votes
0answers
61 views
Send File Over LAN throughout WMI
I am developing a Dialog based Win32 application (I know that's ancient - Client's requirement).
In my program, I need to send a file to different remote machines connected via LAN (without client). ...
0
votes
1answer
74 views
Perl - Scalars leaking with Win32::GUI and threads
I just played around with the Win32-GUI in combination with threads (Perl 5.16) and I came up with some warnings and errors I do not really understand.
Code is the following:
use strict;
use ...
1
vote
1answer
157 views
win32gui.SetActiveWindow() ERROR : The specified procedure could not be found
I get the active window like so:
window = win32gui.GetForegroundWindow()
which is an Int, say 1053634.
And afterwards I try to set the foreground window back to the specified window:
...
0
votes
2answers
191 views
Windows 7 Button Styles in VC++
I am new to Visual C++ (I have programmed in the past in C not C++). I started creating some basic applications, with windows and controls and other things like those. When ran one of my apps dialog, ...
0
votes
1answer
76 views
Double Buffering and Viewport Origin?
I wanted to put the origin in the centre so I did:
SetViewportOrgEx(hdc,width/2,height/2,NULL);
(as seen in the code below)
Now, after implementing double buffering it doesn't seem to work ...
2
votes
1answer
349 views
Double Buffering? Win32 c++
I am trying to implement double buffering but it doesn't seem to work i.e. the graphic still flickers.
The WM_PAINT gets called everytime when the mouse moves. (WM_MOUSEMOVE)
Pasted WM_PAINT below:
...
0
votes
1answer
112 views
Win32/GDI coloring a triangle
I am making a series of triangles to represent a 3D shape using the vertices and the LineTo() and MoveTo() functions.
What is the best way to colour/fill these triangles?
Thanks
0
votes
1answer
69 views
Using NSIS for designing a Simple UI to control Application
I need to design a simple UI for Windows platform with a few buttons like Start server, Stop server, Launch client, Check for updates etc.
This UI will front end batch scripts so that users don't have ...
3
votes
1answer
73 views
Change origin? Win32?
is it possible to move the origin on the display from top left to the centre of the display?
Why I want to do this? So that, I can plot points such as:
(-21,-25),(22,-25),(21,25),(-21,25)
As you ...
0
votes
1answer
102 views
Calculate right, up and view vector from at and eye vector?
I am trying to make a WorldToView matrix and for that I need to calculate the right(r),up(u) and view vectors(v).
I know the eye vector is eye(0,0,0) and at vector is at(0,0,-1); then by:
v= ...
0
votes
0answers
133 views
Visual C++ and exe icon size
I have writed a small C++ program in Visual C++ 2012, I added a icon (contain multiple sizes and depths from 16x16 16bit to 256x256 32bit) but when compile, windows explorer doesn't show right icon ...
1
vote
3answers
1k views
Win32 GDI Drawing a circle?
I am trying to draw a circle and I am currently using the Ellipse() function.
I have the starting mouse coordinates - x1 and y1 and the ending coordinates x2 and y2. As you can see, I am forcing the ...
0
votes
4answers
305 views
WINAPI Button background
In WINAPI, I create a button like:
case WM_CREATE:
{
Start = CreateWindowEx(WS_EX_TRANSPARENT, "Button", "Start", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 20, 50, 75, 25, window, (HMENU)ID_START, ...




