GUI - Web browser integration

7 ビュー (過去 30 日間)
Manikandan
Manikandan 2011 年 3 月 10 日
I am trying to build a GUI application where a click of a button should open a web browser (automatically opening a given website, say google.com). I want IE to be opened inside the GUI window and not outside separately. Because I am trying to build everything integrated inside a same tool. A user can take notes on a text box which is beneath the website in the MATLAB GUI.
This may sound a bit weird. But is there any method to do this?
Am new to MATLAB gui and not sure about how to proceed. Thanks!

採用された回答

Jan
Jan 2011 年 3 月 10 日
This works under WinXP:
hExp = actxcontrol('Shell.Explorer.2', ...
[10, 10, 400, 400], gcf);
Navigate2(hExp, 'http://www.mathworks.com');
I cannot get really happy with this. But it is at least a good point to start.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by