Rank: 29242 based on 0 downloads (last 30 days) and 0 files submitted
photo

Saidul Hasnan

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Comments and Ratings by Saidul View all
Updated File Comments Rating
07 Aug 2009 FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle Author: Yair Altman

Why do I get this error whenever i tried findjobj;

??? findjobj: Undefined function or variable "jcb".

I have the latest version of findjobj file.

06 Jul 2009 uitabpanel A complete implementation of TabPanel for MATLAB Author: Shiying Zhao

If you find errors when trying to add uitabpanel inside another uitabpanel. You might want to replace the following codes:
           
           cmenu = uicontextmenu;
            uimenu(cmenu,'Label','Goto Tab');
            uimenu(cmenu,'Separator','on');

to...

findfigure=0;
testparent=parent;
while ~findfigure
    
        try
            cmenu = uicontextmenu('Parent',testparent);
            uimenu(cmenu,'Label','Goto Tab');
            uimenu(cmenu,'Separator','on');
            findfigure=1;
        catch
            testparent=get(testparent,'parent');
        end
    
end

cheers,
Saidul Hasnan

Contact us at files@mathworks.com