Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
103 views

How to provide image data for embedded web control in C++

In my C++ app I'm embedding (via COM) a web browser (Internet Explorer) control (CLSID_WebBrowser). I can display my own html in that control by using IHTMLDocument2::write() method but if the html ...
4
votes
3answers
207 views

How do I create Windows in D with win32?

Hello I'm trying to open a window with win32 in D, and I've got a little problem. The program crashes when I call CreateWindowA. Here is my code : this.fenetrePrincipale = ...
4
votes
2answers
439 views

Get text from popup window

I'm trying to read the text from a popup window. The title is always the same. I've managed to identify the hwnd and get the title with the code below, but I can't figure out how to read the ...
4
votes
1answer
670 views

How do I completely change the appearance of a Win32 title bar from Perl?

I'm learning to add GUI to my Perl program using Win32::GUI. Now I can change the icon of a Win32 title bar using something like: $myicon = new Win32::GUI::Icon('myicon.ico'); $myclass=new ...
3
votes
1answer
47 views

Are Windows window classes case-sensitive?

MS docs being clear as mud (and the class name strings not referenced very often), I was wondering whether the class name of a Win32 window class is actually case sensitive?
2
votes
1answer
36 views

Why does GetWindowLong have ANSI and Unicode variants?

I found out today that GetWindowLong (and GetWindowLongPtr) has 'ANSI' (A) and 'Unicode' (W) flavours, even though they don't have TSTR arguments. The MSDN page on GetWindowLong only indicates that ...
2
votes
3answers
72 views

Animation and event questions in win32 (C++)

I would like to create a small application which has two animated ellipses. One wanders around on its own using a custom function to determine its direction and behavior; the other is controlled by ...
2
votes
1answer
82 views

Message Box Error : foreign import unsafe

import Graphics.Win32 import System.Win32.DLL import Control.Exception (bracket) import Foreign import System.Exit main :: IO () main = do mainInstance <- getModuleHandle Nothing hwnd <- ...
2
votes
2answers
202 views

Stop other programs from minimizing my Win32 application

I've got a Delphi app that is running in an environment where it gets minimized by another aggressive app that is trying to seize the screen entirely (it's POS stuff). When a second application is ...
2
votes
0answers
251 views

Using Win32::GuiTest to get data from grid display control (AfxWnd42s)

I'm currently writing some perl scripts to test one of our GUI applications. I'm using perl's Win32::GuiTest as a foundation, and it's pretty functional for the most part. However, I am now stuck ...
2
votes
2answers
501 views

wxPython wxDC object from win32gui.GetDC

I am getting a DC for a window handle of an object in another program using win32gui.GetDC which returns an int/long. I need to blit this DC into a memory DC in python. The only thing I can't figure ...
1
vote
1answer
34 views

Displaying icon larger than 32x32 in dialog box

Hi I created a dialog box within win32: ABOUTBOX DIALOG DISCARDABLE 32, 32, 180, 100 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU FONT 8, "MS Sans Serif" BEGIN DEFPUSHBUTTON ...
1
vote
0answers
44 views

how to implement listbox?

I'm trying to develop a winform in vc++ How to implement a listbox with 3 columns(file name, created by, size) in win32 application and add filename(when i click on it it opens the file) and created ...
1
vote
1answer
85 views

Win32: How to create a bordless popup window

Win32 API provides many styles for window creating and I'm looking for a style that can remove a one-pixel border from the window that I created with this code: DWORD dwExtStyle = 0; DWORD dwStyle = ...
1
vote
1answer
46 views

How many characters should I update in the normal flow of a text editing program?

So, I'm making this text editor from scratch using a custom edit control. As of now, I update the visible part of the current line in which the caret is contained. It works generally fine, but i tried ...
1
vote
1answer
52 views

System colour for inactive selected items in a listview?

Is there any system colour that define the background of a listview item when the control has no focus and the selection is not hidden? I'm not able to find it if so. EDIT: I think it is the one ...
1
vote
3answers
298 views

opening a window that has no title bar with win32

I'm developing a c++ application for windows. I'm using win32 API. I have a very simple question, which i couldn't find an answer to. How can i open a window without a title bar (without controls, ...
1
vote
1answer
130 views

CreateDialog Failed, but why GetLastError returns 0?

I am writing an editor for my project by using scintilla editor component. The editor is for an internal scripting language, having all the basic functionalities like cut,copy, paste etc. As one of ...
1
vote
1answer
61 views

My Own Personal MFC

I can't seem to find this on msdn been searching for a bit (described below). Please forgive the amount of code posted, I will paste in order. You can really skip most of it. But I just want to put ...
1
vote
2answers
104 views

using win32 in native applications

Is it necessary to use win32 in full native applications or it's good to use the visual mode of VC++ Express instead. I want to know about the big programs like game engines that, are they using ...
1
vote
1answer
115 views

Reading a Dialog Box in Python

I am trying to automate a daily routine I do using Python. Using the win32gui library I have been able to put a cursor in a position, click, and sendkeys. During this task, several message/dialog ...
1
vote
1answer
164 views

perl win32::gui remove elements

I have a dialogbox, to which i populate elements(labels) on activate event. I want to remove these elements(labels) when the window is being deactivated. something like:[its erroneous fragment of main ...
1
vote
1answer
518 views

Python PyHANDLE object in win32gui

I've been playing around trying to create a transparent window that will overlay another application. I'm finding the win32 extensions are a bit of a mess, there's win32ui, win32gui, winxpgui, etc. ...
1
vote
1answer
1k views

python win32gui finding child windows

for example at first you have to find hwnd of skype hwnd = win32gui.FindWindow(None, 'skype') and than all his child windows and their titles child = ??? any idea?
0
votes
0answers
64 views

Creating a windows form always on top, making space unavailable for other apps

I have 3 monitors and only 1 taskbar in win7. I want to show a simple taskbar-like form on the bottom of each extra screen. In this forms only simple links are displayed. I can get the look and feel, ...
0
votes
2answers
115 views

C++ Window losing focus when child button is pressed

I am trying to get a GUI running for a C++ application but I am having an issue with key press events. Basically, everything works fine, as long as I do not click on any buttons (the main window ...
0
votes
0answers
41 views

Getting margins (padding) for a header column text in owner draw mode?

I'm working on Owner Draw header with win32 api. Everything went OK until I had to position text within the header item. I would like it to be the same as native drawn header item because I am using ...
0
votes
1answer
49 views

Use selected text instead of selectedIndex

I have a dataset connected to a bindinglist that is connected to a combobox in win32. I would like to make "Computer" to be selected as a displaymember in the combobox when I have a private string ...
0
votes
2answers
51 views

external variable is not available to thread until blocking call is made…

I have two code files, one contains my WinMain() function, and all functions related to my main dialog window. The other contains a thread callback and variable functions related to my program. I have ...
0
votes
0answers
61 views

Need to implement VPN client in win32 [closed]

I have to implement VPN client in win32 forms, if you guys have any code sample, article or the idea of any library(like dotRAS.dll for C#) that can be used to achieve this goal then please share it ...
0
votes
1answer
46 views

Python - win32con.FLASHW_* flags

G'day, At his link http://docs.activestate.com/activepython/2.7/pywin32/win32gui__FlashWindowEx_meth.html there is the documentation for win32gui.FlashWindowEx(), which I have managed to get working ...
0
votes
1answer
63 views

Getting select all(ctrl-a) to work on a CEdit control

I am trying to implement select all(via ctrl-a) in a CEdit control. I'm doing this by making a class which inherits CEdit and adding a handler for WM_KEYDOWN like this: void ...
0
votes
2answers
77 views

Qt and win32 ,How to make win32 window that is full sceen to disable all keystrokes

im trying to take Qmain Window and make it full screen that only few keystrokes could be enabled . in pure Qt it coulnd be done , you will still have keystrokes that ignoring the Qt event handler . ...
0
votes
1answer
91 views

ProgressBar gets 'stuck' when running without debugger

I'm working on a Visual C++ application, and part of this depackitises a file, sinjce this can take a while I implemented a progress bar to reflect the progress of the depackitisation. This works ...
0
votes
1answer
114 views

How to hide/collapse main menu in a win32/mfc application

I always been interested on how we can accomplish this (hide/show the main menu using the alt key), and now some applications do this very often. One that really please me is the visual studio 2010 ...
0
votes
0answers
54 views

Another one about Win32 Vs UI Automation

I'm building a (Web/WinForms Application I didn't decide yet) and I have a running simple WinForms Application that I couldn't access through my new application by any means and I just want to read ...
0
votes
1answer
51 views

help me with perl win32 gui module

I have code some Perl win gui and I want to make something like a picture that I have attached. I have a problem to make a table. Let me know how can I do that.
0
votes
1answer
60 views

Can I place a window inside a window? Like a videoplayer

I'm using C++(Visual Studio 10) on Windows XP. I want to make an application similar to a video player where there is a window inside an outer window where the actual video is displayed. On the outer ...
0
votes
1answer
34 views

FillRect with WHITE_BRUSH fails on WinCE 6.0

I'm attempting to clear part of my screen with FillRect(hdc, &r, (HBRUSH)(WHITE_BRUSH)) However it "succeeds" (returns nonzero) but writes nothing to the screen. If I change it to ...
0
votes
1answer
76 views

Disabling mouse-over highlighting of toolbar buttons (winapi)

Is there any way (well, I'm assuming there must be) to disable mouse-over highlighting for a toolbar in XP? I'm just making standard Win32 calls for my application's GUI, through Common Lisp. ...
0
votes
1answer
100 views

Manufacturer String and Product string for a USB Mass storage device

I want to extract the manufacturer string and product string for a specific Mass storage USB device let's say C:. I am able to extract manufacturer string and product string by enumerating all USB ...
0
votes
1answer
134 views

Taking full screen images with Python (Windows)

I've tried a number of things, but all I can get if I try to do an auto screen shot of a full size window is a black screen. I've tried ImageGrab.grab(), and automated Prt Scr press and I've had no ...
0
votes
1answer
39 views

Replacement of Graphics or Canvas Properties for Delphi Prism

Okay, instead of asking piece by piece, I am going to list all the canvas properties from win32 program that I am having problem with. What would you replace these with for Delphi Prism? TPanelBevel ...
0
votes
1answer
92 views

Ambiguous pywintypes.error when calling win32gui.GetPixel()

So here's the line of code triggering the error: win32gui.GetPixel(win32gui.GetDC(self._hwndGame), x, y) Here's the error: pywintypes.error: (0, 'GetPixel', 'No error message is available') I'm ...
0
votes
2answers
146 views

Win32 Window resize animation

I want to resize a Window with animation in my 32 application. I have searched everywhere but I couldn't find Win32/MFC APIs to do so. The animation behavior I need is very simple. It's just scaling ...
0
votes
0answers
144 views

Removing the Title bar from Windows XP CMD

I am trying to customize windows xp console - without using alternatives like econsole and console2. I have changed everything except transparency and titlebar which I want to remove. Transparency and ...
0
votes
1answer
226 views

How to use Win32gui with python?

Im my pthon file I have imported win32gui like import win32gui I have also downloaded win32gui but don't know how to make my script run. How can I run my python script which imports win32gui? When ...
0
votes
1answer
119 views

How to stop a warning dialog from halting execution of a Python program that's controlling it?

Using Win32GUI and Watsup, I'm writing a bit of Python code to automate a search across a database that is accessed through a program that doesn't come with an interface for it. As such, I can take a ...
0
votes
0answers
24 views

Controls Shadow presence problem

Using Perl Win32::GUI I am hiding some controls and and moving other controls like below code if($chk->GetCheck eq 1){ $label_1->Hide(); $text_1->Hide(); $label_2->Hide(); ...
0
votes
0answers
147 views

how to get the enter key to work with two textfields in win32-gui perl

I'm interested in using two textfields in a DialogBox. Each textfield needs to except input from the enter key. I have learned that when you create your first button with -ok => 1, this becomes the ...

1 2