Click here to Skip to main content
15,918,889 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Addition of vista look (title bar, border) in xp for win forms Pin
o m n i17-Dec-09 9:41
o m n i17-Dec-09 9:41 
GeneralRe: Addition of vista look (title bar, border) in xp for win forms Pin
Radiit17-Dec-09 16:31
Radiit17-Dec-09 16:31 
QuestionNeed help regarding an Application using C# and Postgre Sql Pin
arj_agt11-Dec-09 0:04
arj_agt11-Dec-09 0:04 
AnswerRe: Need help regarding an Application using C# and Postgre Sql Pin
Eddy Vluggen11-Dec-09 3:13
professionalEddy Vluggen11-Dec-09 3:13 
GeneralRe: Need help regarding an Application using C# and Postgre Sql Pin
arj_agt11-Dec-09 18:13
arj_agt11-Dec-09 18:13 
GeneralRe: Need help regarding an Application using C# and Postgre Sql Pin
Richard MacCutchan12-Dec-09 2:08
mveRichard MacCutchan12-Dec-09 2:08 
GeneralRe: Need help regarding an Application using C# and Postgre Sql Pin
Eddy Vluggen12-Dec-09 4:09
professionalEddy Vluggen12-Dec-09 4:09 
QuestionBasic Problems with Multithreading Pin
pascal lisewski10-Dec-09 9:02
pascal lisewski10-Dec-09 9:02 
First: Its a program for university that schould show Multithreading with Windows Forms.

We use: Microsoft Visual Studio 2008
C++
Windows Forms

It should be a litte example how to create a thread and to change textbox text or something

Here my thoughts

using namespace System::Threading //including the namespace fpr threading

public: delegate void UpdateDelegate(); //writing a delegate

//Button to start the thread
private: System::Void cmdStart_Click(System::Object^ sender, System::EventArgs^ e)
{
Thread^ meinThread = gcnew Thread(gcnew ThreadStart(test));
}

public: void test()
{
Invoke(gcnew UpdateDelegate(update));
}

public: void update()
{
txtThread->Text = "thread gestartet";
}


Visual Studio shows me 2 messages

"A delegator expects 2 arguments"

what am i doing wrong?
can u give me a basic checklist how to start a thread thats changes a textbox or something like that?
Please need help .)
AnswerRe: Basic Problems with Multithreading Pin
Luc Pattyn10-Dec-09 9:26
sitebuilderLuc Pattyn10-Dec-09 9:26 
QuestionAccessing parent form from child from Pin
BDJones9-Dec-09 12:20
BDJones9-Dec-09 12:20 
AnswerRe: Accessing parent form from child from Pin
dan!sh 9-Dec-09 17:16
professional dan!sh 9-Dec-09 17:16 
QuestionRe: Accessing parent form from child from Pin
BDJones10-Dec-09 10:28
BDJones10-Dec-09 10:28 
AnswerRe: Accessing parent form from child from Pin
dan!sh 11-Dec-09 2:21
professional dan!sh 11-Dec-09 2:21 
QuestionRe: Accessing parent form from child from Pin
BDJones14-Dec-09 5:54
BDJones14-Dec-09 5:54 
QuestionProject Pin
Ramkumar_S8-Dec-09 22:03
Ramkumar_S8-Dec-09 22:03 
AnswerRe: Project Pin
Richard MacCutchan8-Dec-09 22:40
mveRichard MacCutchan8-Dec-09 22:40 
AnswerRe: Project Pin
Eddy Vluggen20-Dec-09 0:19
professionalEddy Vluggen20-Dec-09 0:19 
QuestionHelp provider+win Form Pin
Ramkumar_S8-Dec-09 15:51
Ramkumar_S8-Dec-09 15:51 
AnswerRe: Help provider+win Form Pin
Richard Blythe8-Dec-09 18:01
Richard Blythe8-Dec-09 18:01 
AnswerRe: Help provider+win Form Pin
Richard MacCutchan9-Dec-09 3:51
mveRichard MacCutchan9-Dec-09 3:51 
QuestionStructuring Windows Forms apps... [modified] Pin
1.21 Gigawatts8-Dec-09 2:25
1.21 Gigawatts8-Dec-09 2:25 
AnswerRe: Structuring Windows Forms apps... Pin
Luc Pattyn8-Dec-09 5:15
sitebuilderLuc Pattyn8-Dec-09 5:15 
GeneralRe: Structuring Windows Forms apps... Pin
1.21 Gigawatts8-Dec-09 5:29
1.21 Gigawatts8-Dec-09 5:29 
GeneralRe: Structuring Windows Forms apps... Pin
Luc Pattyn8-Dec-09 5:45
sitebuilderLuc Pattyn8-Dec-09 5:45 
GeneralRe: Structuring Windows Forms apps... Pin
Roger Wright8-Dec-09 18:46
professionalRoger Wright8-Dec-09 18:46 

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.