>>255

var ie = new ActiveXObject("InternetExplorer.application");
ie.Visible = false;
ie.Navigate("http://www.google.com/calendar/m");
while (ie.busy) ;
while (ie.Document.readyState != "complete");

Memo.title='google calendar';
Memo.text='';
if(ie.Document.body.innerText.match(/次へ.*?(\d.*?)前へ/igm)){
Memo.text=RegExp.$1;
}

事前に ie で google へログインしておくこと。
内容をさらうのが面倒なので表示は手抜きです。
ie.Document.body.innerHTML を使えばもっと上手く表示できるとオモ