Skip to main content

Welcome



Welcome to Simply Learn Technologies. Here you can find learning materials, Tips & Tricks for MS Office, Other Office Related Tasks, Computer Programming C#, ASP.Net, SQL Server, Crystal Report and Mobile Application Development.



You can visit Post Menu to find the latest posts.  Keep sharing the knowledge and Happy Learning.

Comments

Popular posts from this blog

Getting Highest Entered Records from the Table (SQL Server)

If you want to get the highest entered records (transactions) in the current month you may write the query below select top 1 CourseID,count(*) as forms from dataform where month(DataFormDate)=MONTH(GETDATE()) group by CourseID order by forms desc when you want more than one records change the top 1 to the desired numbered.

Convert Array to Comma Seprated String

If you have an array of Integers and want to convert it into comma separated string. here is the following code //integer Array int[] arr = new int[5] {1,2,3,4,5}; string arrvalue= string.Join(",", arr); results will be arrvalue= "1,2,3,4,5"