Click here to Skip to main content
15,896,526 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralCListCtrl checkbox problem Pin
followait2-Mar-08 23:26
followait2-Mar-08 23:26 
GeneralAccessing text from the client area of a win32 window other than EditControl type windows Pin
glyfyx2-Mar-08 23:21
glyfyx2-Mar-08 23:21 
QuestionRe: Accessing text from the client area of a win32 window other than EditControl type windows Pin
David Crow3-Mar-08 3:10
David Crow3-Mar-08 3:10 
GeneralRe: Accessing text from the client area of a win32 window other than EditControl type windows Pin
glyfyx6-Mar-08 10:44
glyfyx6-Mar-08 10:44 
GeneralRe: Accessing text from the client area of a win32 window other than EditControl type windows Pin
Mark Salsbery3-Mar-08 6:34
Mark Salsbery3-Mar-08 6:34 
GeneralRe: Accessing text from the client area of a win32 window other than EditControl type windows Pin
glyfyx6-Mar-08 10:41
glyfyx6-Mar-08 10:41 
GeneralRe: Accessing text from the client area of a win32 window other than EditControl type windows Pin
Mark Salsbery6-Mar-08 11:55
Mark Salsbery6-Mar-08 11:55 
GeneralA simple threading problem.. Pin
ptr2void2-Mar-08 22:44
ptr2void2-Mar-08 22:44 
I am new to threading concepts in C++/CLI.

I have a button and a label in the form and here is some code for that:

private: System::Void button1_Click(System:bject^ sender, System::EventArgs^ e) {
Form1^ f = gcnew Form1;
Thread^ myThread = gcnew Thread(gcnew ThreadStart(f, &Form1::test));
myThread->Start();
}


void test()
{
this->label1->Text = "Hi";
this->label1->Update();
}


But this code dosent update the Label.. WHY???
I have also used [MTAThreadAttribute] in my main file as:

[MTAThreadAttribute]
int main(array<System:tring ^> ^args)
{
// Enabling Windows XP visual effects before any controls are created
Application::EnableVisualStyles();
Application:etCompatibleTextRenderingDefault(false);

// Create the main window and run it
Application::Run(gcnew Form1());
return 0;
}


Also how to call threads in other classes??

Somebody please help..
GeneralRe: A simple threading problem.. Pin
CPallini3-Mar-08 0:10
mveCPallini3-Mar-08 0:10 
GeneralRe: A simple threading problem.. Pin
Mark Salsbery3-Mar-08 6:49
Mark Salsbery3-Mar-08 6:49 
Generalloop control Pin
rp_suman2-Mar-08 21:49
rp_suman2-Mar-08 21:49 
GeneralRe: loop control Pin
Cedric Moonen2-Mar-08 21:52
Cedric Moonen2-Mar-08 21:52 
GeneralRe: loop control Pin
rp_suman3-Mar-08 0:41
rp_suman3-Mar-08 0:41 
GeneralRe: loop control Pin
GauranG Shah2-Mar-08 23:24
GauranG Shah2-Mar-08 23:24 
GeneralRe: loop control Pin
rp_suman3-Mar-08 0:51
rp_suman3-Mar-08 0:51 
GeneralRe: loop control Pin
BadKarma3-Mar-08 1:54
BadKarma3-Mar-08 1:54 
GeneralRe: loop control Pin
rp_suman3-Mar-08 2:27
rp_suman3-Mar-08 2:27 
GeneralSkipws Pin
George_George2-Mar-08 21:28
George_George2-Mar-08 21:28 
QuestionRe: Skipws Pin
Maximilien3-Mar-08 0:45
Maximilien3-Mar-08 0:45 
GeneralRe: Skipws Pin
George_George3-Mar-08 0:55
George_George3-Mar-08 0:55 
Questiondependent DLL intresting? Pin
Ravinder Are2-Mar-08 20:03
Ravinder Are2-Mar-08 20:03 
AnswerRe: dependent DLL intresting? Pin
Naveen2-Mar-08 21:15
Naveen2-Mar-08 21:15 
QuestionHow to convert BMP to multipage TIFF file Pin
VmTHiru2-Mar-08 19:46
VmTHiru2-Mar-08 19:46 
GeneralRe: How to convert BMP to multipage TIFF file Pin
ThatsAlok2-Mar-08 20:28
ThatsAlok2-Mar-08 20:28 
GeneralRe: How to convert BMP to multipage TIFF file Pin
Mark Salsbery3-Mar-08 6:57
Mark Salsbery3-Mar-08 6:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.