EAGLE CADで仕事中にYahoo news!を読みたくなることがあると思います。
いちいちブラウザを立ち上げなくてもEAGLEの内部で見れたら便利です。
以下をynews.ulpという名前で保存して、EAGLEのアプリケーションフォルダの下にある
ulpフォルダに置いてください。
ynews.ulp
string Result;
if (netget(Result, "http://news.yahoo.co.jp/") >= 0) {
int res = dlgDialog("Yahoo news viewer"){
dlgTextView(Result);
};
} else
dlgMessageBox(neterror());
