Tagged Questions
0
votes
1answer
29 views
Mimicking ::DialogBox() for a custom Win32 modal dialog
I have an old school Win32 modal dialog written in C++. The layout is constructed in code (not loaded from a resource) and displayed using a custom modal message loop like this:
// Spin message ...
0
votes
0answers
39 views
Forcing a dialog to come to foreground or on the top
I am using COM API to do some calculation and therefore i make a method call with the help of interface and this method internally itself displays the dialog box which contains the computation result ...
1
vote
2answers
32 views
How to determine that FindText dialog is closed when user click “Cancel”
This code produces simple FindText dialog window and when user clicks top-right X window close button the WM_CLOSE message is send to the hook procedure, but when clicking "cancel" button no message ...
0
votes
1answer
50 views
My about window wont open
I have been at this for 5 hours believe it or not. I'm very stressed out because it just seems so basic and when I actually get a hold of all this resource stuff, making program will be a lot easier.
...
1
vote
1answer
45 views
Opening a dialog box
I don't quite understand how this works. So I've made my dialog box.. or boxes. And I don't know how to make them appear in my code. Right now I'm trying to just get them to pop up right when I start ...
0
votes
1answer
111 views
Making VCL Forms and Dialogs play nicely with WinApi Window
The short version -
I have an OpenGL Window which is created using WinApi calls. I would prefer to keep it this way, instead of wrapping OpenGL into a VCL Form.
To provide some preference menus ...
1
vote
1answer
134 views
Using a dialog box to graphically retrieve user input
I am not new in C++ but this is my first time developing a Win32 program. It has to be graphical and so I have been attempting to get user input using an input/dialog box with no success.
I have read ...
0
votes
1answer
136 views
Modeless dialog keyboard handling (winapi)
I've got an application with a main window which has a bunch of controls, including the spacebar, which is handled by a simple method called onSpacebar(). On top of that main window, I've got a ...
1
vote
2answers
188 views
Auto resize a dialog control when parent window is resized WinApi
I am trying to show a web page in a dialog control. All is working fine till I maximize the parent window, the inner control with webpage retains its size and so a blank area is left at the side of ...
1
vote
1answer
52 views
Receive notifications of a pending drag-and-drop operation over my window in C++
I have an MFC dialog window with controls in it that support drag-and-drop feature. Those controls are registered to receive drag-and-drops, and that part works fine.
My question is about my main MFC ...
0
votes
2answers
179 views
Usage of GetOpenFileName() API in VC++ for opening a folder & NOT a file
BOOL WINAPI GetOpenFileName(
Inout LPOPENFILENAME lpofn
);
is used for opening a file in a VC++ program, say
C:\Hello\World\abc.txt
.
But I want to use this function to select a ...
0
votes
1answer
152 views
MFC, EndDialog, repeated dialog creation causes unexpected behavior
I need to adjust the dialog window dynamically based on its size. To do so I employ the following technique:
I load it up and get its size from the CDialog::OnInitDialog() handler.
If the size is ...
0
votes
2answers
84 views
How can I reinitialize my code
Hi I am currently working on a project where we are creating a UDP server to communicate with a KUKA robot. We are able to establish the connection with the robot and exchange the data back and forth ...
0
votes
1answer
70 views
DS_CONTROL style for dialog
I created a main dialog window with a child dialog window embedded. The child dialog is created using the style
DS_SETFONT | DS_FIXEDSYS | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_TABSTOP
Everything ...
0
votes
1answer
638 views
child dialog window inside a dialog window
I want to create 2 dialog windows, one is a child of the other one. Below is part of the code.
When I click the menu item "Parent", it created the 2 dialog and set one as a child of the other one, as ...
0
votes
1answer
102 views
Group dialog items to a single “Group” (Visual Studio)
I want to create a dialog window for change settings of an application. Below is a screenshot of Adobe Reader. After using Spy++, I guess that:
On the right side, all the control (buttons, combo ...
1
vote
0answers
135 views
how to simulating the message pump mechanism in mfc dialog based application?
I want to know how can I simulate the mfc message pump in my dialog based application.
In my application I have one base class as MyDialog. by using this base class I am deriving different kinds of ...
0
votes
1answer
92 views
“functions” in a dialog box procedure
I'm noticing a need for functions in my dialog box procedures. For example, there are multiple buttons I can hit which require other controls to be updated in the same exact way. Right now I'm just ...
3
votes
1answer
79 views
How to add event handler to the desktop window?
I'm trying to make a program that would update another window text input with the color value under the mouse. The problem is that I have no idea where I put this check WM_MOUSEMOVE, since I haven't ...
0
votes
2answers
86 views
How to disable pasting words into a number-only edit control?
I am writing in C WinAPI a 'Go To Line' dialog of the notepad. I created a number only edit control. But I can still paste words into the edit control! The dialog in the windows notepad does stop this ...
1
vote
1answer
130 views
How to show Last Logon UserName in a logon dialogbox using C++ win32 API? [closed]
i am using C++ win32 API.
i have a gina logon dialogbox.
it contains a username textbox.
i want to show the last logon username in that textbox,when the system after restarted.
How can i get it?
0
votes
2answers
92 views
How to show domain value is default in combobox using C++ Win32 API?
i am using C++ Win32 API.
i have a logondialogbox.its have a username textbox,password textbox,domainname combobox.
when i start the system,how can i show the domainname in combobox default?
in ...
2
votes
3answers
516 views
Disable X-Button Icon on the top of the right in Messagebox Using C++ Win32 API?
i am using C++ win32 API...
i have a Windows messagebox contain OKCANCEL Button...
the messagebox have a close(X-Button) on the right top...
retun1=MessageBox(hDlg,TEXT("Your password will ...
0
votes
2answers
102 views
How to hide my current window,when i click the ok button using C++ win32 API? [closed]
i am using C++ win32 API...
i have a window(dialogbox),that windows has some buttons...
if,i enter one of the OK button,one messagebox will appear...
at that time,i want to hide the background ...
0
votes
0answers
34 views
How to use IWinLogon in static function using c++ win32 API? [closed]
i am using C++ win32 API...
i have use IWinLogon*->wlxmessagebox in a function...
But that function make a static function,IWinLogon* identifier can't work.
...
0
votes
0answers
279 views
How to display dialogboxparam dialog through the Messagebox ButtonClick?
i have using C++ win32 API.
i already craeate a dialogbox within a dialogbox using dailogboxparam function in bb class...
INT_PTR bb::DialogProc(UINT msg, WPARAM wp, LPARAM lp)
{
//some case and...
...
0
votes
2answers
366 views
How to concate values in messagebox text using C++ win32 API?
i want to show the messsagebox using win32 API...
int pwdexpirydays=5;
MessageBox(hdlg,(LPCSTR)("Your password will expire in %d days",&pwdexpirydays),(LPCSTR)"Logon Message",MB_OK | ...
0
votes
0answers
68 views
How to focus wlxDialogBoxParam() Dialogbox in system logon timeusing c++ win32API?
i am using c++ win32 API for developing my gina project...
i have problem,when the system logontime,that is the dialogbox will appear...
but that dialogbox cant focus anything till i click on the ...
0
votes
1answer
302 views
How to invoke a button using C++ Win32 API when press the enter button?
i have created a dialogbox using c++ win32 API...
there are 3 text box,1 combo box and 3 buttons...
now i have 2 problems...
1.when i press the ENTER button,it invoke second button(ID_OK) ...
0
votes
1answer
195 views
how to show combobox second value in default using C++ winapi 32?
i have problem in display a login dialogbox...
that have 2 textbox,1 combobox like username,password,domain...
1.i have setfocus in username ,that cant set
SetFocus(GetDlgItem(_hwnd, IDC_NAME));
...
0
votes
1answer
281 views
Using SS_BITMAP style on static control in a dialog frame
I am attempting to write a slot machine Win32 App that uses images to display the result of the spins. I know how to display an image on a normal LRESULT CALLBACK frame, but i'm lost when it comes to ...
0
votes
3answers
818 views
how to set image in dialogbox in c++ win32 API?
i have developing a C++ Api project.
i will use dialogboxparam to create a dialogbox...
i done to create and set the textbox,labels and buttons...
its work fine...
now i want to add a image in ...
0
votes
1answer
136 views
Win32 - Make dialog require focus/action
In Win32 programming the MessageBox function launches a dialog that requires action, you cannot give focus to another window in the application until you press 'OK'. Well I have a dialog box that I ...
0
votes
0answers
97 views
Windows App: Embedded Browser on Dialog stopped working
We made two changes at once: upgraded to VS2008 (yeah, well that is still futuristic for us) and switched to an oconfig-based build system.
Between the two of those, something broke the ability of an ...
0
votes
2answers
778 views
How to use DialogBoxParam?
I have a pre-made template resource dialog, and I want to use DialogBoxParam to display it, but I can't find any good examples over the internet. The dialog is a simple login dialog, so can someone ...
1
vote
1answer
272 views
How to make a Win32 dialog appear at the default position (CW_USEDEFAULT)?
How do I make a Win32 dialog appear at the default position/size?
(i.e. How do I simulate CW_USEDEFAULT for CreateWindow when the window is already created)?
0
votes
2answers
467 views
Move buttons on a Dialog Box while it resizes
I have created a Dialog Box in a c++ windows application (using ATL lib) and I have set on it three buttons. The button lie as usual at the bottom of the Dialog Box. I want by the resize of the Dialog ...
0
votes
2answers
1k views
How to create an embedded text input box in win32 windows
I want to create a little box embedded in my main window that can accept text input and contain buttons. When I say embedded, I mean I want it to be integrated in my main window seamlessly without its ...
1
vote
2answers
194 views
How do I pass a data type to a resource (.rc) file in Win32 C++?
I'd like to center a dialog box in my Win32 application, but am having trouble passing constants to my resource.rc file. I make the following declaration in resource.h:
const int SCREENX = ...
2
votes
3answers
351 views
Dialog as main Window?
Is it usual to use a Dialog as main Windows? So without registering any user class via RegisterClassEx? Can I do everything I do via CreateWindow()? Why should I create controls such as ...
0
votes
0answers
133 views
List-view crashing my dialog box
I'm creating a dialog box with a list-view in it using the following line of code:
DialogBox(instance, MAKEINTRESOURCE(IDD_DIALOG), NULL, DialogProc);
Here is my resource file:
#include ...
1
vote
1answer
123 views
What is the appropriate message to release resources in a dialog window using C++/WinAPI
I program using C++/MFC in a native WinAPI world. Say, I have a dialog window class (creatred in MFC and derived from CDialog.) I also created a timer, using SetTimer method when the window was about ...
0
votes
4answers
752 views
WM_COMMAND not being received by Dialog Procedure
I am trying to use a context menu I created for a Dialog Box, but the WM_COMMAND message which is supposed to be sent when I click a menu item is not reaching the Dialog Procedure.
I put an if ...
1
vote
1answer
1k views
How to use Visual Studio Dialog Editor with just C++ Win32 API (no MFC or WinForms)
I'm quite new to GUI programming in C++ and I'm trying to use the Visual Studio Dialog Editor.
I've already created a dialog and assigned it a Dialog Procedure but I don't know to get the hwnd ...
0
votes
1answer
169 views
MB_TASKMODAL flag for modal dialogs boxes
Would it be possible to create a modal dialog box with DialogBox(Param) that blocks all other top-level windows in its owner thread, similar message boxes created with the MB_TASKMODAL flag?
The ...
0
votes
1answer
389 views
Dialog-based Win32 API program will not display window when a Richedit control is used
I've written a dialog-based Windows application that contains two edit controls and two button controls. ResEdit 1.5.9-x64 was used to create the dialog window and place/position the controls. The ...
4
votes
2answers
468 views
DialogBoxIndirect creates dialog bigger than asked
For my application I need to create a Dialog Box without using resource.
I am trying to do it with DialogBoxInderect function.
The code is unbelievably ugly but somehow I succeeded to do it.
The ...
1
vote
2answers
1k views
How to customize open/save file dialogs?
I have seen some programs use custom open/save file dialogs in that manner they add some extra buttons there.
How can I do this?
Note that I want to use the basic open/save dialogs, so I dont have ...
0
votes
2answers
192 views
Dialog using runtime-created template doesn't work on XP 32 bit
I have written a runtime-created dialog class that doesn't use any resource files based on this example: http://blogs.msdn.com/b/oldnewthing/archive/2005/04/29/412577.aspx
It is compiled on a Windows ...
1
vote
2answers
117 views
VC++, making buttons and textboxes an object
At the moment I’m working on a win32 application in Windows. I made a dialog in Visual Studio 2005, I added some check boxes and buttons. In C# + .net the boxes and buttons are an object. That way you ...
