Info
此问题已关闭。 请重新打开它进行编辑或回答。
Using a Callback in MS Visual Basic
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!