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

C#

 
GeneralRe: writing a development environment Pin
Dave Kreskowiak10-Jun-09 17:16
mveDave Kreskowiak10-Jun-09 17:16 
AnswerRe: writing a development environment Pin
Pete O'Hanlon10-Jun-09 23:25
mvePete O'Hanlon10-Jun-09 23:25 
Questionapp config Pin
Cyrus-IRA10-Jun-09 13:43
Cyrus-IRA10-Jun-09 13:43 
AnswerRe: app config Pin
Leonscape10-Jun-09 14:50
Leonscape10-Jun-09 14:50 
GeneralRe: app config Pin
Cyrus-IRA10-Jun-09 15:56
Cyrus-IRA10-Jun-09 15:56 
QuestionFlickering. Pin
Baeltazor10-Jun-09 12:57
Baeltazor10-Jun-09 12:57 
QuestionActive directory Question Pin
caiena10-Jun-09 11:12
caiena10-Jun-09 11:12 
AnswerRe: Active directory Question Pin
Leonscape10-Jun-09 11:29
Leonscape10-Jun-09 11:29 
AnswerRe: Active directory Question Pin
saurabh sahay10-Jun-09 12:12
saurabh sahay10-Jun-09 12:12 
GeneralRe: Active directory Question Pin
Dave Kreskowiak10-Jun-09 17:14
mveDave Kreskowiak10-Jun-09 17:14 
QuestionType declaration ? Pin
daveyerwin10-Jun-09 9:55
daveyerwin10-Jun-09 9:55 
AnswerRe: Type declaration ? Pin
0x3c010-Jun-09 10:12
0x3c010-Jun-09 10:12 
AnswerRe: Type declaration ? Pin
Leonscape10-Jun-09 11:20
Leonscape10-Jun-09 11:20 
AnswerRe: Type declaration ? Pin
Luc Pattyn10-Jun-09 11:20
sitebuilderLuc Pattyn10-Jun-09 11:20 
QuestionC# need some direction Pin
marksmit10-Jun-09 8:48
marksmit10-Jun-09 8:48 
AnswerRe: C# need some direction Pin
Henry Minute10-Jun-09 8:58
Henry Minute10-Jun-09 8:58 
AnswerRe: C# need some direction Pin
Christian Graus10-Jun-09 9:04
protectorChristian Graus10-Jun-09 9:04 
AnswerRe: C# need some direction Pin
sgenie6810-Jun-09 17:16
sgenie6810-Jun-09 17:16 
GeneralThanks guys! Pin
marksmit11-Jun-09 4:53
marksmit11-Jun-09 4:53 
QuestionThoroughly confused now :) Pin
marksmit11-Jun-09 5:49
marksmit11-Jun-09 5:49 
Question[Message Deleted] Pin
hkjghkj110-Jun-09 8:28
hkjghkj110-Jun-09 8:28 
AnswerRe: parallel sounds Pin
Christian Graus10-Jun-09 8:44
protectorChristian Graus10-Jun-09 8:44 
Questionif statement troubles Pin
partialdata10-Jun-09 6:54
partialdata10-Jun-09 6:54 
my code is as follow. I need to fig out a way to handle if results dosnt find any thing sshow yes something was found or no users had been found at this time. Iv tried to fig this out but im unable to do so. Thank you for your time.

DateTime dt = DateTime.Today;
DateTime less5dt = dt.AddDays(-5);
This.cmb1.Items.Clear();

PrincipalSearchResult<UserPrincipal> results =
UserPrincipal.FindByLockoutTime(
     adPrincipalContext,
         dt,
          MatchType.GreaterThanOrEquals);

foreach (Principal result in results)
{
    cmb1.Items.Add(result.name);
}

GeneralRe: if statement troubles Pin
harold aptroot10-Jun-09 7:14
harold aptroot10-Jun-09 7:14 
GeneralRe: if statement troubles Pin
partialdata10-Jun-09 8:04
partialdata10-Jun-09 8:04 

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.