Archives for: "December 2010"

BlackBerry Web Development - SDK

BlackBerries now have a very cool widget development approach, you can build a web interface, run it through an SDK and it will create the widget or .cod file.My goal was to learn, to see what it is, what it can do, and decide whether I can use it fo… more »

Create Database with MySQL

If you don't have phpMyAdmin, cPanel, or Plesk, you can SSH into the server and use the following commands: create user dbuser@localhost identified by 'password'; create database db; grant all on db.* to dbuser@localhost; mysql -udbuser db -p more »

Content Feeds - Facebook and Twitter - Source, Sink or Both?

Facebook and Twitter have become integral parts of web marketing and outreach. Many companies use them in innovative ways to reach people. Twitter - Twitter is an extremely efficient distribution medium. Tweets are easy to issue from a phone, lap… more »

Word 2007 VBA Macro to Assemble a Manual from Chapters

The following VBA macro allows you to scan a directory for subdirectories and add INCLUDETEXT fields with additional bookmarks to create a master document which can be used to create several different versions of the same content. It will also create st… more »

Word VBA Macro to Remove All Bookmarks in a Document

This macro removes all the bookmarks from a Word (2007) Document. I use it to update documents which are imported from Framemaker and had a lot of unused bookmarks. It may not be the most efficient code, but it does work. The approach is to create… more »