Click here to Skip to main content
15,894,896 members
Articles / Programming Languages / C#

Using the Windows 2000/XP Object Selection Dialog

Rate me:
Please Sign up or sign in to vote.
4.92/5 (29 votes)
21 Nov 2005CPOL14 min read 251.4K   4.5K   57  
This article describes how to use the "Select Users or Groups" system dialog.
/*
	$Workfile:$
	$Header:$

	Copyright � 1997-2003 MDS SCIEX�.
	All rights reserved.

	@doc
	@module DSOP_Filter.h - Class defn for the filter dialog |

	

	Revision History:
	$Log$ 
*/
#if !defined(AFX_DSOP_FILTER_H__5351795B_DF96_435A_AB5B_B5DB08DFBEF9__INCLUDED_)
#define AFX_DSOP_FILTER_H__5351795B_DF96_435A_AB5B_B5DB08DFBEF9__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CDSOP_Filter : public CDialog
{
public:
	DWORD m_flags;
	CDSOP_Filter(CWnd* pParent = NULL);  

	//{{AFX_DATA(CDSOP_Filter)
	enum { IDD = IDD_DSOP_FILTER };
	//}}AFX_DATA

	//{{AFX_VIRTUAL(CDSOP_Filter)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);   
	//}}AFX_VIRTUAL

protected:

	//{{AFX_MSG(CDSOP_Filter)
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif // !defined(AFX_DSOP_FILTER_H__5351795B_DF96_435A_AB5B_B5DB08DFBEF9__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) AB SCIEX
Canada Canada
I was born and grew up in Northern Germany grew up in Quebec in a French Language environment. I finished High School in Fergus, Ontario. After a 4 year training as a Pipe Organ Builder in Germany, I returned to Canada to get a B.Sc. in Computer Science. I'm currently working for a company called AB SCIEX working on Mass Spectrometer Software, am married, and have three often wonderful children. What you believe in matters - I am a follower of Jesus Christ - we attend a German-Lutheran congregation in downtown Toronto.

Comments and Discussions