07-26-05 12:56 PM
Hi Stefan,
Thanks for that, I did manage to get the Enumerator way to work as well.
System.Collections.IEnumerator iEnumerator = events.Postings.GetEnumerator()
;
bool nextPosting = iEnumerator.MoveNext();
Posting posting = (Posting)iEnumerator.Current;
"Stefan [MSFT]" wrote:
> Hi Jim,
>
> then use the following:
>
> for (int i=0; i<4; i++)
> {
> ...Channel.Postings[i]...
> }
>
> Cheers,
> Stefan
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
> New to MCMS?
> Check out this book: Building Websites Using MCMS: [url]http://tinyurl.com/6zj44[/url
]
> ----------------------
>
>
> "Jim Reynolds" <JimReynolds@discussions.microsoft.com> wrote in message
> news:F1EFE155-FF5B-42E9-AD59-4D98462D41C9@microsoft.com...
>
>
>
[ Post a follow-up to this message ]
|