Tagged Questions
1
vote
2answers
83 views
Is my logging-module thread safe?
Guys, I am a beginner in threading and logging.
Btw, I am not a native English speaker, so pardon me if there is any mistake in my English.
I have created a multiple-thread software, where each ...
0
votes
1answer
34 views
Progress bar in multiple dialogs with thread
My application has to keep track of time and alert user at different stages to allow or not allow certain actions. Because the user will be waiting, I want to show a progress to show wait time. For ...
0
votes
2answers
44 views
How to divert a thread to post messages to a new window
I have a thread that I pass an HWND of a window where it post messages and updates a progress bar. The user can however go to another window (modal) where I would also like to show the progress of ...
0
votes
1answer
144 views
Can't get MFC worker thread to pass hWnd or MDI window pointer to thread
For some reason passing an hWnd or a pointer of a newly created MDI window cannot be recasted into its original value in the worker thread. I've tried creating the thread from the App class, ...
1
vote
2answers
57 views
MFC C++ Edit Windows Controls in Callback Function
I got stuck at this part of my project.
I have a Download dialog which when you double click listcontrol.
I create it dynamicly and its use a static pointer to a Class which handles Download/Upload ...
1
vote
1answer
56 views
Porting multithreaded window ce app to win32
I am trying to do the opposite of the usual. We have a legacy WinCE app which now needs to be ported to the Win32 platform, so that it can work as a simulator of the actual app.
I have managed to ...
0
votes
1answer
93 views
Legacy MFC cross-thread exception in CSimpleString
I have an old legecy ATL/MFC application with two threads, the main Window-Thread and a Render-Thread. My problem is I have random, access-violation errors related to a CSimpleString; i.e. access ...
3
votes
2answers
142 views
Multithreading and MFC
I am writing a multithreaded app. On the main thread is the main window which is a modeless dialog box. When the user clicks on the start button, it will create a new thread that does some stuff for a ...
0
votes
0answers
86 views
MFC - putting a modal dialog in front of a window belonging to a different thread
I have this modal dialog, it belongs to one project, and appears in front of the main window of that project's main thread
I have a floating window belonging to a different project (that project mus ...
0
votes
3answers
224 views
Creating a thread of a nonstatic member function? [duplicate]
If I have a member function. . .
MyClass::MyFunction()
{
while(1)
{
//blah blah blah
}
}
. . . and I try to create a thread of this function . . .
CreateThread(Null, 0, ...
1
vote
1answer
259 views
Pass an MFC control to a thread or pass an handle?
I've been reading somewhere that it is safer to pass an MFC ui control to a thread as an handle rather than to pass a pointer to the control.
Option 1 - pass a pointer to static text:
TestDialog ...
1
vote
2answers
66 views
HowTo: Inform application that database table row is updated?
I am in process of developing an MFC based Windows based application, using PostgreSQL which would perform
Fetches information from the UI
Performs some logic and store related information to the ...
0
votes
1answer
56 views
CUDA help in implementing kernel function with 320*240 image to process
i am pretty new to cuda and am trying to read a frame in cuda through this code but i am getting an overthrow error and getting a black output ..
here is my code..
BYTE *imageBuf = 0;
BYTE *maBuf = ...
0
votes
0answers
112 views
How to shutdown DLL with user-interface threads?
I have made a DLL with a function that opens a non-modal window.
class CMainFrame : public CFrameWnd
{
protected:
CMainFrame() {}
DECLARE_DYNCREATE(CMainFrame)
public:
virtual void ...
0
votes
1answer
169 views
CAsyncSocket and thread / process safety
I have some legacy code using a CAsyncSocket derived class. This class overrides OnReceive and it also has a wrapper around SendTo. The code is in a dll which multiple applications will be using on ...
0
votes
3answers
68 views
A windows API program on random ractangles…I don't know how the variable get its value
<pre>
#include<Windows.h>
#include<process.h>
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
HWND hwnd;
int clientx,clienty;
int WINAPI ...
0
votes
1answer
113 views
Thread loading images faster until they disapear in Studio
I am pretty new to visual studio. I am trying to load images and display it on a UI with two buttons start and stop. Every time I complete my count of total frames the next time I press start my ...
0
votes
1answer
291 views
WaitForMultipleObjects with an array of CWinThread pointers
I have a loop generating threads via AfxBeginThread, which stores the CWinThread pointers in an array. In each iteration, I check the thread is not null and store the thread's handle in another array.
...
0
votes
0answers
74 views
parallelisation of an excel automation
I am trying to speed up an Excel Automation in MFC by using threads.
80% of the CPU is using by the function "ChartWizard".
I use pthread and I call "ChartWizard" on a static function and all the ...
0
votes
2answers
159 views
Multithreaded object destruction on closing MFC dialog
So, this is the problem:
I have written a wrapper class exposing simplified API for the libtorrent c++ library. It (the wrapper) has a stack-allocated member, which is libtorrent's main session ...
0
votes
2answers
299 views
VNC viewer implementation
Our team is implementing a VNC viewer (=VNC client) on Windows. The protocol (called RFB) is stateful, meaning that the viewer has to read 1 byte, see what it is, then read either 3 or 10 bytes more, ...
1
vote
3answers
141 views
Lock Processing without a CCriticalSection or CMutex
Here's the scenario. I have multiple processor threads reading a value. Only 1 thread is allowed to ever write to the value. Due to the setup, nobody can read while a write is in progress, ...
2
votes
1answer
2k views
PostMessage from WorkerThread to Main Window in MFC
I have a MFC application, which has a worker thread, what I want to do is to post message from worker thread to the Main GUI thread to update some status messages on GUI. What I have done so far is ...
1
vote
1answer
105 views
C++ MFC Naming threads so Procmon can see them
Is it possible in MFC to give threads string names, so that other apps such as procmon, will dump out a more useful message, instead of just ThreadID #### exited, etc.
Also I'm using VC6 at the ...
0
votes
2answers
201 views
MFC dialog frozen
I need help how to unfreeze my dialog box. I'm using MFC and I have an infinite loop I want to execute when a button is pressed. However, the dialog box freezes when the infinite loop starts. Now I ...
1
vote
1answer
282 views
MFC dialog freezes when it looses focus
I am new to MFC so please bear with me. I have a Dialog that is displayed in full screen on a dual screen monitor. This dialog is instantiated inside another non-modal dialog (when a button is ...
0
votes
2answers
706 views
MFC - Posting data via PostMessage to the GUI
I Read a few threads on how passing data from Workerthread to Main window(Dialog), but I still don't understand and still need help.
My workerthread should process some calculations and display the ...
1
vote
2answers
2k views
MFC C++ put a 1000 MS sleep on main thread?
Simple enough question I am sure.
Using MFC C++, what header do I need to include and what functions do I need to call to place a 1000 ms sleep on the main thread.
In C# it is easy as ...
0
votes
1answer
535 views
no instance of overloaded function “AfxBeginThread” matches the argument list
am trying to make a worker thread using MFC so here is the codes:
struct ThreadParam
{
HWND mDlg; // Note: A handle.
};
UINT TestMFCThread::Test( LPVOID pParam ){
//do work!
}
void ...
0
votes
1answer
98 views
MFC/3rd party multithreading hang
I'm currently working on a program using MFC. The current third party function starts a thread after an action has been completed using MFC (ie. Checking a checkbox, which starts a MFC thread I ...
0
votes
2answers
207 views
MFC Threading Issue - The program doesnt end after all threads are completed
I have created a Single Dialog application which basically does a series of complex calculation. The application was first created as a Win32 console application and later I decided to add a ...
5
votes
3answers
1k views
Is CWnd::GetSafeHwnd() and CWnd::m_hWnd ThreadSafe?
I am facing numerous crashes on a application which is heavily multi-threaded.
Reading these MSDN page, technical note and this article on TLS, I have understood that CWnd objects are mapped to HWND ...
0
votes
3answers
138 views
Is there any way to have a thread for a view in MFC?
I know MFC is not a popular subject here but I am looking for an advice for the platform anyway.
I have a multithreaded MFC application which is also using onIdle a lot and we want to add a plotting ...
1
vote
1answer
320 views
Thread safety and AfxMessageBox
Is the AfxMessageBox function thread safe?
I see the MFC code behind AfxMessageBox invoking such as AfxGetMainWnd()->GetSafeHwnd() and CCmdTarget::GetRoundingFrame_()->GetSafeHwnd(), and I'm ...
0
votes
1answer
281 views
Implementing Multithreading in MFC to update an internal dictionary accessible by outside functions
I'm working with C++ and MFC to create an application that will pull information from Bloomberg in real time. Bloomberg API has a subscription class that will "subscribe" to updates from Bloomberg and ...
1
vote
1answer
183 views
Load DLL blocking UI thread
In my application certain dll's are only required for specific operations that will not occur for the 99.9% of usage operation. So to save on load time and memory these are loaded dynamically loaded ...
1
vote
1answer
543 views
How CWinThread::OnIdle is used?
As you know, OnIdle can be specified in MFC UI thread. For details, you can read this reference http://msdn.microsoft.com/en-us/library/1sa2f19f.aspx. But I am not sure how it can be used in practice. ...
0
votes
1answer
476 views
Any sample real-time application using MFC threads?
I am trying to build a MFC windows application getting input from several devices and showing an analysis result on the monitor in real-time. Of course, I have to use threads (both ui and worker) a ...
4
votes
1answer
133 views
Is there much overhead with AfxBeginThread?
How much overhead is there when AfxBeginThread does it's thing?
I have an embarrassingly parallel project, and I want to launch batches of 4-15 threads with AfxBeginThread, wait for each to finish ...
0
votes
1answer
2k views
Progress bar in MFC UI Thread is blocked
For a MFC project at work, I have to create a progress bar dialog (CProgressCtrl) in a separate UI thread (CWinThread). I took the example from the site ...
0
votes
1answer
313 views
CreateFile in separate thread returns INVALID_HANDLE_VALUE in MFC app
I have an MFC App which fires up a separate thread for downloading some files via cURL. At the start it downloads a text file with file sizes and last write times. Then it checks the files on disk and ...
0
votes
1answer
160 views
AfxBeginThread() + Cstring = garbage content
Please help me understand what is wrong with my code.
Header File
typedef void (*pStatusCallback)(UINT code, const CString& message);
class CComunicator
{
private:
CUT_WSClient _client;
...
4
votes
2answers
259 views
Use boost::mutex with MFC threads (AfxBeginThread)?
Can you use the boost::mutex libraries to protect a critical section of code when you are not using boost::thread but instead using the MFC threading capability via AfxBeginThread? If so, are there ...
1
vote
4answers
1k views
MFC multithreading: AfxBeginThread vs Boost.Thread?
I have an MFC application to which I want to incorporate multi-threading. Originally I was thinking of using Boost.Thread because of the general ease of development with boost. However, I'm ...
1
vote
1answer
212 views
How do you call CMFCRibbonProgressBar methods from a different thread?
I have a simple CMFCRibbonProgressBar and a thread that calls SetPos(value, TRUE) on it when a lengthy operation progresses.
The problem is that in debug mode it asserts in wincore.cpp with this:
...
1
vote
2answers
136 views
Multi threading for my MFC C++ .dll
Currently I am accessing my MFC C++ dll using my python script and everything works well so far. My next step is to continuously access my .dll and carry on various operations with it simultaneously ...
0
votes
1answer
303 views
Calling abstract function on boost thread, does not interrupt at interruption_point
I have created an abstract base class to allow for multiple implementation of a task, which can be called generically via MFC dialog. This task needs to be able to be interrupted if the user clicks ...
1
vote
3answers
1k views
How to access an MFC control from a worker thread?
What is the best way to access an MFC control from a worker thread?
What is the MFC idiomatic way of accessing a control?
I read here http://www.flounder.com/workerthreads.htm the following approach ...
0
votes
1answer
560 views
Thread scheduling issue with MFC and AfxBeginThread
I'm creating a worker thread in MFC with AfxBeginThread, but the thread is not getting scheduled. Here's the code:
CWinThread* worker = AfxBeginThread(initialUpdateWorkerThread, this);
DWORD ...
2
votes
2answers
453 views
How do you get the current count from CSemaphore?
I am trying to debug a multi-threaded program that uses CSemaphore to limit the size of a buffer.
How do you get the current value of the semaphore counter from this class? It doesn't seem to be ...



