C++ :: Multithreaded Program Using Modal Dialog Box

Apr 9, 2014

I am writing a piece of code using gtkmm and ran into this problem. This is how i am getting the problem.

class someobj {
Gtk::Window* pWindow;
// Thread 2
void run() {
while(1)

[Code] ....

I think it is not dependent on gtkmm because thread 2 is blocked where as the parent thread is running which is causing the problem.

View 6 Replies


ADVERTISEMENT

Visual C++ :: Modal Dialog Unexpectedly Becomes Non-modal

Mar 10, 2015

I have a modal dialog. When I click on a button in the dialog to perform an operation, a non-modal dialog is displayed showing a progress message.

The operation is not successful. It calls WaitForSingleObject and times out. This seems to have an adverse effect on the modal dialog, which strangely becomes non-modal.

My code:

CIMFlashBox FB(nInstrumentUID, sMessage);
eStatus = SetRegister(nInstUID, IM_CONFIGURE_REG, eForceSet, sMessage, bForceSet, FALSE);
FB.DestroyWindow();

The first line displays the modeless dialog. The second line performs the operation, which calls WaitForSingleObject. And the last line destroys the non-modal dialog.

View 6 Replies View Related

Visual C++ :: Modal And Non Modal Dialog Box?

Aug 21, 2013

I am doing a win32 application,In that i have a modal dialog box and inside the dialog box one list control also,to display students record,In tht record i want to use Find dialog box and find and replace dialog box(Non modal dialog box).Is it possible?

View 5 Replies View Related

C++ :: Multithreaded Server And Client

Apr 28, 2014

I need the code for multithreaded server and client code. one server and two or more client connect to server.

Without fork(),semaphore(),etc

View 1 Replies View Related

C++ :: Debug Multithreaded Application In Unix Environment?

Mar 3, 2013

How can we debug the multithreaded application in unix environment?

View 1 Replies View Related

Visual C++ :: Static Class Member In Multithreaded Environment

Nov 21, 2014

I have a class having static member.I have get and set methods which will Get and Set Values to this variable. In a multithreaded application does it have any thread safety issues.

Class a {
static int b;
void Set (int c);
int Get();
};

View 10 Replies View Related

C++ :: Program To Create A Dialog Box And Shows It To User

Dec 20, 2014

I want to make a programs which creates a dialog box and shows it to the user. The dialog box should not be pre-loaded, here's an example:

cout << "Button a"
cin >> a
cout << "Button b"
cin >> b
cout << "Button c"
cin >> c

[Code] .....

Each button should be under the other. How can I do this in a C++ project?

View 1 Replies View Related

C :: Dialog Box - Browse For A File

Apr 2, 2014

Using C, is there a way where we can open a dialog box so that user can select a file which will be the input file for a program.

View 2 Replies View Related

C# :: How Add Buttons To Dialog Derived From GTK

Jul 31, 2014

I want write my first application using Xamarin Studio and GTK#.

I create new file Dialog.cs: public partial class Dialog : Gtk.Dialog

I add Fixed container and can't add buttons, why?

I must use class Window : Gtk.Window instead of Dialog and show modal this window?

View 2 Replies View Related

Visual C++ :: How To Set The Parent Dialog

Apr 17, 2013

I've created a modeless dialog from my main dialog as follows:

Code:
m_pContainerDlg = new CDlgContainer(NULL, this);
m_pContainerDlg->Create(CDlgContainer::IDD, GetDesktopWindow());
m_pContainerDlg ->ShowWindow(SW_SHOW);

This container dialog creates a child dialog which I show inside the container

Code:
BOOL CDlgContainer::OnInitDialog(){
// Create the child dialog and show it
m_pChildDlg = new CChildDlg(this);
m_pChildDlg->Create(IDD_DIRECTORY_DIALOG, this);
return FALSE;
}

From my child dialog I then create a modal dialog when a user clicks on a button

Code:
CChildDlg:: CChildDlg (CWnd* pParent /*=NULL*/) :
m_pParent((CDlgContainer*)pParent), {
} void CChildDlg::OnBnClickedBtn() {
CMyDlg MyDlg;
INT_PTR iResult = MyDlg.DoModal(pParent);
}

My problem is that the CMyDlg is modal but to the main dialog and not to the container or the child dialog.

View 3 Replies View Related

Visual C++ :: Catching A Dialog Box?

Dec 9, 2013

What I want is simple: I want to catch a dialog box!

The dialog box pops very frequently in a website. We have to put a username and password and press OK. I checked with spy++. It doesn't have any child windows. So catching the dialog box with windows API is ruled out. It must be a HTML dialog. I have to get DOM COM interfaces of the dialog.

Another option may be to make an add-on to get the interface to IWebBrowser2 and get the events fired. The title of the dialog box is "Authentication Required". If the events will be fired for that dialog box, I can check the title using IHTMLDocument2::get_Title.But will the events be fired for HTML dialog box? How to catch that desturbing dialog box.

View 2 Replies View Related

Visual C++ :: How To Create A Dialog As DLL

Feb 13, 2014

How can I create a dialog as a DLL ? I have a SDI MFC app (CView is based on CFormView) and from a button I want to load a modal dialog, but that dialog must be developed as DLL ... I didn't find something that fit my needs on internet ... P.S. I have only VC6 !

View 14 Replies View Related

Visual C++ :: FTP With Progress Dialog

Nov 13, 2012

For a project I'm working on, I need to be able to download a file from an FTP server and store it to a predetermined location with a predetermined name. No user interaction should be needed. Because the file is rather large, and I need the main program to remain responsive, this is going to need a progress dialog.

I could write all this myself and use the MFC wininet wrappers (CInternetSession et al) to do the downloading, but... Explorer already has this, and IE has such a dialog also. It doesn't seem unreasonable to assume those dialogs are available via some API.

Is a "FTP download with dialog" available as a windows API, or do I really need to write all this myself ?

View 2 Replies View Related

C++ :: MFC Dialog Application - Password Hashing

Dec 2, 2014

I am not sure how to do password hashing in c++ mfc dialog application. I am new to C++ programming.

View 2 Replies View Related

C# :: How To Use Confirmation Dialog When Reading Strings

Jun 11, 2014

Here's what I want to do:

So, basically the user imports a list of strings from a CSV file and the lines get read line by line and sorted in a listbox. If the user uploads the same file again that contains the same list of strings, a confirmation box with the following is supposed to be displayed:

"The list is the same. Are you sure you want to import this list of strings?" The options are yes, no, maybe.

If the user clicks on yes, all the strings get saved/put into the listbox regardless of whether or not they are repeated. No allows the user to to cancel the whole operation and return back to the screen for all samples. Maybe allows the user to individually pick which one they want saved or not. Maybe takes the user to a yes or no confirmation dialog box and it loops through all the strings in the csv file until the user has picked yes (accept) or no (deny). Only the confirmation box with yes and no should be looping.

What I have so far:

-Two confirmation boxes (I decided it would be easier for me to create two views and two viewmodels just for confirmation box setup - one with confirmation box of yes/no/maybe and one with confirmation box of yes/no).
-All the event handling is set and done.
-Reading the CSV file and checking for duplicates.
What I have problems with:
-When the call the confirmation dialogs...

Here's a snippet of what I have:

public void ReadImportedSamples(string filePath)
{
string line;
try
{
using (DDataContext context = new DDataContext())
{
using (StreamReader sr = new StreamReader(filePath))
{

[Code]...

So, I have two confirmation boxes, confirmationWindowSamplesListYN (only yes and no) and confirmWindowForSamplesList (with maybe).

Everything is set up fine. I am just wondering when the call the proper confirmation dialogs so that I can get the behavior above?

View 14 Replies View Related

Visual C++ :: How Many Items Exist In A Dialog Box

Sep 11, 2013

I was wondering how can we know how many items exist in a dialogbox? If there any way that i can get the items ID in a dialogbox by having just the dialogbox's object or handler? Or any way that we can get a dialogbox content by coding.

View 6 Replies View Related

Visual C++ :: MFC Dialog Clipping Off In Low Resolution

Mar 25, 2013

I have an mfc dialog of size 1280 X 1024 and when i change the resolution to 800 X 600, after adding scroll bar, it don't show the entire dialog contents, Seems like it clips the 800 X 600 portion.

I have handled VScroll and HScroll. It works fine for higher resolutions!

View 1 Replies View Related

Visual C++ :: How To Reposition Menu Bar For Dialog Box

Dec 23, 2013

Normally, menu bar resides below the title bar. See attachment MenuBarOriginal.JPG

Is there a way that we can position the menu bar? For example,place it on the side or anywhere on the dialog box?

MenuBarModified.JPG is some sample of menu bar positions that I want to place.

I want to do this on a dialog box.

View 6 Replies View Related

Visual C++ :: Pass Parameter In Dialog Box

Feb 12, 2014

I need to pass a variable to a dialog box.

Code:
Doc* pDoc;
Dialog dlg;
int input = dlg.DoModal();

When I call dlg.DoModal() I need to somehow pass the pDoc into the dialog box. Everything I need the variable for is taking place inside the oninitdialog function. Is there anyway to pass the variable to that function?

View 2 Replies View Related

Visual C++ :: How To Know When Mouse Over A Control In A Dialog

Jul 10, 2013

I forget how to know when mouse is over controls in dialog.. I want to show a message in status bar when mouse over each control...

View 1 Replies View Related

Visual C++ :: CListCtrl On Dialog - Row Selection?

Aug 22, 2014

I have a ListCtrl on my dailog. It has a report view. In my case I have selected first row with left click of mouse and entire row is displayed in blue color as selection (as per expected) and when I right click the second row of the listctrl it displays the menu which I have added to it and the selection remains with the first row.(as expected). I have already overridden the ListCtrl class.

I want that on the right click of second row the selection should remain with the first row but this second row also should be displayed with dotted line border.

View 1 Replies View Related

C# :: Editing A Parent Dialog Box Without Closing The Child

Sep 30, 2014

I'm using windows forms and I have a parent dialog box that consists of a text box and a drop-down that launches a child dialog box. The child takes user input and then prints dialog to the text box in the parent. However, the output does not appear in the text box until I close the child.

Now my question is, how do I get the text to appear without closing the child? I hit a button to send the info to the text box, but it still doesn't appear until the child closes. I also need to set up a button to suspend the child so that the user can click/copy/etc the parent.

View 7 Replies View Related

Visual C++ :: Child Dialog Shadow Remains?

Oct 5, 2012

i open child dialog from a dialog( which is launched from a toolbar of a window) after editing i close the child dialog, after closing child dialog shadow is retained on window but not on the parent dialog. Later when i close the parent dialog the child dialog shadow disappears. (issue exist only when i edit in child dialog)

View 14 Replies View Related

Visual C++ :: How To Pass A Struct To A Dialog (WinAPI)

Feb 28, 2013

I want to pass some parameters to a dialog. I am trying to pass a struct as LPARAM in CreateDialogParam. How to access this structure from ONOK for example?

Code:
struct DlgParam{
std::wstring IEDllPath;
CString folderName;
};

[Code] .....

View 7 Replies View Related

Visual C++ :: Slider Not Working Properly In A Dialog MFC?

Jul 3, 2013

I have a slider control on a dialog box. I am playing a video file and slider moves according to the video elapsed. Suppose I have set the slider range to 100. Now till some point say 90, the slider moves to the point wherever I click the mouse. but at the last point in between some range say 90 - 100 (to the end of the slider), if I click the mouse button anywhere, slider jumps to the end.

I am using a TimeLine control where user can add more than 1 video (1, 2, 4, 8, 10 , 50 etc......), If I use only one video, slider moves as per the video progression.....Issue arises when I add more than 1 video and click on the start button, slider starts moving....Now when I drag the slider to any position or I click the mouse button anywhere on the slider control, slider thumb moves to that position and immediately jumps back to some other position. This is the Issue, I am facing.

share some sample code where slider is moving with the video showing the progress of the video.

I want to implement a functionality similar to VLC player. Wherever user clicks the mouse, slider moves to that point.

View 13 Replies View Related

C++ :: How To Get Encoder Drop Down In File Save Dialog

Oct 30, 2013

I need to have a user option to save a file as either UTF-8 or UTF-16, such as NotePad does. How to get the CFileDialog to display the Encoder drop down selector. How to do this. I am aware the since VISTA there is another API that one can use, but that API is not compatible with pre-VISTA OS 's.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved