Button Button1 {
X = 6;
Y = 128;
Width = 318;
Height = 81;
Title = "PDFを選択して表示";
Function OnTouch(e){
var f = new FileSystem;
var fp = f.openDialog("ファイルを開く","PDFファイル(*.pdf)=*.pdf",
"pdf","");
/* HtmlView1へ選択したPDFを表示 */
^.HtmlView1.GoUrl(fp);
fp.close();
}
}
Button Button2 {
X = 349;
Y = 128;
Width = 318;
Height = 81;
Title = "「Bizの宝箱」のBiz/Browser V・Biz/Designer V \n" +
"TIPS集 PDF版を開く";
Function OnTouch(e){
/* HtmlView1へPDFを表示 */
^.HtmlView1.GoUrl("http://biz-collections.com/" +
"support/webpages/download/download/BizBrowserV_BizDesignerV.pdf");
}
}
HtmlView HtmlView1 {
X = 8;
Y = 221;
Width = 845;
Height = 465;
Border = $TRUE;
}
|