Question : How do you create new default domain distribution lists?

I am trying to setup another global address list but can't find out how to do it.

On the exchange server we have one main global address list which containts users and groups using two different domains:
[email protected]
[email protected]

How do i create another global address list that only contains the users and groups from the first domain, and then a 3rd Global Address list that contains only the users and groups from the 2nd domain name?

I tried to just create another global address list and use the filter available to populate it, first with the users field must be = to the name of the 1st domain, which brings in the users but not the groups.  If i try and add a second filter to bring in the groups as well it doesn't seem to display anything.

If i then delete both filters and just have a filter for groups it works fine, but doesn't bring in the users

Any ideas?

Answer : How do you create new default domain distribution lists?

It would depend on what you are binding to, for a text box you could use Bindingsoucre, have a look here it is a great example.... http://www.java2s.com/Tutorial/CSharp/0460__GUI-Windows-Forms/DataEntryWithBinding.htm

for stuff like a dataview you can bind by the datasource property,  look at my code example.

1:
2:
3:
4:
5:
DataView dv = DropDowns.GetDropDownItems(dropdownType, inspectionType, companyId);
            dropdown.DisplayMember = "DropdownItem_DisplayName";//display name (dataview column name)
            dropdown.ValueMember = "DropdownItem_Name";//value behind display name (dataview column name)
            dropdown.DataSource = dv;
            dv.Sort = "DropdownItem_DisplayName";
Random Solutions  
 
programming4us programming4us