We partner with businesses to help them run better.
Websites & Email
Modernize your marketing strategy with Websites, Email, Social Media and more. We design, develop and host your websites right here in the Pacific Northwest.
Virtual Offices
Our Hosted Services allow you to have an office anywhere. We run the servers in the cloud and connect them to your physical office location. No maintenance and no repairs. Simple.
Be-ERP
Be-ERP is our modern, mobile friendly Business Management System. Our software system is written right here in Yakima. BE-ERP is a great platform for businesses that need custom software solutions without massive overhead.
KeyNotes
KeyNotes Open Source is a very mature product used in behavioral health and drug counseling. It is a complete clinical suite. The software is Open Source, you only pay for hosting services. Read more about KeyNotes here.
Recent Works
Code Sample: VB.NET SMTP Mail function
1. Create a Visual Basic Class for your project by right clicking the project and select add. 2. Change the language to Visual Basic and select Class from the list of Installed Templates. 3. Name the class clsNotify. Add the code below to the class.(You...
Code Sample: TSQL, Size of tables in database
SELECT t.NAME AS TableName, p.rows AS RowCounts, SUM(a.total_pages) * 8 AS TotalSpaceKB, SUM(a.used_pages) * 8 AS UsedSpaceKB, (SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id INNER...
SSIS / BIDS Rename File with File System Task
Lets see if I can explain how to rename a files using the File System Task in BIDS or SSIS. First you will need to add a File System Task to your Control Flow. (Drag and Drop it to the Form) Open the task and change the Opertaion to Rename File. Set the...
SharePoint 2013 Design Packages broken
We were attempting to use Responsive SharePoint from CodePlex, They've done a lot of heavy lifting with regards to implementing Twitter Bootstrap within SharePoint 2013. After some testing we found that certain sites were becoming corrupt and throwing Errors and...
TSQL: Search All Tables
/****** Object: StoredProcedure [dbo].[SearchAllTables] Script Date: 3/14/2013 8:01:42 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROC [dbo].[SearchAllTables] ( @SearchStr nvarchar(100) ) AS BEGIN -- Copyright © 2002 Narayana Vyas Kondreddi....
SharePoint 2013 unexpected database growth
So one day, suddenly I find my development environment out of drive space, never good, but its my dev box and not a production system. So that's the good news. Production Environment Fix(Contentdb): So I start poking around and find that the content database is...
Repost: Obtaining Method Caller Information in C#
http://tech.pro/tutorial/1155/obtaining-method-caller-information-in-c
SPWeb.Users.GetCollection does not work as expected
It appears that SPWeb.Users.GetCollection is not bound to its initialized web although SPWeb.Users[username] and SPWeb.Users.GetByEmail(email) are. The unfortunate thing, SPWeb.Users[username] and SPWeb.Users.GetByEmail(email) both throw exceptions if nothing is...
SharePoint Hide Fields with JS and JQuery
Session State in SharePoint
I tried using Session state today in a web part I was developing, it failed, the session was always null. I followed the best practices, verified it was enabled in web.config, it wasn't, so I turned it on. EnableSessionState="true". I tried my webpart again,...