Tagged Questions
1
vote
4answers
1k views
string processing in c
The goal of my program is to look thru a string and be able to take out the dialog question and answers.
For example:
("do you like me?"
("yes" ("we're friends"))
("no" ("i hate ...
0
votes
1answer
76 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
745 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
2answers
89 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 ...
0
votes
3answers
908 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
3answers
128 views
How can I print % symbol? [duplicate]
Possible Duplicate:
How to escape the % sign in C's printf?
I want to print the % symbol like this: "8%2F16"
How can I print this string?
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
1answer
808 views
GTK: set default button for dialog
It seems that GtkDialog automatically sets the focus on the left-most button (which is "Cancel" in my case).
I want to change this default focus to another button, but I cannot go the route of ...
1
vote
2answers
332 views
Where do i find standard system icons of messageboxes via WinApi?
Where do i find standard system icons of messageboxes via WinApi? I want to create an advanced dialogbox (with details-extension) as WinApi resource, but I want to use the system default icons like:
...
0
votes
1answer
137 views
How can I make a url embedded in the about dialog box appear as a hyperlink? (resource script .rc)
I have an application written in c that has no dialog box.
However, when you right click the icon you get a floating menu and from there you can choose the about option. This will open an about ...
0
votes
2answers
490 views
How can I create child dialog from an existing dialog (windows api)?
How can I create child dialog from an existing dialog?
Declaration(global scope)
HINSTANCE hInst;
HWND hWnd;
WinMain :
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
...
1
vote
1answer
83 views
gtk_message_dialog in a GtkCombo callback
I'm developing an app in C using Gtk. I have a GtkCombo with some restrictions that should launch an error message when user selects wrong entries in the list. The problem is that when callback ...
2
votes
1answer
80 views
Windows C dialog resizer
This page provides lots of libraries to handle item resizing and re-adjustment, but they're all for C++. Is there anything I can use for plain C?
1
vote
1answer
290 views
Win32: Toolbar dialog seems to never get focus and causes the main window to process slow?
I'm writing an application following this tutorial. I'm aware that this tutorial dates, and as such, I have adapted the code to take into consideration the unicode.
I have a main window which looks ...
2
votes
1answer
719 views
win32/C dialog box: “modern” look / style for a combo box
I want my dialog box (resource) in a Win32/C app to have a "modern" look/style, particularly its combo boxes. By "modern", I mean that a "drop list"-type combo box looks like a solid button, with just ...
0
votes
1answer
216 views
How can I get text from a dialog?
I need to get text from an entry in a dialog, like a login dialog (get the user and password), I've tryied to use 'gtk_entry_get_text' but I did something wrong or there's something else I could ...
0
votes
1answer
217 views
DialogBox in Win32 - Prevent multiple instance
I have a program which creates DialogBox window when user clicks the menu item from tray icon,
case ID_OPTIONS:
DialogBox ( GetModuleHandle ( NULL ),
MAKEINTRESOURCE ( ...
1
vote
1answer
327 views
how to set the tab order for the UI controls in win 32?
hello all I have a small dialog which I created dynamically, which has a textbox and a button..if the user presses the TAB key it has to switch between the two control(textbox and button)...I tried ...
2
votes
1answer
681 views
Why can't my program display this dialog box, while another program can?
I'm trying to write a wrapper for Winamp input plugins and have hit a bit of a snag. I'd like my wrapper to be able to display a plugin's configuration dialog, which is (or should be) achieved by ...
0
votes
3answers
602 views
GetOpenFileName() does not refresh when changing filter
I use GetOpenFilename() to let the user select a file. Here is the code:
wchar_t buffer[MAX_PATH] = { 0 };
OPENFILENAMEW open_filename = { sizeof (OPENFILENAMEW) };
open_filename.hwndOwner ...
5
votes
1answer
2k views
GetOpenFileName() with OFN_ALLOWMULTISELECT flag set
I'm trying to use the GetOpenFileName() common dialog box call to pop open a dialog box and allow the user to select multiple files.
I've got the OFN_ALLOWMULTISELECT flag set, as well as ...