Drag and Drop file (txt file)

2 ビュー (過去 30 日間)
cemsi888
cemsi888 2015 年 2 月 5 日
回答済み: Xiangrui Li 2016 年 6 月 28 日
Hi every one . I want to make drag and drop box. Could you give me advices about that. My target is: I took text files from our experiments and than i want to drag and drop it into command window.After that i want to control my calculations , plot diagrams etc... As you expected i have too many Experiment results and i want to make my calculations succesively thats why i need drag and drop box. how can i create it ?and how can i link Buttons with m files.
  6 件のコメント
cemsi888
cemsi888 2015 年 2 月 5 日
yes you are rihgt it is not matlab command window.and do you know how can i add Status bar in my "COMMAND WINDOW"?
Michael Haderlein
Michael Haderlein 2015 年 2 月 5 日
Just create axes at this position and a patch in there. Set xlim to [0 1] and update the xdata of the patch over progress:
figure, ha=axes('xlim',[0 1],'ylim',[0 1],'xtick',[],'ytick',[],'box','on');
hp=patch([0 0 0 0],[0 0 1 1],'r');
for cnt=1:100
set(hp,'xData',[0 cnt/100 cnt/100 0])
pause(.1)
end

サインインしてコメントする。

採用された回答

Jan
Jan 2015 年 2 月 5 日
Drag and drop is an open problem in Matlab. You could use an ActiveX control under Windows, but you did not specify if the code must be platform-independent.
See:

その他の回答 (1 件)

Xiangrui Li
Xiangrui Li 2016 年 6 月 28 日
For anyone who is interested, here is a nice solution with java
-Xiangrui

カテゴリ

Help Center および File ExchangeApp Building についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by