navigation
 Sunday, June 01, 2008

image  Looking for a good time? Join Falafel Software, Inc. at Microsoft Tech•Ed North America 2008 during the IT Professionals Conference June 10–13, booth #308.
We will showcase ActiveFocus, a web-based project management and team collaboration tool enabling teams to quickly share information, track progress, and deliver projects on time. Group and one-on-one demos will be available.
We'll be giving away three Zune® media players and a complete Xbox 360™ gaming system including Rock Band™. Rock Band will be set up at the booth and available for your enjoyment!
Microsoft Tech•Ed North America 2008 IT Professionals is the Microsoft premier technical education conference for IT professionals.
Falafel Software is proud to be a Bronze Sponsor of this prestigious event.

posted on June 1, 2008  #    by Lino Tadros  Comments [0]
 Thursday, May 29, 2008
See how to rewrite T-SQL to reduce the use of cursors, which consume server resources and tend to be slower than set-based operations. Before and after example code included.
posted on May 29, 2008  #    by Adam Anderson  Comments [0]
Our Falafel teammate Rick Miller had something to say about dedication and loyalty that brought a tear to my eye.
posted on May 29, 2008  #    by Aaron Rhodes  Comments [1]
 Monday, May 26, 2008
Read about a cool hack in Visual Studio 2008 SP1 that allows the designer to fall back on a hardcoded master page if it doesn't manage to locate the correct one.
posted on May 26, 2008  #    by John Waters  Comments [0]

Falafel Software today released its new TestCompleteTV.com web site, a subscription based video library to train on the award winning Automated QA tool, TESTCOMPLETE.  We are all very excited about the site and the possibilities it brings to our loyal customers worldwide.

Subscriptions vary from $39 for 3 months, to $99 for the whole year or $299 for lifetime membership.
Falafel intends to produce between 200 to 250 videos by the end of 2008.
We encourage all members in the community to send us their feedback and their wish list on what videos we should produce first.

testcomplete training logo

posted on May 26, 2008  #    by Lino Tadros  Comments [0]
 Sunday, May 25, 2008

TelerikTV.com was released this week as a show site for case studies involving Telerik technologies.  Falafel Software is very pleased to have its flag ship product, ActiveFocus, be the first product showcased on the site.  I was interviewed by my friend Cark Franklin, co founder of the very successful .NET Rocks! Internet audio talk show for .NET Developers, for an hour, we discussed the elegance and power of the Telerik radControls and dived into source code to demonstrate the architecture and implementation of these amazing components.

Go view the video today and let us know what you think! :)

Telerik TV Episode 1

posted on May 25, 2008  #    by Lino Tadros  Comments [0]
 Friday, May 16, 2008
I have been experiencing video lag in Camtasia 5. I think I have it pretty much worked out now. Here are a list of things to try to remedy the problem.
posted on May 16, 2008  #    by Aaron Rhodes  Comments [0]
Learn how to speed up queries by breaking them down into smaller parts
posted on May 16, 2008  #    by Adam Anderson  Comments [2]
 Thursday, May 15, 2008
Read this article for some simple tips about how to check if you are on the right thread, and if not, now to get to the right thread, when updating a visual component in WPF.
 | 
posted on May 15, 2008  #    by John Waters  Comments [0]
 Monday, May 12, 2008
Found quite a gem today. I've always installed the Windows Powertoys feature to get the "Open Command Window here" option when you right-click a folder in Explorer. I've discovered that this is not needed in Vista.
posted on May 12, 2008  #    by Angelo Martinez  Comments [0]
 Wednesday, May 07, 2008

This is actually right in the SQL Server Books Online, but not easily found. Given a temp table named #temp:

if ( object_id( 'tempdb..#temp' ) is null )
    -- table doesn't exist
else
    -- table exists
posted on May 7, 2008  #    by Adam Anderson  Comments [0]

Here is an interesting article on a way to turn many looping row-based operations into set-based ones: http://www.sqlservercentral.com/articles/TSQL/62867/

I think the idea is a clever one, and I love the "Row By Agonizing Row" (RBAR) acronym!

posted on May 7, 2008  #    by Adam Anderson  Comments [0]