Hi Joe,
As a matter of fact, DataBinding was on my todo list for this control. There was an obstacle to overcome though, as the default blur (LostFocus) of the CKEditor's resources is by default wired up to fire with a 100 milliseconds delay, for whatever reason. This behaviour is catastrophic for databindings, as it would mean that if you clicked outside of the CKEditor area, the blur event would fire after the event on the target would fire. For example, clicking on a new row on a DataGridView would fire SelectionChange first on the DGV, then a blur on CKEditor and would update the wrong row.
I did manage to find a workaround, and I think I have it working now. Please update your copy from the CKEditor article. The downloads should have a postfix of "v002".
As for my reason for selecting the Text property Instead of the Html property, there are valid reasons. The Visual WebGui CKEditor control inherits from HtmlBox, and I didn't want to go through the complications of using the Html property, which in HtmlBox would contain the contents of the HtmlBox, but for CKEditor must contain the control's Html, where the Html to be edited is hidded deep inside of the contained Html.
Palli