フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Using a Callback in MS Visual Basic

1 回表示 (過去 30 日間)
Amanda
Amanda 2013 年 1 月 28 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have been working with the "Using a Callback with a Microsoft Visual Basic Event " from the MATLAB Builder NE User's Guide. This example is on page 13-17. Everything is working fine: calling a COM object, adding events to COM object, but the I'm not able to receive a callback using MS Visual Basic. I think the problem could be from the process.m function. See below for the code example. Any ideas will be appreciated?
Thanks, Amanda
function [x] = iterate(n,inc)
%initialize x
x = 0;
% Run n iterations, callback every inc time
k = 0;
for i=1:n
k = k + 1;
if k == inc
progress(i);
k = 0;
end;
% Do some work on x...
x = x + 1;
% Pause for 1 second to simulate doing
% something
pause(1);
end;
progess.m
function progress(i)
%#event
i

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by