Click here to Skip to main content
15,905,913 members

Articles by Anish M (Tip/Tricks: 2)

Tip/Tricks: 2

RSS Feed

Average article rating:

No articles have been posted.

Average blogs rating:

No blogs have been submitted.

Average tips rating: 5.00

Programming Languages
SQL
18 Nov 2009   Updated: 19 Nov 2009   Rating: 5.00/5    Votes: 2   Popularity: 1.51
Licence: CPOL    Views: 13,820     Bookmarked: 6   Downloaded: 0
Please Sign up or sign in to vote.
CREATE PROC GetChildNodes (@ID uniqueidentifier)ASBEGINWITH PermissionList (PermissionID, PermissionName, Level)AS(SELECT ap.PermissionID, ap.PermissionName, 0 AS LevelFROM Permission AS apWHERE PermissionID = @IDUNION ALLSELECT ap.PermissionID, ap.PermissionName, Level + 1FROM
Silverlight
18 Nov 2009   Updated: 18 Nov 2009   Rating: 5.00/5    Votes: 1   Popularity: 0.00
Licence: CPOL    Views: 15,221     Bookmarked: 0   Downloaded: 0
Please Sign up or sign in to vote.
In IE8, it seems that the Marquee tag isn't supported anymore. Need for a Marquee replacement got me into my first Silverlight tryout. Please note, this is done as a quick alternative to the Marquees that didn't scroll in IE8, with something non Javascript. I had to do it since I didn't find anythin

Average reference rating:

No reference articles have been posted.

Average project rating:

No projects have been posted.
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.