HtmlView HtmlView1 {
X = 8;
Y = 64;
Width = 304;
Height = 175;
Function OnDocumentComplete( e ) {
/* ページ読み込み終了後に更新 */
Refresh();
}
}
Button Button1 {
X = 10;
Y = 9;
Width = 139;
Height = 38;
Title = "HTMLページを表示";
Function OnTouch( e ) {
^.HtmlView1.GoUrl("http://biz-collections.com/support/webpages/
tips/browserv50/Htmv50_001.html");
}
}
|