Click here to Skip to main content
15,907,183 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to access multiple controls thread safe in Windows Forms Pin
Luc Pattyn3-Oct-10 17:48
sitebuilderLuc Pattyn3-Oct-10 17:48 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
poda3-Oct-10 21:08
poda3-Oct-10 21:08 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
Luc Pattyn4-Oct-10 1:32
sitebuilderLuc Pattyn4-Oct-10 1:32 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
poda4-Oct-10 5:40
poda4-Oct-10 5:40 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
Luc Pattyn4-Oct-10 5:55
sitebuilderLuc Pattyn4-Oct-10 5:55 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
#realJSOP4-Oct-10 2:03
professional#realJSOP4-Oct-10 2:03 
GeneralRe: How to access multiple controls thread safe in Windows Forms Pin
poda4-Oct-10 5:42
poda4-Oct-10 5:42 
QuestionMessage Filter Pin
electriac3-Oct-10 11:37
electriac3-Oct-10 11:37 
I do not understand why this will not compile. I have used it in other programs but I must be missing something here.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace mfwmp
{
    public partial class Form1 : Form, IMessageFilter
    {
        public Form1()
        {
            InitializeComponent();
            Application.AddMessageFilter(this);
        }
    }
}
//Error	1	'mfwmp.Form1' does not implement interface member //'System.Windows.Forms.IMessageFilter.PreFilterMessage(ref System.Windows.Forms.Message)'	

AnswerRe: Message Filter Pin
Henry Minute3-Oct-10 11:49
Henry Minute3-Oct-10 11:49 
AnswerRe: Message Filter Pin
Dave Kreskowiak3-Oct-10 11:58
mveDave Kreskowiak3-Oct-10 11:58 
GeneralRe: Message Filter Pin
electriac3-Oct-10 12:03
electriac3-Oct-10 12:03 
AnswerRe: Message Filter Pin
Luc Pattyn3-Oct-10 12:03
sitebuilderLuc Pattyn3-Oct-10 12:03 
QuestionYield break Pin
Brij3-Oct-10 8:12
mentorBrij3-Oct-10 8:12 
AnswerRe: Yield break Pin
harold aptroot3-Oct-10 8:48
harold aptroot3-Oct-10 8:48 
AnswerRe: Yield break Pin
Henry Minute3-Oct-10 8:56
Henry Minute3-Oct-10 8:56 
AnswerRe: Yield break Pin
PIEBALDconsult3-Oct-10 8:58
mvePIEBALDconsult3-Oct-10 8:58 
GeneralRe: Yield break Pin
Brij3-Oct-10 9:15
mentorBrij3-Oct-10 9:15 
AnswerRe: Yield break Pin
Pete O'Hanlon3-Oct-10 9:21
mvePete O'Hanlon3-Oct-10 9:21 
GeneralRe: Yield break Pin
Brij3-Oct-10 9:28
mentorBrij3-Oct-10 9:28 
GeneralRe: Yield break Pin
Pete O'Hanlon3-Oct-10 9:42
mvePete O'Hanlon3-Oct-10 9:42 
GeneralRe: Yield break Pin
Brij3-Oct-10 9:56
mentorBrij3-Oct-10 9:56 
GeneralRe: Yield break Pin
Luc Pattyn3-Oct-10 10:16
sitebuilderLuc Pattyn3-Oct-10 10:16 
GeneralRe: Yield break Pin
Pete O'Hanlon3-Oct-10 10:56
mvePete O'Hanlon3-Oct-10 10:56 
GeneralRe: Yield break Pin
Luc Pattyn3-Oct-10 11:04
sitebuilderLuc Pattyn3-Oct-10 11:04 
GeneralRe: Yield break Pin
Pete O'Hanlon3-Oct-10 11:13
mvePete O'Hanlon3-Oct-10 11:13 

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.