Quarter Pie Interactive on ‘Custom Programming’


Custom Programmed Website, Bespoke Programming, Bespoke Development and Features

Helios Developers

Helios Developers

Website Design and Programming for Helios Developers Helios Developers is a leading real estate company with their office centrally located in Crown Plaza, Faridabad. The assignment included a complete redesign of their website which besides the general information about the company, also has a Custom Programmed Content Management System which can be used to manage All the Properties displayed on the website with features and options and payment plans available The Section for publishing available openings with the company News Section so that they can publish important real estate news on their website as it happens Options to change prices or payment plans or pretty ...

» continue reading

Copy Table and Data Across SQL Server Tables

One of my recent projects needed some tables to be moved to a new database from another existing database. The only way I knew its possible is using the Import/Export wizard from the days of SQL Server 2007. Now this server has SQL Server Express Edition which comes with SQL Server Management Studio Express so I had to do it by queries as there was no Wizard for help. The SQL I found to move MS SQL database tables across databases on same server worked and it was as below SELECT * INTO destinationdbname.dbo.tblUsers FROM sourcedbnamecrm.dbo.tblUsers This worked but however it did not ...

» continue reading

Custom CRM Solution

Custom CRM Solution

ICO Commercial needed a CRM solution to keep their agents and managers updated about every action that happens in the leads they get for different types of services they provide. We built this system very quickly and cost-effectively based on ASP and SQL Server which has login for administrator, managers and agents and they can post update for any action that happens on a lead and everyone concerned with that particular customer is immediately updated. There are various CRM related reports available in the management area.

» continue reading

Excellent Service

Excellent Service

Logistics Business in India Excellent Service was looking for a brand new website and starting a new advertisement campaign when they contacted us. We had an in-person meeting at their office in Budh Vihar to understand their actual needs. They wanted a new full of life website with their existing logo and the idea was to get it to work. In short, they wanted each page to tell about their services in visually appealing way. As for functionality, they wanted all customers to be able to track their shipment status by putting in a tracking number. That is exactly what we did.... ...

» continue reading

HOWTO: Round Off Numbers to Required Decimal Places with JavaScript

This is something easy but I see you are here because you need to know how to do this. So here is the code that can help you with Rounding Off Numbers using Javascript. Nice and Easy!! <script language="javascript"> function formatNumber(myNum, numOfDec) { var decimal = 1 for(i=1; i<=numOfDec;i++) decimal = decimal *10 var myFormattedNum = (Math.round(myNum * decimal)/decimal).toFixed(numOfDec) return(myFormattedNum) } </script> To call this function, use Alert(formatNumber(23244.4325, 2))

» continue reading