Skip to main content

Projects

The followings Projects are Designed and Developed by Me and my team

Web Applications Development

  • SMS Sending System
  • Computer Based Assessment (Entry Test System)
  • Staff Attendance Management
  • Campus Management System(Student Management, Class Management, Scheduling)
  • Online Examination System
  • Library Management System

Web Sites

  • azeemhussain.com
  • qasimbinsaadat.com
  • zohaibalimarketing.com
  • tsa.edu.pk

Desktop Applications

  • Data Migration From Peachtree to SQL Server
  • SMS Sending From USB Modem
  • Data Migration From One Campus to Another Using Web Service
  • Bar Code Machine Integeration
  • Data Migration from Bio metric (Facial  Recognition / Finger Print scanner) Machines to SQL Server
  • Employee Card Printing

PABX (VOIP )

  • Installation and Maintenance of Asterisk based VOIP server for internal / external Callings (unlimited extensions, unlimited IVR, Customer call plans)

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"