Re: [ADVANCED-DOTNET] Problem with Sharepoint and Authentication.

2008-08-13 Thread R. Rogers
Hey Dave, The following information is not based on my knowledge, but another fellow I know who has some good experience with Sharepoint. What's the value of serveruri.AbsoluteUri in the code sample? It needs to be the address to the SPWeb being referencing concatenated with "/_vti_bin/lists.asmx

Re: [ADVANCED-DOTNET] Invitation to connect on LinkedIn

2008-07-11 Thread R. Rogers
I applaud Ryan Gorski, I personally think that the web is too anonymous, and instead of bringing people closer together, it is instead a medium that is making it easier to have lots and lots of weak connections between people. I prefer strong connections, but admittedly, weak connections do serve

Re: [ADVANCED-DOTNET] Write out the alphabet

2008-03-17 Thread R. Rogers
Mon, Mar 17, 2008 at 9:48 PM, R. Rogers <[EMAIL PROTECTED]> wrote: > The Char datatype isn't as wieldly as I thought it would be in C#. > How can I write some simple code similar to this: > > for (char Letter = 'a'; Letter <= 'z'; Letter++) > Deb

[ADVANCED-DOTNET] Write out the alphabet

2008-03-17 Thread R. Rogers
The Char datatype isn't as wieldly as I thought it would be in C#. How can I write some simple code similar to this: for (char Letter = 'a'; Letter <= 'z'; Letter++) Debug.Write(Letter.ToString()); It's the part of incrementing the char, that I can't figure out. Any pointers are much appreciat

Re: [ADVANCED-DOTNET] Trigger and multiple values in the inserted table

2008-02-12 Thread R. Rogers
Hi Paul, You could try something like this: Select @RoleType = Min(CallTreeContactRoleId) From CallTreeContacts CTC Join Inserted I On CTC.Uid = I.UID A few points I have to make: - You may get multiple role types - without knowing more about your trigger, I cannot help you. - If you can e