LB Booster
General >> Showcase >> Cabinet Planner
http://lbb.conforums.com/index.cgi?board=showcase&action=display&num=1394465879

Cabinet Planner
Post by Richard Russell on Mar 10th, 2014, 3:37pm

Cabinet Planner, by Robert McAllister, is probably the largest Liberty BASIC program ever written, and without doubt the largest program ever to have been compiled using 'LB Booster'! It consists of three modules totalling more than 100,000 lines of LB code, with the largest module having around 65,000 lines.

http://www.cabinetplanner.com/

User Image
Re: Cabinet Planner
Post by RobM on Mar 10th, 2014, 7:16pm

And a big thanks to Richard for helping me port the program over. It now runs a lot smoother and definitely a lot faster!
Re: Cabinet Planner
Post by RobM on Mar 7th, 2016, 05:36am

Cabinet Planner surpasses 2 billion dollars in sales

I’ve been selling my program since July of 2005. I got curious how much money my customers have made with it over the years and wrote this simple program to get an idea.

I have averaged about 1.1 sales a day over the years. Assuming about 1/2 are actual cabinet shops I figure 17 new shops per month.

The average sales for each shop is probably much higher but a small shop should easily do one kitchen per month at an average of $15K. For larger shops (not really my target audience) that figure would easily be in the 6 digits.

Code:
AverageMonthlySales=15000
NewCustomersPerMonth=17
TotalMonths=139
for x=1 to TotalMonths
    TotalCustomers=TotalCustomers+NewCustomersPerMonth
    TotalSales=TotalSales+(TotalCustomers*AverageMonthlySales)
next x
print TotalSales
end